/* Custom Properties - Dark Premium Theme */
:root {
    /* Base Colors */
    --bg-main: #080C13;
    --bg-secondary: #111A27;
    --text-primary: #F3F4F6;
    --text-secondary: #9CA3AF;
    --accent-gold: #CBA052;
    --border-subtle: rgba(255, 255, 255, 0.08);

    /* Legacy compatibility (Mapping to new theme to avoid breaking old sections not yet updated) */
    --color-navy: var(--bg-main);
    --color-navy-light: var(--bg-secondary);
    --color-gold: var(--accent-gold);
    --color-gold-hover: #D6B570;
    --color-white: #FFFFFF;
    --color-gray-bg: var(--bg-secondary);
    --color-charcoal: var(--text-primary);
    --color-text-light: var(--text-secondary);
    --color-whatsapp: #25D366;

    --font-main: 'Montserrat', sans-serif;

    --transition: all 0.3s ease;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-primary);
    line-height: 1.7;
    background: radial-gradient(circle at 50% 50%, var(--bg-secondary) 0%, var(--bg-main) 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-gold);
}

/* Premium Card Base Structure */
.premium-card {
    background-color: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

/* Smooth Section Transitions */
.dark-section, .dark-section-reversed {
    background: transparent;
    position: relative;
}

/* Glassmorphism Cards Premium */
.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.005) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.15); /* Reflexo de luz premium no topo */
    border-left: 1px solid rgba(255, 255, 255, 0.15); /* Reflexo na esquerda */
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(203, 160, 82, 0.02);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 40px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Efeito de Reflexo de Lente passando pelo Card */
.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
    z-index: -1;
}

.glass-card:hover::before {
    left: 150%;
}

.glass-card:hover {
    border-color: rgba(203, 160, 82, 0.5); /* Borda Dourada Suave */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 0 15px rgba(203, 160, 82, 0.15), 0 0 20px rgba(203, 160, 82, 0.2);
    transform: translateY(-8px);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bg-gray {
    background-color: var(--color-gray-bg);
}

.bg-navy {
    background-color: var(--color-navy);
}

.text-white {
    color: var(--color-white);
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 32px;
}

.gold-line {
    width: 60px;
    height: 3px;
    background-color: var(--color-gold);
    margin: 16px 0 24px 0;
}

.gold-line.center {
    margin: 16px auto 24px auto;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
}

.text-white h2,
.text-white h3 {
    color: var(--color-white);
}

p {
    margin-bottom: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    width: fit-content;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--color-gold);
    color: #0F172A;
    border: none;
}

.btn-primary:hover {
    background-color: #d8b264;
    color: #0F172A;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.4);
}

.bg-navy .btn-primary:hover {
    background-color: #d8b264;
    color: #0F172A;
}

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

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
    color: var(--color-white);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 12px 28px;
    font-size: 0.8rem;
}

/* Floating WhatsApp CTA as Notification */
.wa-floating-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), visibility 0.4s ease;
}

.wa-floating-container.wa-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.wa-message-bubble {
    background-color: var(--color-white);
    color: var(--bg-main);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    position: relative;
    animation: float-bubble 3s ease-in-out infinite;
    white-space: nowrap;
}

.wa-message-bubble::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--color-white);
}

.floating-wa {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #1EAE53);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    animation: pulse-wa 2s infinite;
}

.floating-wa i {
    font-size: 32px;
}

.wa-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: #ff3b30;
    color: white;
    font-size: 12px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-main);
}

@keyframes float-bubble {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.floating-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
    animation: none;
    color: var(--color-white);
}

/* Smart Navbar - Floating Pill Design */
.smart-header {
    position: fixed;
    top: 25px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 92%;
    max-width: 1200px;
    z-index: 1000;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 100px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), top 0.3s ease, background 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.smart-header.scrolled {
    top: 15px;
    background: rgba(10, 25, 47, 0.85);
    border: 1px solid rgba(197, 160, 89, 0.3);
    /* Subtle gold border when scrolled */
    padding: 5px 10px;
}

.smart-header.hidden {
    transform: translateY(-150%);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mega-menu-toggle {
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 28px;
    cursor: pointer;
    transition: var(--transition);
    padding: 5px 15px;
}

.mega-menu-toggle:hover {
    color: var(--color-gold);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 55px;
    width: auto;
    transition: var(--transition);
}

.smart-header.scrolled .logo-img {
    max-height: 45px;
}

.footer-logo-img {
    max-height: 100px;
    width: auto;
    margin-bottom: 24px;
}

.header-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-socials a {
    color: var(--color-white);
    font-size: 20px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.nav-socials a:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

/* Mega Menu Off-Canvas */
.mega-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.mega-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mega-menu-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    padding: 80px 24px;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.4s ease-in-out;
    display: flex;
    align-items: center;
}

.mega-menu-overlay.active .mega-menu-content {
    transform: translateY(0);
}

.mega-menu-close {
    position: absolute;
    top: 30px;
    right: 24px;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 36px;
    cursor: pointer;
    transition: var(--transition);
}

.mega-menu-close:hover {
    color: var(--color-gold);
    transform: rotate(90deg);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
}

.mega-column h3 {
    color: var(--color-gold);
    font-size: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    padding-bottom: 10px;
}

.mega-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mega-links a {
    color: var(--color-white);
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mega-links a i {
    color: var(--color-gold);
    width: 20px;
    text-align: center;
}

.mega-links a:hover {
    color: var(--color-gold);
    transform: translateX(5px);
}

.contact-info-menu p {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-info-menu i {
    color: var(--color-gold);
}

.highlight-card {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.highlight-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.highlight-info {
    padding: 24px;
    background: var(--color-white);
}

.highlight-info h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--color-navy);
}

.highlight-info p {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

/* Responsividade Mega Menu */
@media (max-width: 992px) {
    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        align-content: flex-start;
        overflow-y: auto;
        padding-bottom: 40px;
    }

    .mega-menu-content {
        padding: 60px 24px 20px;
        align-items: flex-start;
    }

    .highlight-img {
        height: 150px;
    }
}

/* Hero Section (High Ticket Minimalist) */
.hero {
    min-height: 100vh;
    background: url('assets/desktopHero.webp') right center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}


/* Smooth Bottom Fade Effect */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(to bottom, transparent, var(--bg-main));
    z-index: 5;
    pointer-events: none;
}

/* Refinamento para a seção seguinte invadir o fade */
.features-section {
    position: relative;
    z-index: 6;
    margin-top: -80px;
    padding-top: 80px;
}

.hero-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 10;
}

#dust-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    /* Behind container, above background */
}

.hero-text {
    position: relative;
    width: 50%;
    max-width: 650px;
    text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.9);
}

.hero-text h1 {
    font-size: 46px;
    color: var(--color-white);
    margin-bottom: 24px;
    line-height: 1.15;
    font-weight: 700;
}

.hero-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
}

.btn-primary-gold,
.btn-outline-glass {
    padding: 16px 36px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    width: fit-content;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary-gold {
    background-color: var(--color-gold);
    color: #0F172A;
    border: none;
}

.btn-primary-gold:hover {
    background-color: #d8b264;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.4);
}

.btn-outline-glass {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-glass:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .hero {
        background: url('assets/MobileHero.webp') center top/cover no-repeat;
    }

    .hero-text {
        width: 100%;
        margin-top: 55vh; /* Pushes text down so lawyer's face is visible */
        text-shadow: 0px 4px 25px rgba(0, 0, 0, 0.95);
        /* Stronger shadow on mobile */
    }

    .hero-text h1 {
        font-size: 36px;
    }
}

/* Intro Section */
.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background-color: rgba(197, 160, 89, 0.15);
    color: var(--color-gold);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.intro-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.intro-content p {
    color: var(--color-text-light);
    font-size: 16px;
    margin-bottom: 30px;
}

.box-highlight {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--color-gold);
}

.box-highlight h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.box-highlight p {
    margin-bottom: 24px;
}

/* Trust Bar */
.trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 30px 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-right: 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-item:last-child {
    border-right: none;
    padding-right: 0;
}

.trust-icon {
    font-size: 24px;
    color: var(--accent-gold);
}

.trust-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .trust-bar {
        flex-direction: column;
        gap: 20px;
    }
    .trust-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-right: 0;
        padding-bottom: 20px;
        width: 100%;
        justify-content: center;
    }
    .trust-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* Practice Areas */
.section-header h2 {
    font-size: 32px;
}

.areas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.area-card {
    padding: 32px;
    transition: var(--transition);
}

.area-card:hover {
}

.area-icon {
    font-size: 32px;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.area-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.area-card p {
    color: var(--color-text-light);
    margin-bottom: 24px;
    font-size: 15px;
}

.area-link {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.area-link i {
    transition: transform 0.3s;
    color: var(--color-gold);
}

.area-card:hover .area-link i {
    transform: translateX(5px);
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.about-image {
    background-color: transparent;
    height: 400px;
    border-radius: 8px;
    background-image: url('assets/bio.png');
    background-size: cover;
    background-position: center top;
    position: relative;
    box-shadow: var(--shadow-md);
}

.experience-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: linear-gradient(135deg, var(--accent-gold), #e0c283);
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(203, 160, 82, 0.4);
    color: var(--bg-main);
    text-align: center;
    z-index: 10;
}

.experience-badge .exp-plus,
.experience-badge .exp-number {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    display: inline-block;
}

.experience-badge .exp-text {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 5px;
    color: var(--bg-main);
    opacity: 0.9;
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--bg-main) 0%, transparent 50%);
}

.experience-subtitle {
    color: var(--accent-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 600;
}

.about-text h2 {
    font-size: 32px;
}

.about-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.8;
}

/* Testimonials Slider */
.testimonial-slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15rem;
    color: var(--accent-gold);
    opacity: 0.03;
    font-family: serif;
    z-index: 0;
    line-height: 1;
}

.testimonial-track {
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: hidden;
    min-height: 200px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    transform: translateX(50px);
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: translateX(0);
}

.testimonial-quote {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 22px;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.testimonial-author {
    font-size: 16px;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.slider-btn {
    background: transparent;
    border: none;
    color: var(--accent-gold);
    font-size: 24px;
    cursor: pointer;
    z-index: 2;
    transition: var(--transition);
    padding: 10px;
}

.slider-btn:hover {
    color: var(--text-primary);
    transform: scale(1.1);
}

/* Differential */
.diff-content {
    max-width: 800px;
    margin: 0 auto;
}

.diff-content h2 {
    font-size: 32px;
}

.diff-content p {
    color: var(--color-text-light);
    font-size: 16px;
    line-height: 1.8;
}

/* Footer */
.footer {
    background-color: var(--color-navy);
    color: var(--color-white);
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item i {
    color: var(--color-gold);
    font-size: 24px;
    margin-top: 4px;
}

.contact-item strong {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    color: var(--color-white);
}

.contact-item a,
.contact-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin-bottom: 0;
}

.contact-item a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    background: transparent;
}

.flex-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.flex-bottom p {
    margin-bottom: 0;
    color: var(--text-secondary);
    font-size: 13px;
    letter-spacing: 0.5px;
}

.developer-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: var(--transition);
    margin-top: 10px;
}

.developer-link span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.3);
}

.dev-logo {
    width: 120px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(203, 160, 82, 0.15)) drop-shadow(0 0 25px rgba(203, 160, 82, 0.08));
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.8;
}

.developer-link:hover .dev-logo {
    opacity: 1;
    filter: drop-shadow(0 0 15px rgba(203, 160, 82, 0.4)) drop-shadow(0 0 30px rgba(203, 160, 82, 0.2));
    transform: scale(1.05);
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggering for flex/grid children */
.trust-item.reveal:nth-child(1), .feature-card.reveal:nth-child(1), .area-card.reveal:nth-child(1), .testimonial-card.reveal:nth-child(1) { transition-delay: 0.1s; }
.trust-item.reveal:nth-child(2), .feature-card.reveal:nth-child(2), .area-card.reveal:nth-child(2), .testimonial-card.reveal:nth-child(2) { transition-delay: 0.25s; }
.trust-item.reveal:nth-child(3), .feature-card.reveal:nth-child(3), .area-card.reveal:nth-child(3), .testimonial-card.reveal:nth-child(3) { transition-delay: 0.4s; }
.trust-item.reveal:nth-child(4), .feature-card.reveal:nth-child(4), .area-card.reveal:nth-child(4), .testimonial-card.reveal:nth-child(4) { transition-delay: 0.55s; }

/* Desktop Media Queries */
@media (min-width: 768px) {
    .hero-text h1 {
        font-size: 56px;
    }

    .hero-text p {
        font-size: 20px;
    }

    .hero-buttons {
        flex-direction: row;
    }

    .intro-content h2 {
        font-size: 36px;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .flex-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        align-items: center;
        gap: 40px;
    }

    .nav-list {
        flex-direction: row;
        margin-bottom: 0;
    }

    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Fix Testimonial Slider on Mobile */
@media (max-width: 768px) {
    .testimonial-slider-container {
        padding: 40px 10px;
    }
    .testimonial-quote {
        font-size: 17px;
    }
    .testimonial-track {
        padding: 0 35px;
    }
    .slider-btn.prev-btn {
        position: absolute;
        left: 0;
    }
    .slider-btn.next-btn {
        position: absolute;
        right: 0;
    }
}