@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
    --bg-dark: #050505;
    --bg-card: rgba(18, 18, 18, 0.6);
    --gold: #c5a059;
    --gold-dim: #9a7d46;
    --gold-glow: rgba(197, 160, 89, 0.1);
    --gold-border: rgba(197, 160, 89, 0.3);
    --text-main: #fcfcfc;
    --text-muted: #999999;
    --glass-border: rgba(255, 255, 255, 0.03);
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    letter-spacing: 0.02em;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
}

/* --- Layout --- */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 100px 0;
}

/* --- Navigation --- */

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    background: transparent;
}

nav.scrolled {
    background: rgba(7, 7, 7, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
}

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

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: var(--transition);
    opacity: 0.8;
}

.nav-links a:hover {
    color: var(--gold);
    opacity: 1;
}

/* --- Hero Section --- */

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-image: 
        linear-gradient(to right, rgba(0,0,0,0.9) 20%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.2) 100%),
        url('images/hero_bg.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-content {
    max-width: 700px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--gold);
    color: #000;
}

.btn-primary:hover {
    background: var(--gold-dim);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-secondary:hover {
    background: var(--gold-glow);
    transform: translateY(-2px);
}

/* --- Section Headers --- */

.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 1.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* --- About Section --- */

.about {
    position: relative;
    background-image: linear-gradient(rgba(7, 7, 7, 0.9), rgba(7, 7, 7, 0.9)), url('images/about_bg.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    background: rgba(20, 20, 20, 0.4);
    padding: 3rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.about-content p {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 300;
}

/* --- Services Section --- */

.services {
    background: #0f0f0f;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.services-dual {
    grid-template-columns: 1fr 1fr;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .services-dual {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--bg-card);
    padding: 3.5rem 2rem;
    border-radius: 4px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition);
    text-align: center;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center header elements */
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: var(--gold-border);
    background: rgba(197, 160, 89, 0.03);
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

.service-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.service-card .service-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-style: italic;
    text-align: center;
}

.service-card ul {
    list-style: none;
    text-align: left;
    width: 100%;
    margin-top: 1rem;
}

/* Multi-column for long lists */
.service-card ul.multi-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 2rem;
}

@media (max-width: 1100px) {
    .service-card ul.multi-col {
        grid-template-columns: 1fr;
    }
}

.service-card li {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.4;
    font-weight: 300;
}

.service-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 1px;
    background: var(--gold);
}

.service-card li:hover {
    color: var(--text-main);
}

/* New Service Content Styles */
.service-content {
    text-align: left;
    width: 100%;
}

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

.highlight-text {
    color: var(--text-main) !important;
    font-weight: 500 !important;
    border-left: 2px solid var(--gold);
    padding-left: 1.5rem;
}

.partners-services-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.box-title {
    display: block;
    font-size: 0.85rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.partners-services-box ul {
    margin-top: 0;
}

.partners-services-box li {
    font-size: 0.85rem;
}

.h-full {
    height: 100%;
}

/* --- Results Section --- */

.results {
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.results-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.result-item {
    padding: 0 4rem;
    text-align: center;
    position: relative;
}

.result-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--gold-border), transparent);
}

.result-number {
    display: block;
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* --- Partners Section --- */

.partners {
    background: var(--bg-dark);
}

.partners-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.partner-card {
    width: 350px;
    text-align: center;
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
}

.partner-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.partner-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    filter: grayscale(0.2) contrast(1.1);
    border: 1px solid var(--gold-border);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

.partner-card:hover .partner-image {
    filter: grayscale(0);
    border-color: var(--gold);
    transform: scale(1.02);
}

.partner-card h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.partner-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.partner-specialty {
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.btn-bio {
    background: transparent;
    border: 1px solid var(--gold-border);
    color: var(--gold);
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-top: auto;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.btn-bio:hover {
    background: var(--gold-glow);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* --- Bio Overlay --- */

.bio-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    justify-content: flex-end; /* Align drawer to the right */
}

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

.bio-content-wrapper {
    width: 100%;
    max-width: 500px; /* Drawer width */
    height: 100%;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bio-overlay.active .bio-content-wrapper {
    transform: translateX(0);
}

.bio-card {
    background: rgba(10, 10, 10, 0.98);
    border-left: 1px solid var(--gold-border);
    height: 100%;
    padding: 4rem 3rem;
    position: relative;
    overflow-y: auto;
    box-shadow: -20px 0 50px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
}

.bio-card::-webkit-scrollbar {
    width: 4px;
}

.bio-card::-webkit-scrollbar-thumb {
    background: var(--gold-dim);
    border-radius: 10px;
}

.close-bio {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

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

#bioText h2 {
    color: var(--gold);
    margin-bottom: 2rem;
    font-size: 2rem;
    letter-spacing: 2px;
}

#bioText p {
    color: var(--text-main);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
    text-align: justify;
}

#bioText p:last-child {
    margin-bottom: 0;
    font-weight: 400;
    color: var(--gold);
    font-style: italic;
    text-align: center;
    border-top: 1px solid var(--gold-border);
    padding-top: 1.5rem;
    margin-top: 2rem;
}


/* --- Testimonials Section --- */

.testimonials {
    background: #0a0a0a;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 3.5rem 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.testimonial-card:hover {
    border-color: var(--gold);
    background: rgba(197, 160, 89, 0.04);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.quote-icon {
    color: var(--gold-border);
    margin-bottom: 2rem;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 2.5rem;
    font-style: italic;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.testimonial-rating {
    display: flex;
    gap: 6px;
    margin-top: auto;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.star-filled {
    width: 14px !important;
    height: 14px !important;
    fill: var(--gold);
    color: var(--gold);
}

/* --- Contact Section --- */

.contact {
    background: #0f0f0f;
}

.contact-grid {
    display: flex;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 12px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: span 2;
}

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

.form-group input, 
.form-group textarea {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    border-radius: 4px;
    transition: var(--transition);
    font-weight: 300;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-border);
    background: rgba(197, 160, 89, 0.05);
    box-shadow: 0 0 20px var(--gold-glow);
}

.contact-button-container {
    grid-column: span 2;
    text-align: center;
    margin-top: 1rem;
}

/* --- QR Code Section --- */

.qr-code-container {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.qr-card {
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-align: center;
    max-width: 400px;
    width: 100%;
    transition: var(--transition);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
}

.qr-card:hover {
    border-color: var(--gold-border);
    transform: rotateX(5deg) translateY(-10px);
    box-shadow: 0 60px 120px rgba(0, 0, 0, 0.9);
}

.qr-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 2rem;
}

.qr-header i {
    color: var(--gold);
    width: 20px;
    height: 20px;
}

.qr-header h3 {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

.qr-image-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 2rem;
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.2);
    overflow: hidden;
}

.qr-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qr-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    box-shadow: 0 0 15px var(--gold);
    animation: scan 3s linear infinite;
    z-index: 2;
}

@keyframes scan {
    0% { top: 0; }
    50% { top: 100%; }
    100% { top: 0; }
}

.qr-footer p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.qr-id {
    font-size: 0.75rem;
    letter-spacing: 5px;
    color: var(--gold-border);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* --- WhatsApp Button --- */

.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 500;
    gap: 12px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

/* --- Footer --- */

footer {
    padding: 50px 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: block;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    list-style: none;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.copyright {
    color: #444;
    font-size: 0.75rem;
}

/* --- Consultant Section --- */

.consultant {
    background: #0a0a0a;
}

.consultant-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.consultant-image-container {
    flex: 1;
    perspective: 1000px;
}

.consultant-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--gold-border);
    transition: var(--transition);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.consultant-img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(0.2) contrast(1.1);
    transition: var(--transition);
}

.image-overlay-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.6) 100%);
    pointer-events: none;
}

.consultant-image-frame:hover {
    transform: rotateY(-5deg) rotateX(2deg);
    border-color: var(--gold);
    box-shadow: 0 40px 80px rgba(0,0,0,0.7);
}

.consultant-image-frame:hover .consultant-img {
    filter: grayscale(0) contrast(1.05);
    scale: 1.05;
}

.consultant-info {
    flex: 1.5;
}

.eyebrow {
    display: block;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.consultant-header h2 {
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-align: left;
}

.consultant-bio p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.consultant-values {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

.value-item i {
    color: var(--gold);
    width: 24px;
    height: 24px;
}

.value-item span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-main);
    font-weight: 500;
}

@media (max-width: 991px) {
    .consultant-wrapper {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .consultant-header h2 {
        text-align: center;
    }
    
    .consultant-image-container {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .consultant-values {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .value-item {
        align-items: center;
    }
}

/* --- Animations --- */

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

.reveal {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: transform, opacity;
}

.reveal.active,
.no-js .reveal {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* --- Responsive --- */

@media (max-width: 991px) {
    .results-grid {
        gap: 2rem;
    }
    
    .result-item {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: var(--transition);
        z-index: 1000;
        border-left: 1px solid var(--gold-border);
    }

    .nav-links.active {
        right: 0;
    }

    .hero {
        background-attachment: scroll; /* Fix bug on mobile */
        text-align: center;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-group {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
    }

    .section-header h2 {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .section-header h2::before,
    .section-header h2::after {
        display: none;
    }

    .about {
        background-attachment: scroll;
    }

    .about-content {
        padding: 2rem 1.5rem;
    }

    .results-grid {
        flex-direction: column;
        gap: 3rem;
    }

    .result-item {
        padding: 0;
    }

    .result-item:not(:last-child)::after {
        display: none;
    }

    .partner-card {
        width: 100%;
    }

    .contact-form {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }

    .form-group.full {
        grid-column: span 1;
    }

    .contact-button-container {
        grid-column: span 1;
    }
    
    body::before {
        display: none; /* Disable expensive noise filter on mobile */
    }

    .reveal {
        transform: translate3d(0, 15px, 0);
        transition-duration: 0.4s;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    /* Testimonials Mobile Fix */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 2.5rem 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
}
