/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Colors - Forest Green Theme */
    --color-primary-darkest: #0f261d;
    --color-primary-dark: #1a3a2f;
    --color-primary: #1a5a3a;
    --color-primary-light: #2d8a5e;
    --color-primary-lighter: #4ade80;
    
    /* Accent Colors */
    --color-accent-orange: #ff6b35;
    --color-accent-yellow: #f4c430; /* Keeping as secondary accent */
    --color-accent-gold: #e6b800;
    --color-accent-lime: #9acd32;
    
    /* Neutral Colors */
    --color-white: #ffffff;
    --color-gray-100: #f8f9fa;
    --color-gray-200: #e9ecef;
    --color-gray-300: #dee2e6;
    --color-gray-400: #ced4da;
    --color-gray-500: #adb5bd;
    --color-gray-600: #6c757d;
    --color-gray-700: #495057;
    --color-gray-800: #343a40;
    --color-gray-900: #212529;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Font Sizes - Enhanced for Premium Look */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;
    --text-8xl: 5.5rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-28: 7rem;
    --space-32: 8rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(45, 138, 94, 0.3);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Z-index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-tooltip: 500;
}

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

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

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-gray-800);
    background-color: var(--color-white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===== UTILITIES ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

.section {
    padding: clamp(4rem, 8vw, 8rem) 0;
    position: relative;
}

.highlight {
    color: var(--color-primary-light);
}

.highlight-light {
    color: var(--color-accent-lime);
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

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

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    color: var(--color-white);
}

.loader-icon {
    font-size: 4rem;
    animation: bounce 1s ease infinite;
}

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

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-fixed);
    background: transparent;
    transition: background var(--transition-base), box-shadow var(--transition-base);
}

.header.scrolled {
    background: var(--color-primary-darkest);
    box-shadow: var(--shadow-lg);
}

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

.nav__logo {
    z-index: var(--z-fixed);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.logo__icon {
    width: 45px;
    height: 45px;
}

.logo__icon svg {
    width: 100%;
    height: 100%;
}

.logo__text {
    display: flex;
    flex-direction: column;
}

.logo__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: var(--text-lg);
    color: var(--color-white);
    line-height: 1.1;
}

.logo__tagline {
    font-size: var(--text-xs);
    color: var(--color-accent-lime);
    font-weight: 500;
}

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

.nav__list {
    display: flex;
    gap: var(--space-8);
}

.nav__link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: var(--space-2) 0;
}

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

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__close {
    display: none;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.nav__phone {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--color-accent-yellow);
    color: var(--color-white);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--text-sm);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.nav__phone:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: var(--space-2);
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-white);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--color-primary-darkest) 0%, var(--color-primary-dark) 50%, var(--color-primary) 100%);
    overflow: hidden;
    padding-top: 80px;
    transform-style: preserve-3d;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(154, 205, 50, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero__waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.wave--1 {
    animation: wave 20s linear infinite;
}

.wave--2 {
    animation: wave 15s linear infinite reverse;
}

.wave--3 {
    animation: wave 25s linear infinite;
}

@keyframes wave {
    0% { transform: translateX(0); }
    50% { transform: translateX(-25%); }
    100% { transform: translateX(0); }
}

.hero__content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    animation: fadeInUp 1s ease 0.1s both;
}

.hero__description {
    animation: fadeInUp 1s ease 0.4s both;
}

.hero__buttons {
    animation: fadeInUp 1s ease 0.6s both;
}

.hero__trust {
    animation: fadeInUp 1s ease 0.8s both;
}

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

.hero__discount {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-6);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.discount__badge {
    background: var(--color-accent-yellow);
    color: var(--color-white);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 700;
}

.discount__text {
    color: var(--color-white);
    font-size: var(--text-sm);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 900;
    color: var(--color-white);
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-6);
    text-shadow: 
        0 2px 10px rgba(0,0,0,0.3),
        0 0 40px rgba(154, 205, 50, 0.15);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero__title .highlight {
    color: var(--color-accent-lime);
}

.hero__description {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-8);
    max-width: 600px;
}

.hero__buttons {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-bottom: var(--space-10);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-lg);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn--primary {
    background: var(--color-accent-orange);
    color: var(--color-white);
    border-color: var(--color-accent-orange);
}

.btn--primary:hover {
    background: #e55a2b;
    border-color: #e55a2b;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.btn--primary:active {
    transform: translateY(-2px) scale(0.98);
}

.btn--secondary {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

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

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

.btn--outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn--large {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
}

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

.btn--full {
    width: 100%;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-6);
}

.trust__item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--text-sm);
}

.trust__icon {
    color: var(--color-accent-lime);
    font-weight: bold;
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: scrollBounce 2s ease infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.6);
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    transform: rotate(45deg);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== SECTION HEADER ===== */
.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-12);
}

.section__subtitle {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent-yellow);
    margin-bottom: var(--space-3);
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 800;
    color: var(--color-gray-900);
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.section__description {
    font-size: var(--text-lg);
    color: var(--color-gray-600);
}

.section__header--light .section__subtitle {
    color: var(--color-accent-lime);
}

.section__header--light .section__title {
    color: var(--color-white);
}

.section__header--light .section__description {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== ABOUT SECTION ===== */
.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.about__image-wrapper {
    position: relative;
}

.about__image-placeholder,
.about__video-container {
    aspect-ratio: 9/16; /* TikTok style vertical ratio preference, or 4/5 */
    max-width: 400px;
    margin: 0 auto;
    background: var(--color-gray-900);
    border-radius: var(--radius-2xl);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    transition: opacity 0.3s ease;
}

.about__video.loading {
    opacity: 0.5;
}

.about__video-container {
    cursor: pointer;
}

.about__video-container.playing .video-overlay {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.about__video-container.playing:hover .video-overlay {
    opacity: 0.3;
}

.video-overlay--interactive {
    pointer-events: auto;
    transition: opacity 0.3s ease;
}

.video-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: var(--color-white);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-lg);
    font-size: var(--text-sm);
    font-weight: 600;
    z-index: 10;
    animation: videoIndicatorPulse 0.5s ease;
}

@keyframes videoIndicatorPulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

@media (min-width: 768px) {
    .about__image-placeholder {
        aspect-ratio: 4/5; /* Slightly wider on desktop but still portrait-ish */
    }
}

.about__image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform var(--transition-slow);
}

.about__image-placeholder:hover .about__image-img {
    transform: scale(1.05);
    opacity: 0.6;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: var(--color-white);
    pointer-events: none; /* Let clicks pass through if needed */
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
    transition: all var(--transition-base);
}

.play-button svg {
    width: 40px;
    height: 40px;
    fill: var(--color-white);
    margin-left: 4px; /* Optical center adjustment */
}

.about__image-placeholder:hover .play-button {
    transform: scale(1.1);
    background: var(--color-accent-orange);
    border-color: var(--color-accent-orange);
}

.video-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--text-lg);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    margin-bottom: var(--space-1);
}

.video-subtext {
    font-size: var(--text-sm);
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.placeholder-content {
    text-align: center;
    color: var(--color-white);
}

.placeholder-icon {
    font-size: 5rem;
    display: block;
    margin-bottom: var(--space-4);
}

.placeholder-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--text-lg);
}

.about__badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--color-accent-yellow);
    color: var(--color-white);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.badge__number {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 800;
}

.badge__text {
    font-size: var(--text-sm);
    font-weight: 500;
}

.about__subtitle {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: var(--space-4);
}

.about__description {
    color: var(--color-gray-600);
    margin-bottom: var(--space-4);
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin: var(--space-8) 0;
}

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

.feature__icon {
    width: 50px;
    height: 50px;
    background: var(--color-gray-100);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    flex-shrink: 0;
}

.feature__content h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: var(--space-1);
}

.feature__content p {
    font-size: var(--text-sm);
    color: var(--color-gray-600);
}

/* ===== SERVICES SECTION ===== */
.services {
    background: var(--color-primary-darkest);
    overflow: hidden;
}

.services__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(45, 138, 94, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(154, 205, 50, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

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

.service-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px) rotateX(2deg);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.2),
        0 0 60px rgba(45, 138, 94, 0.3);
}

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

.service-card__icon {
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
}

.service-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-3);
}

.service-card__description {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    margin-bottom: var(--space-4);
    line-height: 1.7;
}

.service-card__link {
    color: var(--color-accent-lime);
    font-weight: 600;
    font-size: var(--text-sm);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    transition: gap var(--transition-fast);
}

.service-card__link:hover {
    gap: var(--space-3);
}

.services__cta {
    text-align: center;
    margin-top: var(--space-12);
    padding: var(--space-8);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    position: relative;
    z-index: 1;
}

.services__cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-4);
    font-size: var(--text-lg);
}

/* ===== GALLERY SECTION ===== */
.gallery {
    background: var(--color-gray-100);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 1.5rem;
}

.gallery__item {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    loading: lazy;
}

.gallery__item:hover .gallery__image {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.gallery__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-4);
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--color-white);
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

.gallery__item:hover .gallery__overlay {
    transform: translateY(0);
}

.gallery__item--large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery__item--wide {
    grid-column: span 2;
}

.gallery__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: transform var(--transition-base);
    cursor: pointer;
}

.gallery__placeholder--alt {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
}

.gallery__item:hover .gallery__placeholder {
    transform: scale(1.05);
}

.gallery__icon {
    font-size: 3rem;
    margin-bottom: var(--space-2);
}

.gallery__label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--text-lg);
}

.gallery__sublabel {
    font-size: var(--text-sm);
    opacity: 0.8;
}

.gallery__note {
    text-align: center;
    margin-top: var(--space-8);
    color: var(--color-gray-600);
}

.gallery__note p {
    margin-bottom: var(--space-4);
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--color-primary-dark);
    position: relative;
    overflow: hidden;
}

.contact__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 90%, rgba(244, 196, 48, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(154, 205, 50, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    position: relative;
    z-index: 1;
}

.contact__scheduler,
.contact__form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
}

.scheduler__header,
.form__header {
    margin-bottom: var(--space-6);
}

.scheduler__header h3,
.form__header h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-2);
}

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

.calendly-placeholder {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-12) var(--space-6);
    text-align: center;
}

.calendly-placeholder__content {
    color: var(--color-white);
}

.calendly-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: var(--space-4);
}

.calendly-placeholder h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: var(--space-2);
}

.calendly-placeholder p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-2);
}

.calendly-placeholder small {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--text-xs);
    margin-bottom: var(--space-4);
}

/* Contact Form */
.form__group {
    margin-bottom: var(--space-4);
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.form__label {
    display: block;
    color: var(--color-white);
    font-weight: 600;
    font-size: var(--text-sm);
    margin-bottom: var(--space-2);
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: var(--text-base);
    transition: border-color var(--transition-fast), background var(--transition-fast);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--color-accent-lime);
    background: rgba(255, 255, 255, 0.15);
}

.form__select {
    cursor: pointer;
}

.form__select option {
    background: var(--color-primary-dark);
    color: var(--color-white);
}

.form__textarea {
    resize: vertical;
    min-height: 100px;
}

/* Contact Info Cards */
.contact__info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-12);
    position: relative;
    z-index: 1;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    text-align: center;
    transition: transform var(--transition-fast);
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card__icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-3);
}

.info-card__title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-2);
}

.info-card__link {
    color: var(--color-accent-lime);
    font-weight: 600;
    font-size: var(--text-lg);
}

.info-card__link:hover {
    text-decoration: underline;
}

.info-card__text {
    color: var(--color-white);
    font-size: var(--text-lg);
    font-weight: 500;
}

.info-card__note {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
    margin-top: var(--space-1);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-primary-darkest);
    position: relative;
}

.footer__waves {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.footer__waves svg {
    width: 100%;
    height: auto;
}

.footer__content {
    padding: var(--space-16) 0 var(--space-8);
}

.footer__main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-8);
    padding-bottom: var(--space-8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand {
    max-width: 300px;
}

.logo--footer {
    margin-bottom: var(--space-4);
}

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

.footer__links h4,
.footer__services h4,
.footer__contact h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-4);
    font-size: var(--text-base);
}

.footer__links ul li,
.footer__services ul li,
.footer__contact ul li {
    margin-bottom: var(--space-2);
}

.footer__links a,
.footer__services a {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    transition: color var(--transition-fast);
}

.footer__links a:hover,
.footer__services a:hover {
    color: var(--color-accent-lime);
}

.footer__contact ul li {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
}

.footer__contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer__contact a:hover {
    color: var(--color-accent-lime);
}

.footer__bottom {
    padding-top: var(--space-6);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--text-sm);
}

.footer__credit {
    margin-top: var(--space-2);
    color: var(--color-accent-lime);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    width: 50px;
    height: 50px;
    background: var(--color-accent-yellow);
    color: var(--color-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: var(--z-fixed);
    box-shadow: var(--shadow-lg);
}

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

.back-to-top:hover {
    background: #d4a800;
    transform: translateY(-3px);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 992px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--color-primary-darkest);
        flex-direction: column;
        justify-content: center;
        transition: right var(--transition-base);
    }

    .nav__menu.show {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        text-align: center;
        gap: var(--space-6);
    }

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

    .nav__close {
        display: block;
        position: absolute;
        top: var(--space-6);
        right: var(--space-6);
        font-size: var(--text-3xl);
        color: var(--color-white);
        cursor: pointer;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__phone .phone-text {
        display: none;
    }

    .hero__title {
        font-size: var(--text-4xl);
    }

    .about__content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .about__badge {
        right: auto;
        left: var(--space-4);
    }

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

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

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

    .gallery__item--large,
    .gallery__item--wide {
        grid-column: span 2;
    }

    .footer__main {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-6);
    }

    .footer__brand {
        grid-column: span 2;
        max-width: none;
    }
}

/* Mobile */
@media (max-width: 576px) {
    :root {
        --text-5xl: 2.25rem;
        --text-4xl: 1.875rem;
        --text-3xl: 1.5rem;
    }

    .section {
        padding: var(--space-12) 0;
    }

    .hero {
        padding-top: 100px;
    }

    .hero__buttons {
        flex-direction: column;
    }

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

    .hero__trust {
        flex-direction: column;
        gap: var(--space-3);
    }

    .hero__scroll {
        display: none;
    }

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

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

    .gallery__item--large,
    .gallery__item--wide {
        grid-column: span 1;
    }

    .gallery__item {
        height: 200px;
    }

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

    .contact__scheduler,
    .contact__form-wrapper {
        padding: var(--space-6);
    }

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

    .footer__brand {
        grid-column: span 1;
    }
}

/* Animations for elements entering viewport */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Smooth scroll offset for fixed header */
html {
    scroll-padding-top: 100px;
}

/* Selection color */
::selection {
    background: var(--color-primary-light);
    color: var(--color-white);
}

/* Focus styles for accessibility */
:focus-visible {
    outline: 2px solid var(--color-accent-lime);
    outline-offset: 2px;
}

/* ===== PREMIUM ENHANCEMENTS ===== */

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox__content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: lightboxZoom 0.3s ease;
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox__close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox__prev,
.lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox__prev {
    left: 20px;
}

.lightbox__next {
    right: 20px;
}

.lightbox__prev:hover,
.lightbox__next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox__caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: var(--color-white);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 80%;
}

/* Enhanced Form Styles */
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--color-accent-lime);
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(154, 205, 50, 0.2);
}

.form__group {
    position: relative;
}

.form__label {
    transition: all 0.3s ease;
}

.form__input:focus + .form__label,
.form__input:not(:placeholder-shown) + .form__label,
.form__textarea:focus + .form__label,
.form__textarea:not(:placeholder-shown) + .form__label {
    transform: translateY(-24px) scale(0.9);
    color: var(--color-accent-lime);
}

/* Floating Labels Effect */
.form__input::placeholder,
.form__textarea::placeholder {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form__input:focus::placeholder,
.form__textarea:focus::placeholder {
    opacity: 0.5;
}

/* Success/Error States */
.form__input.success,
.form__textarea.success {
    border-color: var(--color-primary-lighter);
    background: rgba(74, 222, 128, 0.1);
}

.form__input.error,
.form__textarea.error {
    border-color: var(--color-accent-orange);
    background: rgba(255, 107, 53, 0.1);
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* Magnetic Button Effect */
.btn--magnetic {
    position: relative;
    overflow: hidden;
}

.btn--magnetic::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn--magnetic:hover::before {
    width: 300px;
    height: 300px;
}

/* Parallax Container */
.parallax-container {
    position: relative;
    overflow: hidden;
}

.parallax-element {
    will-change: transform;
}

/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--color-accent-lime);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

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

/* Enhanced Gallery Overlay */
.gallery__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-6);
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.5), transparent);
    color: var(--color-white);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.gallery__item:hover .gallery__overlay {
    transform: translateY(0);
}

.gallery__label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--text-lg);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.gallery__sublabel {
    font-size: var(--text-sm);
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Before/After Slider */
.before-after {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    cursor: col-resize;
}

.before-after__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.before-after__after {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    border-right: 3px solid var(--color-white);
}

.before-after__slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--color-white);
    transform: translateX(-50%);
    cursor: col-resize;
    z-index: 10;
}

.before-after__slider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--color-white);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.before-after__slider::after {
    content: '◀ ▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-primary);
    font-size: 12px;
    font-weight: bold;
}

/* Smooth Scroll Offset */
html {
    scroll-padding-top: 100px;
    scroll-behavior: smooth;
}

/* Enhanced Selection */
::selection {
    background: var(--color-primary-light);
    color: var(--color-white);
}

::-moz-selection {
    background: var(--color-primary-light);
    color: var(--color-white);
}

/* Image Lazy Loading */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Glassmorphism Enhancement */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--color-accent-lime), var(--color-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}
