/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --gold: #D4AF37;
    --gold-light: #E8C84A;
    --gold-dark: #B8960C;
    --black: #0A0A0A;
    --dark: #141414;
    --dark2: #1C1C1C;
    --gray: #F2F2F2;
    --white: #FFFFFF;
    --text: #999;
    --text-light: #666;
    --font-primary: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --transition: 0.4s var(--ease);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: color 0.3s; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1600px; margin: 0 auto; padding: 0 48px; width: 100%; }
.section { padding: 120px 0; position: relative; }
.gold { color: var(--gold); }

/* Luxury grain texture overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9990;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Gold section divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0;
    margin: 0 auto;
    max-width: 300px;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-divider .divider-diamond {
    width: 8px; height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* Shimmer effect on gold headings */
.section-title .gold {
    background: linear-gradient(120deg, var(--gold-dark), var(--gold-light), var(--gold), var(--gold-light), var(--gold-dark));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 4s linear infinite;
}

@keyframes goldShimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Glow line under section tags */
.section-tag {
    position: relative;
    display: inline-block;
}

.section-tag::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 40px; height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

/* ===== TYPOGRAPHY ===== */
.section-tag {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 5px;
    color: var(--gold);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 50px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 36px;
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn svg { width: 18px; height: 18px; }

.btn-gold {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    box-shadow: 0 0 0 0 rgba(212,175,55,0);
    animation: btnGoldPulse 3s ease-in-out infinite;
}

@keyframes btnGoldPulse {
    0%, 100% { box-shadow: 0 0 8px rgba(212,175,55,0.15), 0 0 0 0 rgba(212,175,55,0); }
    50% { box-shadow: 0 0 20px rgba(212,175,55,0.3), 0 0 40px rgba(212,175,55,0.08); }
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.btn-gold:hover::before { left: 100%; }

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212,175,55,0.4), 0 0 60px rgba(212,175,55,0.15);
    animation: none;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
    position: relative;
}

.btn-outline::after {
    content: '';
    position: absolute;
    inset: -2px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(212,175,55,0), rgba(212,175,55,0.3), rgba(212,175,55,0)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.btn-outline:hover::after { opacity: 1; }

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(212,175,55,0.1);
}

.btn-lg { padding: 18px 44px; font-size: 0.85rem; }

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold));
    z-index: 10000;
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(212,175,55,0.5);
}

/* ===== PAGE TRANSITION ===== */
.page-transition {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
}

.page-transition-bar {
    position: absolute;
    top: 0;
    width: 20%;
    height: 100%;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: bottom;
}

.page-transition-bar:nth-child(1) { left: 0; }
.page-transition-bar:nth-child(2) { left: 20%; }
.page-transition-bar:nth-child(3) { left: 40%; }
.page-transition-bar:nth-child(4) { left: 60%; }
.page-transition-bar:nth-child(5) { left: 80%; }

.page-transition.active .page-transition-bar {
    animation: ptReveal 0.6s var(--ease) forwards;
}

.page-transition.active .page-transition-bar:nth-child(2) { animation-delay: 0.05s; }
.page-transition.active .page-transition-bar:nth-child(3) { animation-delay: 0.1s; }
.page-transition.active .page-transition-bar:nth-child(4) { animation-delay: 0.15s; }
.page-transition.active .page-transition-bar:nth-child(5) { animation-delay: 0.2s; }

@keyframes ptReveal {
    0% { transform: scaleY(0); transform-origin: bottom; }
    45% { transform: scaleY(1); transform-origin: bottom; }
    55% { transform: scaleY(1); transform-origin: top; }
    100% { transform: scaleY(0); transform-origin: top; }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 100px; right: 30px;
    width: 44px; height: 44px;
    border: 1px solid rgba(212,175,55,0.3);
    background: rgba(10,10,10,0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 997;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s var(--ease);
    pointer-events: none;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212,175,55,0.2);
    transform: translateY(-3px);
}

.back-to-top svg {
    width: 18px; height: 18px;
    color: var(--gold);
}

/* ===== IMAGE REVEAL ===== */
.img-reveal {
    position: relative;
    overflow: hidden;
}

.img-reveal::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateX(-101%);
    z-index: 1;
}

.img-reveal.revealed::after {
    animation: imgReveal 1.2s var(--ease) forwards;
}

.img-reveal.revealed img {
    animation: imgFadeScale 0.8s var(--ease) 0.5s both;
}

@keyframes imgReveal {
    0% { transform: translateX(-101%); }
    40% { transform: translateX(0); }
    100% { transform: translateX(101%); }
}

@keyframes imgFadeScale {
    from { opacity: 0; transform: scale(1.15); }
    to { opacity: 1; transform: scale(1); }
}

/* ===== 3D TILT CARD ===== */
.tilt-card {
    transform-style: preserve-3d;
    perspective: 800px;
}

/* ===== TEXT GRADIENT GLOW ===== */
.glow-text {
    text-shadow: 0 0 20px rgba(212,175,55,0.15);
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}

.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

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

.preloader-logo {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 800;
    color: var(--gold);
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-text {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 8px;
    color: var(--text);
    margin-top: 8px;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    margin: 30px auto 0;
    border-radius: 2px;
    overflow: hidden;
}

.preloader-fill {
    width: 0%;
    height: 100%;
    background: var(--gold);
    animation: preloaderFill 1.8s var(--ease) forwards;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@keyframes preloaderFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.4s;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.navbar.scrolled .logo-img {
    height: 52px !important;
    transition: height 0.3s ease;
}

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

.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.logo .logo-img {
    height: 72px !important;
    width: auto !important;
    max-width: 200px !important;
    object-fit: contain;
}

.footer .logo-img {
    height: 60px !important;
    width: auto !important;
    max-width: 180px !important;
}

.logo-icon {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.logo-text { display: flex; flex-direction: column; }

.logo-name {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--white);
}

.logo-sub {
    font-size: 0.55rem;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 500;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 18px;
    margin-left: 32px;
}

.nav-links a {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.4s var(--ease);
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

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

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text);
    font-weight: 500;
}

.nav-phone svg { width: 16px; height: 16px; stroke: var(--gold); }
.nav-phone:hover { color: var(--gold); }

.nav-cta {
    padding: 10px 24px;
    font-size: 0.7rem;
    animation: navCtaGlow 3s ease-in-out infinite;
}

@keyframes navCtaGlow {
    0%, 100% { box-shadow: 0 0 8px rgba(212,175,55,0.2); }
    50% { box-shadow: 0 0 18px rgba(212,175,55,0.5), 0 0 40px rgba(212,175,55,0.1); }
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 28px; height: 1.5px;
    background: var(--white);
    transition: all 0.3s;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 48px;
    position: relative;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
}

.page-hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--black) 0%, rgba(10,10,10,0.6) 50%, rgba(10,10,10,0.3) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-content .breadcrumb {
    font-size: 0.75rem;
    color: var(--text);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.page-hero-content .breadcrumb a { color: var(--gold); }

.page-hero-content h1 {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

.page-hero + .section { padding-top: 0; }

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    padding-top: 80px;
    border-top: none;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer::after {
    content: '';
    position: absolute;
    top: -1px; left: 10%; right: 10%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.15), transparent);
    filter: blur(3px);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer-brand p {
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.footer-social a svg { width: 16px; height: 16px; fill: var(--text); }
.footer-social a:hover { background: var(--gold); }
.footer-social a:hover svg { fill: var(--black); }

.footer-col h4 {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    margin-bottom: 24px;
    color: var(--white);
}

.footer-col a, .footer-col p {
    display: block;
    color: var(--text);
    font-size: 0.85rem;
    padding: 5px 0;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p { color: var(--text-light); font-size: 0.78rem; }

/* ===== WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 60px; height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    animation: wpPulse 2s infinite;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--gold);
    border-right-color: var(--gold);
    animation: wpRingSpin 3s linear infinite;
    opacity: 0.6;
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,0.15);
    animation: wpRingPulse 2.5s ease-in-out infinite;
}

@keyframes wpRingSpin {
    to { transform: rotate(360deg); }
}

@keyframes wpRingPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.15); opacity: 0; }
}

.whatsapp-float svg { width: 28px; height: 28px; fill: white; position: relative; z-index: 1; }
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float:hover::before { border-top-color: #fff; border-right-color: #fff; }

@keyframes wpPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.08); }
}

/* ===== KVKK COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.97);
    border-top: 1px solid rgba(212,175,55,0.2);
    padding: 20px 0;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.cookie-banner, .cookie-banner * { cursor: default !important; }
.cookie-banner a, .cookie-banner button { cursor: pointer !important; }

.cookie-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-inner p {
    color: var(--text);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-accept {
    white-space: nowrap;
    padding: 10px 28px !important;
    font-size: 0.8rem !important;
}

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
    mix-blend-mode: difference;
}

.cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 36px; height: 36px;
    border: 1.5px solid rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s;
}

.cursor-dot.hover {
    width: 40px; height: 40px;
    background: rgba(212, 175, 55, 0.15);
}

.cursor-ring.hover {
    width: 60px; height: 60px;
    border-color: var(--gold);
}

@media (max-width: 768px) {
    .cursor-dot, .cursor-ring { display: none !important; }
}

/* ===== 3D CAR FOLLOWER ===== */
#car3dCanvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 997;
}

.gold-trail {
    position: fixed;
    pointer-events: none;
    z-index: 996;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    cursor: pointer;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    transform: scale(0.9);
    transition: transform 0.4s var(--ease);
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 24px; right: 24px;
    width: 48px; height: 48px;
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.lightbox-close:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px; height: 52px;
    background: none;
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.lightbox-nav:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212,175,55,0.08);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: var(--text);
    letter-spacing: 3px;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--dark); overflow: hidden; }
.testimonials .container { max-width: 100%; padding: 0; }

.testimonials-slider {
    display: flex;
    gap: 24px;
    padding: 20px 0;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonial-stars.stars-4 svg:last-child { fill: rgba(255,255,255,0.15); }

.testimonials-slider::-webkit-scrollbar { display: none; }

.testimonial-card {
    min-width: 380px;
    max-width: 380px;
    padding: 40px;
    background: var(--black);
    border: 1px solid rgba(255,255,255,0.04);
    flex-shrink: 0;
    transition: all 0.4s var(--ease);
}

.testimonial-card:hover {
    border-color: rgba(212,175,55,0.15);
    transform: translateY(-4px);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
}

.testimonial-stars svg {
    width: 16px; height: 16px;
    fill: var(--gold);
}

.testimonial-text {
    color: rgba(255,255,255,0.75);
    font-size: 0.92rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.testimonial-role {
    font-size: 0.75rem;
    color: var(--text);
    margin-top: 2px;
}

/* ===== SCROLL ANIMATIONS ===== */
[data-aos] {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease);
    filter: blur(2px);
}

[data-aos].visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Stagger children */
[data-aos-stagger] > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-aos-stagger].visible > *:nth-child(1) { transition-delay: 0.05s; }
[data-aos-stagger].visible > *:nth-child(2) { transition-delay: 0.12s; }
[data-aos-stagger].visible > *:nth-child(3) { transition-delay: 0.19s; }
[data-aos-stagger].visible > *:nth-child(4) { transition-delay: 0.26s; }
[data-aos-stagger].visible > *:nth-child(5) { transition-delay: 0.33s; }
[data-aos-stagger].visible > *:nth-child(6) { transition-delay: 0.40s; }

[data-aos-stagger].visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links, .nav-right { display: none; }
    .hamburger { display: flex; }
    .section { padding: 80px 0; }
    .logo .logo-img { height: 52px !important; max-width: 150px !important; }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0;
        background: rgba(10, 10, 10, 0.98);
        align-items: center;
        justify-content: center;
        gap: 20px;
        z-index: 1000;
    }

    .nav-links.active a {
        font-size: 1.3rem;
        color: var(--white);
        letter-spacing: 3px;
    }

    .footer-top { grid-template-columns: 1fr; gap: 30px; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .testimonial-card { min-width: 300px; max-width: 300px; padding: 28px; }
}

@media (max-width: 480px) {
    .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
    .whatsapp-float svg { width: 24px; height: 24px; }
}
