/* ═══════════════════════════════════════════════════════════
   MIND STUDIO — Premium Psychotherapy Website
   Design: Ultra-modern, trust-inspiring, innovative
   ═══════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
    /* Color System - Sophisticated & Calming */
    --clr-bg: #FAFAF8;
    --clr-bg-alt: #F3F1ED;
    --clr-bg-dark: #0F1419;
    --clr-surface: #FFFFFF;

    --clr-text: #1A1D23;
    --clr-text-muted: #6B7280;
    --clr-text-light: #9CA3AF;

    --clr-accent: #7C6A5C;          /* Warm earth tone */
    --clr-accent-light: #A89485;
    --clr-accent-glow: rgba(124, 106, 92, 0.15);

    --clr-gold: #C9A96E;
    --clr-gold-light: rgba(201, 169, 110, 0.12);
    --clr-gold-glow: rgba(201, 169, 110, 0.3);

    --clr-gradient-start: #1A1D23;
    --clr-gradient-end: #2D3748;

    --clr-border: rgba(0, 0, 0, 0.06);
    --clr-border-hover: rgba(0, 0, 0, 0.12);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: clamp(80px, 12vw, 160px);
    --container-max: 1280px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s var(--ease-out);
}

ul { list-style: none; }

/* ── CURSOR GLOW ── */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--clr-gold-glow) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    mix-blend-mode: normal;
}

body:hover .cursor-glow {
    opacity: 1;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--clr-text);
    font-weight: 500;
    line-height: 1.2;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }

em {
    font-style: italic;
    color: var(--clr-gold);
}

p {
    color: var(--clr-text-muted);
    font-weight: 400;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ── UTILITY ── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--clr-gold);
    margin-bottom: 20px;
}

.section-title {
    margin-bottom: 20px;
    max-width: 600px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-title {
    margin-left: auto;
    margin-right: auto;
}

.section-desc {
    max-width: 580px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-glow {
    background: var(--clr-text);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15),
                0 0 0 0 rgba(201, 169, 110, 0);
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2),
                0 0 40px var(--clr-gold-glow);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--clr-text);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: var(--clr-text);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

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

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--ease-out);
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

.btn-icon-left {
    width: 18px;
    height: 18px;
}

/* ═══════════ NAVBAR ═══════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.5s var(--ease-out);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(250, 250, 248, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--clr-border);
    padding: 14px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 10;
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--clr-text);
    color: white;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all 0.4s var(--ease-out);
}

.logo:hover .logo-mark {
    background: var(--clr-gold);
    transform: rotate(-3deg) scale(1.05);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--clr-text);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    letter-spacing: 0.02em;
    position: relative;
    padding: 6px 0;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--clr-gold);
    transition: width 0.4s var(--ease-out);
}

.nav-link:hover {
    color: var(--clr-text);
}

.nav-link:hover::after {
    width: 100%;
}

.cta-link {
    background: var(--clr-text);
    color: white !important;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.cta-link::after { display: none; }

.cta-link:hover {
    background: var(--clr-gold);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px var(--clr-gold-glow);
}

/* Hamburger Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: all 0.4s var(--ease-out);
    transform-origin: center;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(250, 250, 248, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease-out);
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--clr-text);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s var(--ease-out);
}

.mobile-overlay.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-overlay.active .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-overlay.active .mobile-nav-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-overlay.active .mobile-nav-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-overlay.active .mobile-nav-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-overlay.active .mobile-nav-link:nth-child(5) { transition-delay: 0.3s; }

.cta-mobile {
    margin-top: 16px;
    background: var(--clr-text);
    color: white !important;
    padding: 14px 40px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
}

/* ═══════════ HERO ═══════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg-anim {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero_water.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
    will-change: transform;
    animation: heroBreath 30s infinite alternate ease-in-out;
}

@keyframes heroBreath {
    0%   { transform: scale(1) translate(0, 0); }
    50%  { transform: scale(1.08) translate(-1%, 1%); }
    100% { transform: scale(1.12) translate(1%, -1%); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(250, 250, 248, 0.4) 0%,
        rgba(250, 250, 248, 0.2) 40%,
        rgba(15, 20, 25, 0.15) 100%
    );
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--clr-gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat var(--duration) var(--delay) infinite ease-in-out;
}

@keyframes particleFloat {
    0%   { opacity: 0; transform: translateY(0) scale(0); }
    20%  { opacity: 0.6; }
    80%  { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-150px) scale(1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-text);
    margin-bottom: 32px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--clr-gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%     { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    margin-bottom: 28px;
}

.title-line {
    display: block;
    line-height: 1.1;
}

.title-line em {
    font-style: italic;
    color: var(--clr-gold);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--clr-text-muted);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--clr-gold), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%   { scaleY: 0; opacity: 0; transform-origin: top; }
    50%  { scaleY: 1; opacity: 1; }
    100% { scaleY: 0; opacity: 0; transform-origin: bottom; }
}

.hero-scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--clr-text-light);
    font-weight: 500;
}

/* ═══════════ TRUST BAR ═══════════ */
.trust-bar {
    background: var(--clr-surface);
    border-bottom: 1px solid var(--clr-border);
    padding: 32px 0;
    position: relative;
    z-index: 5;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius-md);
    transition: all 0.3s var(--ease-out);
}

.trust-item:hover {
    background: var(--clr-bg-alt);
}

.trust-icon {
    width: 40px;
    height: 40px;
    color: var(--clr-gold);
    flex-shrink: 0;
}

.trust-item strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clr-text);
}

.trust-item span {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

/* ═══════════ ABOUT ═══════════ */
.about-section {
    background: var(--clr-surface);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.about-image-frame:hover .about-image {
    transform: scale(1.03);
}

.image-accent-border {
    position: absolute;
    inset: -8px;
    border: 2px solid var(--clr-gold);
    border-radius: calc(var(--radius-lg) + 4px);
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-text);
    z-index: 3;
    animation: floatCard 6s ease-in-out infinite;
}

.floating-card-1 {
    bottom: 40px;
    left: -30px;
    animation-delay: 0s;
}

.floating-card-2 {
    top: 40px;
    right: -30px;
    animation-delay: 3s;
}

.floating-card-3 {
    bottom: -15px;
    right: -10px;
    animation-delay: 1.5s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

.floating-card-icon {
    width: 22px;
    height: 22px;
    color: var(--clr-gold);
}

/* About Text */
.section-subtitle-role {
    color: var(--clr-text-muted);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.about-credential {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 20px;
    background: var(--clr-bg-alt);
    border-radius: var(--radius-md);
    margin-bottom: 32px;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--clr-text);
    border-left: 3px solid var(--clr-gold);
}

.credential-icon {
    width: 22px;
    height: 22px;
    color: var(--clr-gold);
    flex-shrink: 0;
    margin-top: 1px;
}

.about-description {
    margin-bottom: 32px;
}

.about-quote {
    position: relative;
    padding: 24px 0 24px 28px;
    border-left: 3px solid var(--clr-gold);
    margin: 32px 0;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--clr-text);
    line-height: 1.6;
}

.quote-icon {
    position: absolute;
    top: -8px;
    left: -16px;
    width: 32px;
    height: 32px;
    color: var(--clr-gold);
    opacity: 0.3;
}

.stats-row {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--clr-border);
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--clr-gold);
    line-height: 1;
    display: inline;
}

.stat-plus {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--clr-gold);
}

.stat-item p {
    margin-top: 6px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--clr-text-muted);
    margin-bottom: 0;
}

/* ═══════════ SERVICES ═══════════ */
.services-section {
    background: var(--clr-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    background: var(--clr-surface);
    padding: 48px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
    cursor: default;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--clr-gold-light) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s var(--ease-out);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--clr-gold);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.06),
                0 0 0 1px var(--clr-gold-glow);
}

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

.card-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--clr-gold-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s var(--ease-out);
    pointer-events: none;
}

.service-card:hover .card-glow {
    opacity: 1;
}

.card-number {
    position: absolute;
    top: 24px;
    right: 32px;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 600;
    color: var(--clr-border);
    line-height: 1;
    transition: color 0.5s;
    z-index: 1;
}

.service-card:hover .card-number {
    color: var(--clr-gold-light);
}

.card-icon-wrapper {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--clr-gold-light);
    border-radius: var(--radius-md);
    margin-bottom: 28px;
    transition: all 0.4s var(--ease-out);
}

.service-card:hover .card-icon-wrapper {
    background: var(--clr-gold);
    transform: rotate(-5deg) scale(1.05);
}

.card-icon {
    width: 28px;
    height: 28px;
    color: var(--clr-gold);
    transition: color 0.4s;
}

.service-card:hover .card-icon {
    color: white;
}

.service-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.service-card:hover h3 {
    color: var(--clr-text);
}

.service-card p {
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

/* Card Evaluation List */
.card-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    z-index: 1;
    position: relative;
}

.card-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    margin-bottom: 12px;
    line-height: 1.4;
}

.card-list-icon {
    width: 18px;
    height: 18px;
    color: var(--clr-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.card-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-gold);
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s var(--ease-out);
}

.service-card:hover .card-link {
    opacity: 1;
    transform: translateY(0);
}

.card-link-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.card-link:hover .card-link-icon {
    transform: translateX(4px);
}

/* ═══════════ METHOD ═══════════ */
.method-section {
    background: var(--clr-surface);
    overflow: hidden;
}

.method-timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--clr-gold), var(--clr-border));
}

.method-step {
    display: flex;
    gap: 32px;
    padding: 32px 0;
    position: relative;
}

.step-marker {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--clr-bg);
    border: 2px solid var(--clr-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.4s var(--ease-out);
}

.step-marker span {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--clr-gold);
    transition: color 0.3s;
}

.method-step:hover .step-marker {
    background: var(--clr-gold);
    transform: scale(1.1);
}

.method-step:hover .step-marker span {
    color: white;
}

.step-content {
    padding-top: 12px;
}

.step-content h3 {
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ═══════════ TESTIMONIALS ═══════════ */
.testimonials-section {
    background: var(--clr-bg-dark);
    overflow: hidden;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s var(--ease-out);
}

.testimonial-card {
    min-width: 100%;
    padding: 56px 64px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

.star-icon {
    width: 18px;
    height: 18px;
    color: var(--clr-gold);
    fill: var(--clr-gold);
}

.testimonial-card p {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: none;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--clr-gold);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
}

.testimonial-author strong {
    display: block;
    color: white;
    font-size: 0.95rem;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.carousel-btn:hover {
    background: var(--clr-gold);
    border-color: var(--clr-gold);
    transform: scale(1.05);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.carousel-dot.active {
    background: var(--clr-gold);
    transform: scale(1.2);
}

/* ═══════════ LOCATIONS ═══════════ */
.locations-section {
    background: var(--clr-bg);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.location-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    transition: all 0.5s var(--ease-out);
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}

.location-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.location-card:hover .location-image img {
    transform: scale(1.08);
}

.location-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

.location-info {
    padding: 32px;
    position: relative;
}

.location-pin {
    position: absolute;
    top: -24px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--clr-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 16px var(--clr-gold-glow);
}

.location-pin svg {
    width: 20px;
    height: 20px;
}

.location-info h3 {
    margin-bottom: 6px;
}

.location-address {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    margin-bottom: 20px;
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-gold);
}

.location-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 48px;
    padding: 20px 32px;
    background: var(--clr-bg-alt);
    border-radius: var(--radius-md);
    color: var(--clr-text);
    font-size: 1rem;
    border: 1px solid var(--clr-border);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.notice-icon {
    width: 22px;
    height: 22px;
    color: var(--clr-gold);
    flex-shrink: 0;
}

.location-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.location-link:hover svg {
    transform: translateX(4px);
}

/* ═══════════ CTA SECTION ═══════════ */
.cta-section {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
    background: var(--clr-bg-dark);
}

.cta-bg-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, var(--clr-gold-glow) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(124, 106, 92, 0.1) 0%, transparent 50%);
    animation: ctaGradient 10s infinite alternate ease-in-out;
}

@keyframes ctaGradient {
    0%   { opacity: 0.5; }
    100% { opacity: 1; }
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    color: white;
    margin-bottom: 20px;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.cta-desc {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══════════ FOOTER ═══════════ */
footer {
    background: #0A0C10;
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo .logo-mark {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
    background: var(--clr-gold);
}

.footer-logo .logo-text {
    color: white;
    font-size: 1.05rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    margin-bottom: 24px;
    max-width: 280px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s var(--ease-out);
}

.social-link:hover {
    background: var(--clr-gold);
    border-color: var(--clr-gold);
    color: white;
    transform: translateY(-3px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-col h4 {
    color: white;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.footer-col li {
    margin-bottom: 14px;
}

.footer-col a,
.footer-col span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}

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

.footer-icon {
    width: 16px;
    height: 16px;
    opacity: 0.5;
}

.footer-bottom {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.82rem;
    margin: 0;
}

/* ═══════════ ANIMATIONS ═══════════ */
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Smooth entrance for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
    .trust-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image {
        height: 450px;
    }

    .floating-card-1 { left: 10px; }
    .floating-card-2 { right: 10px; }
    .floating-card-3 { right: 10px; bottom: 10px; }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

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

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

    .hero-title {
        font-size: clamp(2.4rem, 8vw, 4rem);
    }

    .trust-items {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .about-grid {
        gap: 32px;
    }

    .about-image {
        height: 350px;
    }

    .floating-card {
        display: none;
    }

    .stats-row {
        flex-direction: column;
        gap: 24px;
    }

    .stats-row .stat-item {
        display: flex;
        align-items: baseline;
        gap: 12px;
    }

    .testimonial-card {
        padding: 36px 28px;
    }

    .testimonial-card p {
        font-size: 1.1rem;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cursor-glow {
        display: none;
    }
}

/* ═══════════ PRELOADER ═══════════ */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--clr-bg);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

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

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

.preloader-logo {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--clr-text);
    margin-bottom: 24px;
    animation: preloaderPulse 1.5s infinite ease-in-out;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(0.95); }
}

.preloader-bar {
    width: 120px;
    height: 3px;
    background: var(--clr-border);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-progress {
    width: 0;
    height: 100%;
    background: var(--clr-gold);
    border-radius: 3px;
    animation: preloaderFill 1.5s var(--ease-out) forwards;
}

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

/* ═══════════ FAQ ═══════════ */
.faq-section {
    background: var(--clr-bg);
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.faq-header .section-title {
    text-align: left;
}

.faq-header .section-desc {
    text-align: left;
    margin: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--clr-border);
}

.faq-item:first-child {
    border-top: 1px solid var(--clr-border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--clr-text);
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--clr-gold);
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--clr-gold);
    transition: transform 0.4s var(--ease-out);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out), padding 0.5s var(--ease-out);
    padding: 0 0 0 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 0 24px 0;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: none;
    margin: 0;
}

/* ═══════════ CONTACT FORM ═══════════ */
.contact-section {
    background: var(--clr-bg-dark);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, var(--clr-gold-glow) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(124, 106, 92, 0.1) 0%, transparent 50%);
    animation: ctaGradient 10s infinite alternate ease-in-out;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-title {
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.contact-desc {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    transition: all 0.3s var(--ease-out);
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
}

.contact-method-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--clr-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-method-icon svg {
    width: 20px;
    height: 20px;
}

.whatsapp-method {
    background: #25D366;
}

.contact-method strong {
    display: block;
    color: white;
    font-size: 0.9rem;
}

.contact-method span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 48px;
}

.contact-form h3 {
    color: white;
    margin-bottom: 32px;
    font-size: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: white;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s var(--ease-out);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,255,255,0.4)' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--clr-bg-dark);
    color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--clr-gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px var(--clr-gold-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-privacy {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
}

.form-privacy input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--clr-gold);
    flex-shrink: 0;
}

.form-privacy label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}

.form-privacy a {
    color: var(--clr-gold);
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    justify-content: center;
}

.form-success {
    display: none;
    text-align: center;
    margin-top: 24px;
    padding: 20px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius-md);
}

.form-success.visible {
    display: block;
    animation: fadeInUp 0.5s var(--ease-out);
}

.success-icon {
    width: 40px;
    height: 40px;
    color: #22C55E;
    margin: 0 auto 12px;
}

.form-success p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
    max-width: none;
}

/* ═══════════ BLOG ═══════════ */
.blog-section {
    background: var(--clr-bg-alt);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: var(--clr-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    transition: all 0.5s var(--ease-out);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.blog-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--clr-text);
}

.blog-card-body {
    padding: 28px;
}

.blog-card-date {
    font-size: 0.78rem;
    color: var(--clr-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    display: block;
}

.blog-card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.blog-card:hover .blog-card-body h3 {
    color: var(--clr-gold);
}

.blog-card-body p {
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.7;
}

/* ═══════════ LOCATION MAP ═══════════ */
.location-map {
    margin: 16px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
}

/* ═══════════ WHATSAPP FLOAT ═══════════ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 62px;
    height: 62px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transition: all 0.4s var(--ease-out);
    opacity: 0;
    transform: scale(0) translateY(20px);
}

.whatsapp-float.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.3);
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0%   { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

.whatsapp-svg {
    width: 30px;
    height: 30px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    white-space: nowrap;
    background: var(--clr-text);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 500;
    opacity: 0;
    transform: translateX(8px);
    transition: all 0.3s var(--ease-out);
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--clr-text);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ═══════════ BACK TO TOP ═══════════ */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 32px;
    width: 44px;
    height: 44px;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 997;
    opacity: 0;
    transform: translateY(16px);
    transition: all 0.4s var(--ease-out);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

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

.back-to-top:hover {
    background: var(--clr-gold);
    border-color: var(--clr-gold);
    color: white;
    transform: translateY(-3px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* ═══════════ COOKIE BANNER ═══════════ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: var(--clr-surface);
    border-top: 1px solid var(--clr-border);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.08);
    padding: 20px 0;
    transform: translateY(100%);
    transition: transform 0.6s var(--ease-out);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.cookie-icon {
    width: 28px;
    height: 28px;
    color: var(--clr-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-text strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.cookie-text p {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    margin: 0;
    max-width: 500px;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--clr-gold);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    border: none;
}

.cookie-decline {
    background: transparent;
    border: 1px solid var(--clr-border);
    color: var(--clr-text-muted);
}

.cookie-decline:hover {
    border-color: var(--clr-text);
    color: var(--clr-text);
}

.cookie-accept {
    background: var(--clr-text);
    color: white;
}

.cookie-accept:hover {
    background: var(--clr-gold);
    transform: translateY(-1px);
}

/* ═══════════ FOOTER LEGAL ═══════════ */
.footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.82rem;
    transition: color 0.3s;
}

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

.footer-legal span {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.82rem;
}

/* ═══════════ RESPONSIVE — PREMIUM MOBILE EXPERIENCE ═══════════ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .faq-header {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

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

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

    .hero-container {
        padding-top: 140px;
        text-align: center;
    }

    .hero-title {
        font-size: clamp(2.4rem, 8vw, 4rem);
        margin-bottom: 24px;
    }

    .hero-subtitle {
        font-size: 1.15rem;
        margin: 0 auto 32px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 16px;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .trust-items {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 48px;
    }

    .section-header {
        text-align: center;
        margin-bottom: 48px;
    }

    .about-grid {
        gap: 40px;
    }

    .about-image {
        height: 380px;
        order: -1; /* Image first on mobile */
    }

    .floating-card {
        display: none; /* Hide complex floating elements on mobile for performance and clarity */
    }

    .stats-row {
        flex-direction: column;
        align-items: center;
        gap: 32px;
        text-align: center;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .testimonial-card {
        padding: 40px 30px;
    }

    .contact-form-wrapper {
        padding: 40px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .footer-brand, .footer-col {
        align-items: center;
    }

    .footer-col ul li {
        justify-content: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cookie-text {
        flex-direction: column;
    }
}

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

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

    .section-title {
        font-size: 2rem;
    }

    .service-card {
        padding: 32px 24px;
    }

    .card-number {
        font-size: 2.5rem;
    }

    .contact-title {
        font-size: 2rem;
    }

    .method-timeline::after {
        left: 30px;
    }

    .method-step {
        padding-left: 70px;
        text-align: left !important;
    }

    .step-marker {
        left: 0;
        transform: none;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .back-to-top {
        bottom: 80px;
        right: 20px;
    }
}