/* ==== Base & Variables ==== */
:root {
    --bg-dark: #050505;
    --bg-card: rgba(15, 15, 15, 0.6);
    --border-color: rgba(255, 255, 255, 0.05);
    
    /* Neon Colors from Logo */
    --neon-orange: #ff6600;
    --neon-cyan: #00e5ff;
    --neon-magenta: #ff00ff;
    --neon-yellow: #fffb00;
    
    /* Text Colors */
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    
    /* Fonts */
    --font-heading: 'Syncopate', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ==== Utilities ==== */
.text-orange { color: var(--neon-orange); }
.text-cyan { color: var(--neon-cyan); }
.text-magenta { color: var(--neon-magenta); }
.text-yellow { color: var(--neon-yellow); }

.bg-orange { background-color: rgba(255, 102, 0, 0.1); color: var(--neon-orange); border: 1px solid rgba(255, 102, 0, 0.2); }
.bg-cyan { background-color: rgba(0, 229, 255, 0.1); color: var(--neon-cyan); border: 1px solid rgba(0, 229, 255, 0.2); }
.bg-magenta { background-color: rgba(255, 0, 255, 0.1); color: var(--neon-magenta); border: 1px solid rgba(255, 0, 255, 0.2); }

.hidden { display: none !important; }

/* ==== Typography ==== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ==== Buttons ==== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background-color: var(--neon-orange);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.4);
}

.btn-primary:hover {
    background-color: #e65c00;
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.6);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--neon-magenta);
    box-shadow: inset 0 0 15px rgba(255, 0, 255, 0.1), 0 0 15px rgba(255, 0, 255, 0.2);
}

/* ==== Navigation ==== */
.navbar {
    position: relative;
    width: 100%;
    z-index: 100;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-logo {
    height: 48px;
    width: 48px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid rgba(255, 102, 0, 0.3);
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.3);
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    background: linear-gradient(to right, #fff, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: none;
}

@media (min-width: 640px) {
    .brand-name { display: block; }
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links { display: flex; }
}

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--neon-orange);
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-btn { display: none; }
}

.mobile-menu {
    display: none;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem;
    text-align: center;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-link {
    color: var(--text-main);
    text-decoration: none;
    padding: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* ==== Hero Section ==== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 0;
    overflow: hidden;
}

.hero-foreground-video {
    position: relative;
    width: 100%;
    height: 65vh; /* Takes up top 65% of screen */
    margin: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.hero-foreground-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Gradient to blend video into the dark background */
.hero-foreground-video::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to bottom, transparent, var(--bg-dark));
    pointer-events: none;
}

/* Neon Orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: float 10s infinite ease-in-out alternate;
    z-index: 0;
}

.orb-cyan { top: 20%; left: 10%; width: 400px; height: 400px; background: var(--neon-cyan); }
.orb-magenta { bottom: 10%; right: 10%; width: 500px; height: 500px; background: var(--neon-magenta); animation-delay: -3s; }
.orb-yellow { top: 50%; left: 50%; transform: translate(-50%, -50%); width: 300px; height: 300px; background: var(--neon-yellow); animation-delay: -5s; opacity: 0.1;}
.orb-orange { top: -10%; right: 20%; width: 350px; height: 350px; background: var(--neon-orange); opacity: 0.1; }

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 50px) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    text-align: center;
    padding: 0 1.5rem;
    margin-top: -15vh; /* Pull text up into the faded video area */
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta), var(--neon-yellow));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-actions { flex-direction: row; }
}

.group:hover .icon-transition {
    transform: translateX(4px);
}
.icon-transition {
    transition: transform 0.3s;
}

/* ==== Sections Base ==== */
.section {
    padding: 6rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ==== Experience Pillars ==== */
.pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .pillars-grid { grid-template-columns: repeat(3, 1fr); }
}

.pillar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 1.5rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.icon-box {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.pillar-card:hover .icon-box {
    transform: scale(1.1);
}

.hover-cyan:hover { border-color: rgba(0, 229, 255, 0.4); box-shadow: 0 10px 30px rgba(0, 229, 255, 0.1); transform: translateY(-5px); }
.hover-magenta:hover { border-color: rgba(255, 0, 255, 0.4); box-shadow: 0 10px 30px rgba(255, 0, 255, 0.1); transform: translateY(-5px); }
.hover-orange:hover { border-color: rgba(255, 102, 0, 0.4); box-shadow: 0 10px 30px rgba(255, 102, 0, 0.1); transform: translateY(-5px); }

.pillar-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-family: var(--font-body);
    font-weight: 800;
}

.pillar-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==== Bio Section ==== */
.dj-bio-section {
    background: var(--bg-main);
    padding: 4rem 1.5rem 2rem;
}

.bio-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(0, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .bio-container {
        flex-direction: row;
        padding: 3rem;
        text-align: left;
    }
}

.bio-image-wrapper {
    flex-shrink: 0;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.bio-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bio-text {
    flex: 1;
}

.bio-text .section-title {
    margin-bottom: 1rem;
}

.bio-quote {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-main);
    font-style: italic;
    font-weight: 300;
}

/* ==== Music Section ==== */
.music-section {
    background: radial-gradient(circle at top right, rgba(0,255,255,0.03) 0%, transparent 60%);
}

.music-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.track-card {
    position: relative;
    background: transparent;
    border-radius: 1rem;
    padding: 2px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.track-card::before {
    content: '';
    position: absolute;
    inset: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 200deg,
        #00e5ff 220deg,
        #ff6b35 280deg,
        #ff2d9b 320deg,
        #00e5ff 360deg
    );
    animation: spin-neon-border 3s linear infinite;
    z-index: 0;
}

.track-card::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: #2a2a2a;
    border-radius: 0.875rem;
    z-index: 1;
}

.track-card > * {
    position: relative;
    z-index: 2;
    padding: 0 1.5rem;
}

.track-card > *:first-child {
    padding-top: 1.5rem;
}

.track-card > *:last-child {
    padding-bottom: 1.5rem;
}

@keyframes spin-neon-border {
    to { transform: rotate(360deg); }
}



.track-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.track-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.track-details h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 0 12px rgba(0, 229, 255, 0.5);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.track-genre {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.custom-audio-player {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.75rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.play-btn {
    background: white;
    color: black;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.play-btn:hover {
    transform: scale(1.05);
}

.play-btn i {
    width: 18px;
    height: 18px;
    fill: black;
}

.progress-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.time-current, .time-duration {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: monospace;
    user-select: none;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--neon-cyan);
    width: 0%;
    border-radius: 2px;
    pointer-events: none;
}

.progress-bar:hover .progress-fill {
    background: var(--neon-orange);
}

.track-actions {
    display: flex;
    gap: 1rem;
}

.track-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.w-100 {
    width: 100%;
}

/* ==== Philosophy Section ==== */
.philosophy-section {
    background: linear-gradient(180deg, var(--bg-dark), rgba(20, 20, 20, 0.8), var(--bg-dark));
}

.philosophy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .philosophy-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.philosophy-card {
    position: relative;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 102, 0, 0.4);
}

.philosophy-card h4 {
    font-size: 1.1rem;
    color: var(--neon-orange);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.philosophy-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.philosophy-footer {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 102, 0, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(255, 102, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.philosophy-footer p {
    font-size: 1.1rem;
    color: var(--text-main);
    line-height: 1.6;
}

/* ==== Core Services ==== */
.services-section {
    background: radial-gradient(circle at center, rgba(255,102,0,0.03) 0%, transparent 70%);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

.service-card {
    background: linear-gradient(145deg, rgba(20,20,20,0.8), rgba(10,10,10,0.9));
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 2rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, transparent, var(--neon-orange), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover::before { opacity: 1; }
.service-card:hover { border-color: rgba(255, 102, 0, 0.3); transform: scale(1.02); }

.service-badge {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.service-content h3 {
    font-size: 1.5rem;
    margin: 0.5rem 0 1rem;
}

.service-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: #ddd;
}

/* ==== Portal Banner ==== */
.portal-banner {
    background: linear-gradient(135deg, rgba(25,25,25,1) 0%, rgba(10,10,10,1) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 2rem;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .portal-banner { flex-direction: row; align-items: center; justify-content: space-between; padding: 4rem; }
}

.portal-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: var(--neon-cyan);
    filter: blur(120px);
    opacity: 0.15;
    border-radius: 50%;
    pointer-events: none;
}

.badge-dark {
    background: rgba(0,0,0,0.5);
    border-color: rgba(255, 102, 0, 0.3);
    color: var(--neon-orange);
}

.portal-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: 1rem 0;
}

.portal-content p {
    color: var(--text-muted);
    max-width: 600px;
}

.btn-glow {
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 102, 0, 0.3);
    color: #ffffff;
}

.btn-glow:hover {
    background: rgba(255, 102, 0, 0.1);
    border-color: var(--neon-orange);
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.2);
    color: #ffffff;
}

/* ==== Form Section ==== */
.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 2rem;
    backdrop-filter: blur(10px);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .form-grid { grid-template-columns: 1fr 1fr; }
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

input, select {
    width: 100%;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1rem;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all 0.3s;
}

input:focus, select:focus {
    outline: none;
    border-color: var(--neon-orange);
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.2);
}

.submit-btn {
    margin-top: 1rem;
    padding: 1.25rem;
    font-size: 1rem;
}

/* Success State */
.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 102, 0, 0.1);
    color: var(--neon-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-icon i {
    width: 40px;
    height: 40px;
}

.success-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.success-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.link-btn {
    background: none;
    border: none;
    color: var(--neon-orange);
    text-decoration: underline;
    cursor: pointer;
    font-family: var(--font-body);
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==== Footer ==== */
.footer {
    background: #000;
    padding: 4rem 1.5rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-logo:hover {
    opacity: 1;
}

.copyright {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.footer-desc {
    font-size: 0.85rem;
    color: #666;
}

/* ==== Packages Grid ==== */
.card-img-wrapper {
    margin: -2.5rem -2.5rem 1.5rem -2.5rem;
    height: 220px;
    overflow: hidden;
    border-radius: 2rem 2rem 0 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==== Conversational Planner Section ==== */
@media (min-width: 768px) {
    .quote-bot-grid {
        grid-template-columns: 1.2fr 0.8fr !important;
    }
}
.quote-bot-section {
    position: relative;
    overflow: hidden;
}
.bot-benefits i {
    flex-shrink: 0;
}

/* ==== Social Media Icons ==== */
/* ==== Social Media Icons ==== */
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.social-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    overflow: hidden;
}

.social-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: grayscale(100%) opacity(50%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon-btn.facebook-btn:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.social-icon-btn.instagram-btn:hover {
    border-color: var(--neon-magenta);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
}

.social-icon-btn:hover .social-logo-img {
    filter: grayscale(0%) opacity(100%);
    transform: scale(1.1);
}

/* Navbar Socials (Desktop) */
.nav-socials {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 1.25rem 0 0.5rem;
}

.nav-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: hidden;
}

.nav-social-icon.facebook-btn:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

.nav-social-icon.instagram-btn:hover {
    border-color: var(--neon-magenta);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

.nav-social-icon:hover .social-logo-img {
    filter: grayscale(0%) opacity(100%);
    transform: scale(1.1);
}

/* Mobile Menu Socials */
.mobile-socials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}


