/* ============================================
   RESONATE WELLNESS CENTRE
   Premium Psychology Clinic Website
   Futuristic & Modern Design System
   ============================================ */

/* CSS Custom Properties (Design Tokens) */
:root {
    /* Color Palette - Sophisticated & Calming */
    --color-primary: #1a2f23;
    --color-primary-light: #2a4a38;
    --color-primary-dark: #0f1c15;

    --color-accent: #c9a86c;
    --color-accent-light: #dfc495;
    --color-accent-dark: #a88a4a;

    --color-sage: #7d9a8c;
    --color-sage-light: #a8c4b5;

    --color-cream: #f8f5f0;
    --color-cream-dark: #ebe5dc;

    --color-text: #1a1a1a;
    --color-text-muted: #5a5a5a;
    --color-text-light: #8a8a8a;
    --color-text-inverse: #ffffff;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Font Sizes */
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
    --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.25rem);
    --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
    --text-3xl: clamp(2rem, 1.5rem + 2.5vw, 3rem);
    --text-4xl: clamp(2.5rem, 2rem + 3vw, 4rem);
    --text-5xl: clamp(3rem, 2rem + 5vw, 5.5rem);

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Layout */
    --container-max: 1400px;
    --section-padding: clamp(4rem, 8vw, 8rem);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-slower: 800ms cubic-bezier(0.16, 1, 0.3, 1);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(26, 47, 35, 0.05);
    --shadow-md: 0 4px 12px rgba(26, 47, 35, 0.08);
    --shadow-lg: 0 12px 40px rgba(26, 47, 35, 0.12);
    --shadow-xl: 0 24px 80px rgba(26, 47, 35, 0.16);

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

    /* Z-Index */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-overlay: 300;
    --z-modal: 400;
    --z-toast: 500;
    --z-cursor: 600;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-cream);
    overflow-x: hidden;
}

body.loading {
    overflow: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
}

address {
    font-style: normal;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary);
    color: var(--color-text-inverse);
    padding: var(--space-sm) var(--space-md);
    z-index: var(--z-toast);
    transition: top var(--transition-base);
}

.skip-link:focus {
    top: 0;
}

::selection {
    background: var(--color-accent);
    color: var(--color-primary-dark);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-toast);
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
}

.preloader-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--color-accent);
    opacity: 0.3;
    animation: preloader-pulse 2s ease-in-out infinite;
}

.preloader-circle:nth-child(1) {
    width: 60px;
    height: 60px;
}

.preloader-circle:nth-child(2) {
    width: 100px;
    height: 100px;
    animation-delay: 0.3s;
}

.preloader-circle:nth-child(3) {
    width: 140px;
    height: 140px;
    animation-delay: 0.6s;
}

.preloader-text {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 400;
    color: var(--color-accent);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 100px;
}

@keyframes preloader-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

/* Custom Cursor */
.cursor,
.cursor-follower {
    position: fixed;
    pointer-events: none;
    z-index: var(--z-cursor);
    opacity: 0;
    transition: opacity var(--transition-base);
}

body:hover .cursor,
body:hover .cursor-follower {
    opacity: 1;
}

.cursor {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.cursor-follower.hover {
    width: 60px;
    height: 60px;
}

@media (max-width: 1024px) {

    .cursor,
    .cursor-follower {
        display: none;
    }
}

/* Layout */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-2xl);
    }
}

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

/* Typography */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent-dark);
    margin-bottom: var(--space-lg);
}

.section-tag::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--color-accent);
}

.section-tag-light {
    color: var(--color-accent-light);
}

.section-tag-light::before {
    background: var(--color-accent-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 400;
    line-height: 1.15;
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
}

.section-title-light {
    color: var(--color-text-inverse);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
    max-width: 600px;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.section-header .section-tag {
    justify-content: center;
}

.section-header .section-tag::before {
    display: none;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

.section-header-light .section-tag {
    color: var(--color-accent);
}

.section-header-light .section-title {
    color: var(--color-text-inverse);
}

.section-header-light .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-text-inverse);
    z-index: 1;
}

.btn-primary span,
.btn-primary .btn-icon {
    position: relative;
    z-index: 2;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-accent);
    transform: translateX(-100%);
    transition: transform var(--transition-slow);
    z-index: 1;
}

.btn-primary:hover {
    color: var(--color-primary-dark);
}

.btn-primary:hover::before {
    transform: translateX(0);
}

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

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

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-text-inverse);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-sage);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: var(--color-text-inverse);
}

.btn-submit {
    width: 100%;
    background: var(--color-accent);
    color: var(--color-primary-dark);
    padding: var(--space-lg) var(--space-xl);
}

.btn-submit:hover {
    background: var(--color-accent-light);
}

.btn-small {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--text-xs);
}

.btn-icon {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-base);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--space-lg) 0;
    z-index: var(--z-sticky);
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(248, 245, 240, 0.95);
    backdrop-filter: blur(20px);
    padding: var(--space-md) 0;
    box-shadow: var(--shadow-sm);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-primary);
}

.logo-icon {
    width: 40px;
    height: 40px;
}

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

.nav-menu {
    display: none;
    gap: var(--space-xl);
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
        align-items: center;
    }
}

.nav-link {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    padding: var(--space-xs) 0;
    transition: color var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width var(--transition-base);
}

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

.nav-link-cta {
    background: var(--color-primary);
    color: var(--color-text-inverse);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
}

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

.nav-link-cta:hover {
    background: var(--color-accent);
    color: var(--color-primary-dark);
}

/* Mobile Nav */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: var(--space-sm);
    z-index: var(--z-modal);
}

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

.hamburger {
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    position: relative;
    transition: background var(--transition-base);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    transition: all var(--transition-base);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

@media (max-width: 1023px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: var(--color-cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-xl);
        padding: var(--space-4xl);
        transition: right var(--transition-slower);
        box-shadow: var(--shadow-xl);
    }

    .nav-menu.active {
        display: flex;
        right: 0;
    }

    .nav-link {
        font-size: var(--text-xl);
    }
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(201, 168, 108, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(125, 154, 140, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, var(--color-cream) 0%, var(--color-cream-dark) 100%);
}

.hero-noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.hero-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 168, 108, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(125, 154, 140, 0.2) 0%, transparent 70%);
    bottom: 10%;
    left: -50px;
    animation-delay: -7s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(26, 47, 35, 0.08) 0%, transparent 70%);
    top: 40%;
    right: 20%;
    animation-delay: -14s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -30px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(20px, 10px) scale(1.02);
    }
}

.hero-content {
    position: relative;
    z-index: var(--z-base);
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(26, 47, 35, 0.05);
    border: 1px solid rgba(26, 47, 35, 0.1);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-primary);
    margin-bottom: var(--space-xl);
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-line:nth-child(1) {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.title-line:nth-child(2) {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.title-accent {
    color: var(--color-accent-dark);
    font-style: italic;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
    max-width: 540px;
    margin-bottom: var(--space-2xl);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-4xl);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1s;
    opacity: 0;
}

.hero-stats {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: var(--space-md);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1.2s;
    opacity: 0;
    margin-bottom: var(--space-4xl);
}

@media (min-width: 640px) {
    .hero-stats {
        gap: var(--space-xl);
        margin-bottom: var(--space-5xl);
    }
}

.stat {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.stat-number {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 500;
    color: var(--color-primary);
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    color: var(--color-accent);
}

.stat-label {
    width: 100%;
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(26, 47, 35, 0.15);
    display: block;
}

@media (min-width: 640px) {
    .stat-divider {
        height: 40px;
    }
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text-muted);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 1.4s;
    opacity: 0;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.hero-scroll.hidden {
    opacity: 0 !important;
    visibility: hidden;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 1px solid var(--color-sage);
    border-radius: var(--radius-full);
    position: relative;
}

.scroll-dot {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-accent);
    border-radius: var(--radius-full);
    animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        top: 8px;
        opacity: 1;
    }

    50% {
        top: 20px;
        opacity: 0.5;
    }
}

/* About Section */
.about {
    background: var(--color-cream);
}

.about-grid {
    display: grid;
    gap: var(--space-4xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-5xl);
    }
}

.about-content {
    order: 2;
}

@media (min-width: 1024px) {
    .about-content {
        order: 1;
    }
}

.about-text {
    font-size: var(--text-base);
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.about-text strong {
    color: var(--color-primary);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.feature {
    display: flex;
    gap: var(--space-lg);
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 108, 0.1);
    border-radius: var(--radius-lg);
    color: var(--color-accent-dark);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-content h3 {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
}

.feature-content p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.about-visual {
    order: 1;
    position: relative;
}

@media (min-width: 1024px) {
    .about-visual {
        order: 2;
    }
}

.about-image-wrapper {
    position: relative;
    aspect-ratio: 4/5;
}

.about-image {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-sage-light) 0%, var(--color-sage) 100%);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    opacity: 0.5;
}

.image-placeholder svg {
    width: 80%;
    height: auto;
}

.about-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    border: 1px solid var(--color-accent);
    border-radius: var(--radius-xl);
    z-index: -1;
}

.about-rating {
    position: absolute;
    bottom: -30px;
    left: -20px;
    background: var(--color-cream);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.rating-stars {
    display: flex;
    gap: 2px;
    color: var(--color-accent);
}

.rating-stars svg {
    width: 16px;
    height: 16px;
}

.rating-text {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-primary);
}

.rating-count {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

/* Services Section */
.services {
    background: var(--color-cream-dark);
    position: relative;
    overflow: hidden;
}

.services-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.services-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(201, 168, 108, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(125, 154, 140, 0.05) 0%, transparent 40%);
}

.services .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    gap: var(--space-lg);
}

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

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

.service-card {
    background: var(--color-cream);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-slow);
    border: 1px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-sage));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 168, 108, 0.2);
}

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

.service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: var(--space-lg);
    color: var(--color-accent-dark);
    transition: transform var(--transition-base);
}

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

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.service-desc {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.6;
}

.service-tag {
    display: inline-block;
    margin-top: var(--space-md);
    padding: var(--space-xs) var(--space-sm);
    background: rgba(201, 168, 108, 0.15);
    color: var(--color-accent-dark);
    font-size: var(--text-xs);
    font-weight: 500;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.services-cta {
    text-align: center;
    margin-top: var(--space-4xl);
}

.services-cta p {
    font-size: var(--text-base);
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

/* Therapist Section */
.therapist {
    background: var(--color-cream);
}

.therapist-grid {
    display: grid;
    gap: var(--space-4xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .therapist-grid {
        grid-template-columns: 400px 1fr;
        gap: var(--space-5xl);
    }
}

.therapist-image-col {
    position: relative;
}

.therapist-image-wrapper {
    position: relative;
    aspect-ratio: 3/4;
}

.therapist-image {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
}

.therapist-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.therapist-placeholder {
    flex-direction: column;
    gap: var(--space-md);
    color: var(--color-accent-light);
}

.therapist-placeholder span {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    opacity: 0.8;
}

.therapist-frame {
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 60%;
    height: 40%;
    border: 1px solid var(--color-accent);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.therapist-badge {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--color-cream);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.badge-icon {
    width: 18px;
    height: 18px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--color-primary-dark);
}

.therapist-title {
    font-size: var(--text-lg);
    color: var(--color-accent-dark);
    margin-bottom: var(--space-xl);
}

.therapist-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.credential {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(201, 168, 108, 0.1);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.credential-icon {
    font-size: var(--text-base);
}

.therapist-bio {
    font-size: var(--text-base);
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.therapist-specialties {
    margin: var(--space-xl) 0;
}

.therapist-specialties h4 {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.specialty-tag {
    padding: var(--space-xs) var(--space-md);
    background: var(--color-primary);
    color: var(--color-text-inverse);
    font-size: var(--text-xs);
    border-radius: var(--radius-full);
    white-space: nowrap;
    display: inline-block;
}

.therapist-stats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2xl);
    margin: var(--space-2xl) 0;
    padding: var(--space-xl) 0;
    border-top: 1px solid rgba(26, 47, 35, 0.1);
    border-bottom: 1px solid rgba(26, 47, 35, 0.1);
}

.t-stat {
    display: flex;
    flex-direction: column;
}

.t-stat-number {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 500;
    color: var(--color-accent-dark);
}

.t-stat-label {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Approach Section */
.approach {
    background: var(--color-primary);
    position: relative;
    overflow: hidden;
}

.approach-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 50% 50% at 10% 90%, rgba(201, 168, 108, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 90% 10%, rgba(125, 154, 140, 0.1) 0%, transparent 50%);
}

.approach-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: var(--space-3xl);
}

.timeline-line {
    position: absolute;
    left: 15px;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-accent), rgba(201, 168, 108, 0.2));
}

.timeline-item {
    position: relative;
    padding-bottom: var(--space-3xl);
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: calc(-1 * var(--space-3xl) + 2px);
    width: 28px;
    height: 28px;
    background: var(--color-primary);
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-marker span {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-accent);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(201, 168, 108, 0.3);
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 500;
    color: var(--color-text-inverse);
    margin-bottom: var(--space-sm);
}

.timeline-content p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
}

/* Testimonials Section */
.testimonials {
    background: var(--color-cream);
}

.testimonials-slider {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    min-height: 400px;
    perspective: 1000px;
}

.testimonials-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--space-2xl);
    background: var(--color-cream-dark);
    border-radius: var(--radius-xl);
    text-align: center;
    opacity: 0;
    transform: scale(0.85) translateY(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    cursor: grab;
}

.testimonial-card:active {
    cursor: grabbing;
}

.testimonial-card.active {
    position: relative;
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
    z-index: 10;
}

.testimonial-card.prev {
    opacity: 0.3;
    transform: scale(0.9) translateX(-20px);
    z-index: 5;
}

.testimonial-card.next {
    opacity: 0.3;
    transform: scale(0.9) translateX(20px);
    z-index: 5;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: var(--space-xl);
}

.testimonial-rating .google-logo {
    flex-shrink: 0;
}

.star-rating {
    display: flex;
    flex-direction: row;
    gap: 4px;
    color: var(--color-accent);
}

.star-rating svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 400;
    font-style: italic;
    color: var(--color-primary);
    line-height: 1.6;
    margin-bottom: var(--space-xl);
}

.testimonial-quote::before {
    content: '"';
    font-size: var(--text-4xl);
    color: var(--color-accent);
    line-height: 0;
    vertical-align: bottom;
    margin-right: var(--space-xs);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.author-name {
    font-weight: 600;
    color: var(--color-primary);
}

.author-treatment {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.testimonial-btn {
    width: 48px;
    height: 48px;
    border: 1px solid var(--color-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all var(--transition-base);
}

.testimonial-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-text-inverse);
}

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

.testimonials-dots {
    display: flex;
    gap: var(--space-sm);
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--color-sage-light);
    border-radius: 50%;
    transition: all var(--transition-base);
}

.dot.active {
    width: 24px;
    border-radius: var(--radius-full);
    background: var(--color-accent);
}

.review-links {
    text-align: center;
    margin-top: var(--space-3xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid rgba(26, 47, 35, 0.1);
}

.review-cta {
    font-size: var(--text-base);
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.review-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.review-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    transition: all var(--transition-base);
}

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

.review-btn-google {
    background: white;
    color: #4285f4;
    border: 1px solid rgba(66, 133, 244, 0.3);
    box-shadow: var(--shadow-sm);
}

.review-btn-google:hover {
    background: #4285f4;
    color: white;
    border-color: #4285f4;
}

.review-btn-practo {
    background: white;
    color: #14bef0;
    border: 1px solid rgba(20, 190, 240, 0.3);
    box-shadow: var(--shadow-sm);
}

.review-btn-practo:hover {
    background: #14bef0;
    color: white;
    border-color: #14bef0;
}

/* FAQ Section */
.faq {
    background: var(--color-cream-dark);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid transparent;
    transition: border-color var(--transition-base);
}

.faq-item:hover {
    border-color: rgba(201, 168, 108, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    padding: var(--space-lg) var(--space-xl);
    text-align: left;
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--color-primary);
    transition: color var(--transition-base);
}

.faq-question:hover {
    color: var(--color-accent-dark);
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    transition: transform var(--transition-base);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--space-xl) var(--space-xl);
    font-size: var(--text-base);
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* Contact Section */
.contact {
    background: var(--color-primary);
    position: relative;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(201, 168, 108, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 80% 20%, rgba(125, 154, 140, 0.08) 0%, transparent 50%);
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    gap: var(--space-4xl);
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-5xl);
    }
}

.contact-intro {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-2xl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.contact-item {
    display: flex;
    gap: var(--space-lg);
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(201, 168, 108, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

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

.contact-text h4 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-text-inverse);
    margin-bottom: var(--space-xs);
}

.contact-text p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.contact-link {
    display: inline-block;
    margin-top: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--color-accent);
    transition: color var(--transition-base);
}

.contact-link:hover {
    color: var(--color-accent-light);
}

.contact-note {
    display: block;
    margin-top: var(--space-xs);
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.5);
}

.clinic-schedule {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.clinic-schedule p {
    margin: 0;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.clinic-schedule strong {
    color: rgba(255, 255, 255, 0.9);
}

.contact-fee {
    display: flex;
    align-items: baseline;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
}

.fee-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
}

.fee-amount {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 500;
    color: var(--color-accent);
}

.fee-note {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-cream);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

@media (min-width: 768px) {
    .contact-form-wrapper {
        padding: var(--space-3xl);
    }
}

.form-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: var(--space-xl);
    text-align: center;
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-row {
    display: grid;
    gap: var(--space-lg);
}

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

.form-group label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-md);
    background: var(--color-cream-dark);
    border: 1px solid rgba(26, 47, 35, 0.1);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    color: var(--color-text);
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231a2f23' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-md) center;
    padding-right: var(--space-3xl);
}

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

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.radio-label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    min-width: 120px;
    white-space: nowrap;
}

.radio-label input {
    display: none;
}

.radio-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-sage);
    transition: color var(--transition-base);
    flex-shrink: 0;
}

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

.radio-label input:checked~.radio-icon {
    color: var(--color-accent);
}

.radio-label input:checked~span:last-child {
    color: var(--color-primary);
    font-weight: 500;
}

.form-note {
    text-align: center;
    font-size: var(--text-xs);
    color: var(--color-text-light);
    margin-top: var(--space-lg);
}

/* Map Section */
.map-section {
    position: relative;
}

.map-container {
    position: relative;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) contrast(1.1);
    transition: filter var(--transition-slow);
}

.map-container:hover iframe {
    filter: grayscale(0%) contrast(1);
}

.map-overlay {
    position: absolute;
    bottom: var(--space-xl);
    left: var(--space-xl);
}

.map-card {
    background: var(--color-cream);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.map-card h4 {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
}

.map-card p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

/* Footer */
.footer {
    background: var(--color-primary-dark);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

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

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: var(--space-3xl);
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text-inverse);
    margin-bottom: var(--space-md);
}

.footer-logo .logo-icon {
    width: 36px;
    height: 36px;
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 500;
}

.footer-tagline {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition-base);
}

.social-link:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

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

.footer-links h4,
.footer-contact h4 {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-inverse);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-lg);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-base);
}

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

.footer-contact address {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.footer-contact a {
    transition: color var(--transition-base);
}

.footer-contact a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal a {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.4);
    transition: color var(--transition-base);
}

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

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    z-index: var(--z-sticky);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
}

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

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: #25D366;
    color: white;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.05);
}

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

@media (max-width: 640px) {
    .whatsapp-btn span {
        display: none;
    }

    .whatsapp-btn {
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .whatsapp-btn svg {
        width: 24px;
        height: 24px;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Print Styles */
@media print {

    .header,
    .floating-cta,
    .hero-scroll,
    .preloader,
    .cursor,
    .cursor-follower {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: black;
        background: white;
    }

    .section {
        padding: 2rem 0;
        page-break-inside: avoid;
    }
}