/* ===================================
   iOS 26 Glass Design - Light Mode
   =================================== */
:root {
    --primary: #007AFF;
    --primary-dark: #0056CC;
    --primary-light: #5AC8FA;
    --secondary: #1C1C1E;
    --accent: #FF3B30;
    --success: #34C759;
    --warning: #FF9500;
    --background: #000000;
    --background-elevated: rgba(28, 28, 30, 0.8);
    --background-glass: rgba(28, 28, 30, 0.6);
    --background-glass-dark: rgba(0, 0, 0, 0.4);
    --text: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-tertiary: rgba(255, 255, 255, 0.6);
    --border: rgba(255, 255, 255, 0.1);
    --border-glass: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.5);
    --blur: blur(20px);
    --blur-heavy: blur(12px);
    --radius: 20px;
    --radius-lg: 28px;
    --radius-full: 100px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    -webkit-overflow-scrolling: touch;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: #000000;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(0, 122, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(90, 200, 250, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 80%, rgba(0, 122, 255, 0.1) 0%, transparent 50%);
    
    color: #FFFFFF;
    line-height: 1.5;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "kern" 1;
    text-rendering: optimizeLegibility;
}

/* Mobile optimization: disable expensive background-attachment: fixed */
@media (max-width: 768px) and (prefers-reduced-motion: no-preference) {
    body {
        background-attachment: scroll;
    }
}

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

ul {
    list-style: none;
}

img,
video,
iframe,
svg {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   Header - Glass Dark Style
   =================================== */
.header {
    position: fixed;
    top: 12px;
    left: 12px;
    right: 12px;
    z-index: 100;
    padding: 14px 24px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

/* Header pentru paginile secundare - logo centrat, bara exact cât logo-ul */
.header-secondary {
    position: fixed !important;
    top: 12px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: fit-content !important;
    min-width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 10px 12px !important;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.header-secondary .container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: auto !important;
    padding: 0 !important;
    margin: 0 !important;
}

.header-secondary .logo {
    margin: 0 !important;
    padding: 0 !important;
}

.header-secondary .logo-img {
    margin: 0 !important;
    display: block !important;
}

.logo-centered {
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.logo-centered .logo-text {
    display: none !important;
}

/* Header pentru paginile secundare - logo centrat, bara exact cât logo-ul */
.header-secondary {
    position: fixed !important;
    top: 12px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: fit-content !important;
    min-width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 10px 12px !important;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.header-secondary .container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: auto !important;
    padding: 0 !important;
    margin: 0 !important;
}

.header-secondary .logo {
    margin: 0 !important;
    padding: 0 !important;
}

.header-secondary .logo-img {
    margin: 0 !important;
    display: block !important;
}

.logo-centered {
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.logo-centered .logo-text {
    display: none !important;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header.scrolled .logo {
    color: #1C1C1E;
}

.header.scrolled .logo-img {
    filter: none;
}

/* Header-secondary scrolled - păstrează poziționarea centrată */
.header-secondary.scrolled {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: fit-content !important;
}

.header.scrolled .nav-link {
    color: rgba(28, 28, 30, 0.8);
    background: rgba(28, 28, 30, 0.1);
    border-color: rgba(28, 28, 30, 0.15);
}

.header.scrolled .nav-link:hover {
    color: #1C1C1E;
    background: rgba(28, 28, 30, 0.15);
    border-color: rgba(28, 28, 30, 0.25);
}

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


/* ===================================
   Breadcrumbs
   =================================== */
.breadcrumbs {
    position: relative;
    padding: 12px 0;
    background: transparent;
    margin-top: 90px;
    z-index: 10;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-item:not(:last-child)::after {
    content: "›";
    margin-left: 8px;
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-light);
}

.breadcrumb-item:last-child {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    transition: color 0.4s ease;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.4s ease;
}

.logo-text {
    display: none;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .logo-text {
        display: inline;
    }
}

/* Header Navigation Menu */
.header-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    /* backdrop-filter: blur(20px); */
    -webkit-/* backdrop-filter: blur(20px); */
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition-spring);
    white-space: nowrap;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ===================================
   Hero Section with Slider
   =================================== */
.hero {
    position: relative;
    min-height: 85vh;
    padding: 140px 0 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    clip-path: inset(0);
}

.hero .container {
    overflow: visible;
    position: relative;
    z-index: 2;
}

/* Mobile: optimize hero for smaller screens */
@media (max-width: 768px) {
    .hero {
        min-height: 75vh;
        padding: 160px 0 80px;
        overflow-x: hidden;
        overflow-y: visible;
    }

    .hero-slider {
        overflow: hidden;
    }

    .hero-slider .slide {
        background-size: cover;
        background-position: center center;
        will-change: transform;
    }

    .hero .container {
        overflow: visible;
    }

    .hero-badge {
        z-index: 101;
        margin-top: 0;
        overflow: visible;
        padding-top: 30px;
        margin-top: -30px;
        margin-bottom: 1.5rem;
    }

    .beacon-light {
        overflow: visible;
    }
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slider .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    opacity: 0;
    
}

.hero-slider .slide.active {
    opacity: 1;
}

/* LCP Optimization: Slide 1 folosește <img> nativ cu fetchpriority=high (vezi index.html .slide-first) */
.slide-lcp-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    image-rendering: -webkit-optimize-contrast;
}

@media (max-width: 768px) {
    .slide-lcp-img {
        object-position: center center;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* WCAG AA: overlay mai puternic pentru contrast text alb */
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.42) 0%,
            rgba(0, 0, 0, 0.62) 40%,
            rgba(0, 0, 0, 0.88) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
    overflow: visible;
}

.hero h1 {
    font-size: clamp(2.5rem, 7vw, 4rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
    letter-spacing: -0.02em;
    /* WCAG AA: text-shadow puternic pentru contrast garantat pe orice fundal */
    text-shadow: 0 1px 3px rgba(0,0,0,0.95), 0 4px 24px rgba(0,0,0,0.75);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: #FFFFFF;
    font-weight: 500;
    margin-bottom: 2rem;
    /* WCAG AA: contrast îmbunătățit */
    text-shadow: 0 1px 3px rgba(0,0,0,0.95), 0 3px 16px rgba(0,0,0,0.65);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.95);
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

/* Hero Badge - Urgență cu Girofar */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(28, 28, 30, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 101;
    overflow: visible;
    isolation: isolate;
}

/* ===================================
   Beacon Light - OPTIMIZED (GPU accelerated)
   =================================== */
.beacon-light {
    position: relative;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #FF6B00;
    /* Static glow - simplified for performance */
    box-shadow: 0 0 12px rgba(255, 107, 0, 0.7);
    /* GPU acceleration */
    transform: translateZ(0);
    will-change: transform;
    
    z-index: 10;
    contain: layout style paint;
}



/* Optimized pulse animation - uses transform (GPU) only */
@keyframes beacon-pulse {

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

    50% {
        transform: translateZ(0) scale(1.15);
    }
}

/* Mobile: Simpler animation to prevent stuttering */
@media (max-width: 768px) {
    .beacon-light {
        box-shadow: 0 0 8px rgba(255, 107, 0, 0.6);
        
    }

    

    @keyframes beacon-pulse-mobile {

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

        50% {
            transform: translateZ(0) scale(1.1);
            opacity: 0.85;
        }
    }
}

/* Respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {
    .beacon-light {
        animation: none;
    }
}

.beacon-text {
    position: relative;
    z-index: 1;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.hero-pricing-badge {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.pricing-badge-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.25), rgba(255, 107, 0, 0.25));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 149, 0, 0.4);
    border-radius: 50px;
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 20px rgba(255, 149, 0, 0.2);
    transition: all 0.3s ease;
}

.pricing-badge-text:hover {
    
    box-shadow: 0 6px 25px rgba(255, 149, 0, 0.3);
    border-color: rgba(255, 149, 0, 0.6);
}

.hero-cta-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 40px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: visible;
    min-width: 200px;
    justify-content: flex-start;
    white-space: nowrap;
}

.hero-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

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

.hero-cta-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.hero-cta-label {
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.hero-cta-number {
    font-size: 0.9375rem;
    font-weight: 600;
    opacity: 0.95;
    line-height: 1.2;
    white-space: nowrap;
}


/* Puls effect pentru butoane CTA - exact ca la floating buttons */
.hero-cta-phone .pulse {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: #007AFF;
    
    z-index: -1;
}

.hero-cta-whatsapp .pulse {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: #25D366;
    
    z-index: -1;
}


.hero-cta-phone {
    background: #007AFF;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-cta-phone:hover {
    
    box-shadow: 0 12px 40px rgba(0, 122, 255, 0.5);
    background: #0056CC;
}


.hero-cta-whatsapp {
    background: #25D366;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-cta-whatsapp:hover {
    
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
    background: #20BA5A;
}

/* Hero Trust Badges */
.hero-trust {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.3s ease;
}

.trust-badge-rating {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    gap: 8px;
    padding: 8px 18px;
}

.trust-badge-rating:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.google-icon-small {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.rating-stars-inline {
    font-size: 0.875rem;
    line-height: 1;
    letter-spacing: 1px;
}

.rating-text-inline {
    font-size: 0.875rem;
    font-weight: 700;
    color: #FFC107;
    white-space: nowrap;
}

/* Slider Controls */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-spring);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.slider-dots .dot.active,
.slider-dots .dot:hover {
    background: white;
    transform: scale(1.3);
    box-shadow: 0 2px 12px rgba(255, 255, 255, 0.5);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255, 255, 255, 0.15);
    /* backdrop-filter: blur(20px); */
    -webkit-/* backdrop-filter: blur(20px); */
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-spring);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

/* ===================================
   Features Section - iOS 26 Liquid Glass
   =================================== */
.features-section {
    padding: 80px 0;
    background: transparent;
}

.features-section .section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 48px;
    color: var(--text);
}

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

.feature-card {
    background: rgba(28, 28, 30, 0.6);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 28px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* Liquid Glass refraction effect */
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.6) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0.6) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.6;
    z-index: -1;
    
}

/* Light refraction lines */
.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 70%);
    transform: rotate(45deg) translateX(-100%);
    
    pointer-events: none;
}

/* Shine effect on hover */
.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 40%,
            rgba(255, 255, 255, 0.4) 50%,
            transparent 60%);
    transform: translateX(-100%);
    
}









.feature-card:hover .feature-icon {
    transform: scale(1.15) translateY(-4px);
    filter: drop-shadow(0 8px 16px rgba(0, 122, 255, 0.25));
}

.feature-icon {
    font-size: 2.75rem;
    margin-bottom: 16px;
    display: block;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
}

.feature-icon svg {
    width: 2.75rem;
    height: 2.75rem;
    color: #007AFF;
    stroke: #007AFF;
}

.feature-card h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
}

.feature-card:hover h3 {
    color: #FFFFFF;
}

.feature-card p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Active/Pressed state */
.feature-card:active {
    
    transition: all 0.1s ease;
}

/* ===================================
   Services Info Section - Liquid Glass
   =================================== */
.services-info {
    padding: 80px 0;
    background: transparent;
}

.services-info-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.services-info-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.15);
}


.services-info-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    
}

.services-info-image:hover img {
    transform: scale(1.05);
}

.services-info-content {
    background: rgba(28, 28, 30, 0.6);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

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

.services-info-content:hover::before {
    left: 100%;
}

.services-info-title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 4px 0;
    position: relative;
    z-index: 1;
}

.services-info-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin: 0;
    position: relative;
    z-index: 1;
}

.services-info-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.services-info-text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.services-info-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
    position: relative;
    z-index: 1;
}

.services-info-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--primary);
    color: #FFFFFF;
    padding: 16px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.125rem;
    transition: var(--transition-spring);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.4);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-info-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transform: translateX(-100%);
    
}

.services-info-btn:hover::before {
    transform: translateX(100%);
}

.services-info-btn:hover {
    background: var(--primary-dark);
    
    box-shadow: 0 8px 30px rgba(0, 122, 255, 0.5);
}

.services-info-btn .phone-icon {
    font-size: 1.25rem;
    position: relative;
    z-index: 1;
}

.services-info-availability {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    font-weight: 500;
}

/* ===================================
   Packages Section - Glass Cards
   =================================== */
.packages {
    padding: 80px 0;
    background: transparent;
}

.packages h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.packages-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto 3rem;
    font-size: 1rem;
}

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

.package-card {
    background: rgba(28, 28, 30, 0.6);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    position: relative;
    transition: var(--transition-spring);
    box-shadow: var(--shadow);
}

.package-card:hover {
    
    box-shadow: var(--shadow-lg);
}

.package-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
}

.package-card.featured h3,
.package-card.featured .package-features li {
    color: white;
}

.package-card.featured .package-features li {
    border-color: rgba(255, 255, 255, 0.2);
}

.package-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

.package-card.featured .package-badge {
    background: white;
    color: #764ba2;
}

.package-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.package-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #FFFFFF;
    letter-spacing: -0.01em;
}

.package-features {
    margin-bottom: 24px;
}

.package-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: white;
    text-align: center;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--transition-spring);
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.25);
}

.package-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 122, 255, 0.35);
}

.package-card.featured .package-btn {
    background: white;
    color: #764ba2;
}

/* ===================================
   Gallery Section
   =================================== */
.gallery {
    padding: 80px 0;
    background: transparent;
}

.gallery h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.gallery-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2.5rem;
}

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

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item {
    cursor: pointer;
}

/* ===================================
   Gallery Lightbox
   =================================== */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    /* backdrop-filter: blur(20px); */
    -webkit-/* backdrop-filter: blur(20px); */
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    
}

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

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
    color: #FFFFFF;
    font-size: 1rem;
    text-align: center;
    padding: 12px 24px;
    background: rgba(28, 28, 30, 0.8);
    /* backdrop-filter: blur(20px); */
    -webkit-/* backdrop-filter: blur(20px); */
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(28, 28, 30, 0.8);
    /* backdrop-filter: blur(20px); */
    -webkit-/* backdrop-filter: blur(20px); */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(28, 28, 30, 0.8);
    /* backdrop-filter: blur(20px); */
    -webkit-/* backdrop-filter: blur(20px); */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3001;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {

    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        top: 10px;
        right: 10px;
    }

    .lightbox-content img {
        max-height: 80vh;
    }
}

/* ===================================
   Reviews Section
   =================================== */
.reviews {
    padding: 80px 0;
    background: transparent;
}

.reviews h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.reviews-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 3rem;
}

.review-card {
    background: rgba(28, 28, 30, 0.6);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.review-card:hover::before {
    left: 100%;
}

.review-card:hover {
    
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.review-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.review-stars {
    display: flex;
    gap: 6px;
    align-items: center;
}

.review-stars .google-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.review-stars .star-icon {
    width: 18px;
    height: 18px;
    color: #FFC107;
    fill: #FFC107;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.review-author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-author strong {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1rem;
}

.review-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.review-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 0.9375rem;
    margin: 0;
}

.reviews-footer {
    text-align: center;
    margin-top: 3rem;
}

.btn-google-reviews {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(28, 28, 30, 0.6);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 14px 28px;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-google-reviews:hover {
    
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    background: rgba(28, 28, 30, 0.8);
}

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

/* ===================================
   Stats Section
   =================================== */
.stats {
    padding: 60px 0;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* ===================================
   FAQ Section
   =================================== */
.faq-section {
    padding: 80px 0;
    background: transparent;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.faq-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3rem;
    font-size: 1rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(28, 28, 30, 0.6);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition-spring);
    cursor: pointer;
}

.faq-item:hover {
    background: rgba(28, 28, 30, 0.7);
    border-color: rgba(255, 255, 255, 0.25);
    
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
    flex: 1;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-light);
    
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}

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

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
    font-size: 0.9375rem;
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    padding: 80px 0;
    background: transparent;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.contact-info>p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(28, 28, 30, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-item strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.contact-item a,
.contact-item span {
    font-size: 1rem;
    font-weight: 500;
    color: #FFFFFF;
}

.contact-item a:hover {
    color: var(--primary);
}

.badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(0, 122, 255, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
}

/* Contact Form */
.contact-process {
    background: rgba(28, 28, 30, 0.6);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
}

.contact-process h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 24px;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.process-step:hover {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
}

.process-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
}

.process-content {
    flex: 1;
}

.process-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.process-content p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.process-content strong {
    color: var(--primary-light);
    font-weight: 600;
}

@media (max-width: 768px) {
    .contact-process {
        padding: 24px;
    }

    .contact-process h3 {
        font-size: 1.25rem;
    }

    .process-step {
        padding: 16px;
    }

    .process-number {
        width: 36px;
        height: 36px;
        font-size: 1.125rem;
    }

    .process-content h4 {
        font-size: 1rem;
    }

    .process-content p {
        font-size: 0.875rem;
    }
}

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

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    color: #FFFFFF;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.1);
}

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

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-group.checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--primary);
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-size: 0.8125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
}

.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: #0056CC;
    color: #FFFFFF;
    border: none;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-spring);
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
}

/* Ensure sufficient contrast for accessibility */
.submit-btn:focus-visible {
    outline: 3px solid #FFFFFF;
    outline-offset: 2px;
}

.submit-btn:hover {
    transform: scale(1.02);
    background: #007AFF;
    box-shadow: 0 6px 20px rgba(0, 122, 255, 0.4);
}

/* ===================================
   CTA Banner
   =================================== */
.cta-banner {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    z-index: 0;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: rgba(28, 28, 30, 0.6);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
}

.cta-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #007AFF;
    color: #FFFFFF;
    padding: 14px 20px;
    border-radius: 16px;
    font-weight: 600;
    transition: var(--transition-spring);
    box-shadow: 0 8px 30px rgba(0, 122, 255, 0.4);
    flex-shrink: 0;
    position: relative;
    overflow: visible;
    border: none;
}

.cta-btn:hover {
    
    box-shadow: 0 12px 40px rgba(0, 122, 255, 0.5);
}

.cta-btn svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.cta-btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.cta-btn-text {
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.2;
}

.cta-btn-number {
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0.95;
    letter-spacing: 0.3px;
    line-height: 1;
}

.cta-btn-phone .pulse {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: #007AFF;
    
    z-index: -1;
}

/* ===================================
   Footer
   =================================== */
.footer {
    padding: 32px 0;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.footer-brand {
    display: none;
}

.footer-logo {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
    max-width: 100%;
}

.footer-links {
    display: flex;
    gap: 24px;
}

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

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

.footer-copy {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===================================
   Floating Buttons
   =================================== */
.floating-btn {
    position: fixed;
    bottom: 24px;
    padding: 14px 20px;
    color: #FFFFFF;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* backdrop-filter: blur(20px); */
    -webkit-/* backdrop-filter: blur(20px); */
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 700;
    font-size: 0.9375rem;
    width: 180px;
    min-width: 180px;
    max-width: 180px;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    box-shadow: var(--shadow-lg);
}

.floating-btn.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Ensure sufficient contrast for accessibility */
.floating-btn:focus-visible {
    outline: 3px solid #FFFFFF;
    outline-offset: 2px;
}

.floating-btn svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: block;
}

.floating-btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.floating-btn-text {
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.2;
}

.floating-btn-label {
    font-size: 0.6875rem;
    font-weight: 600;
    opacity: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1;
    color: #FFFFFF;
}

.floating-btn-phone {
    left: 24px;
    background: #007AFF;
    box-shadow: 0 8px 30px rgba(0, 122, 255, 0.4);
}

.floating-btn-phone:hover {
    
    box-shadow: 0 12px 40px rgba(0, 122, 255, 0.5);
}

.floating-btn-phone .pulse {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: #007AFF;
    
    z-index: -1;
}

.floating-btn-whatsapp {
    right: 24px;
    background: #25D366;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

/* Ensure sufficient contrast for WhatsApp button text */
.floating-btn-whatsapp {
    color: #FFFFFF;
}

.floating-btn-whatsapp:hover {
    
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.floating-btn-whatsapp .pulse {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: #25D366;
    
    z-index: -1;
}

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

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ===================================
   Modal
   =================================== */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 24px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: rgba(28, 28, 30, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    max-width: 380px;
    box-shadow: var(--shadow-lg);
    animation: modalIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

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

/* ===================================
   Privacy Notice Modal (AdGuard bypass)
   =================================== */
.privacy-notice {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: none !important;
}

.privacy-notice.show {
    opacity: 1;
    pointer-events: auto;
    transition: none !important;
}

.privacy-notice-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: none !important;
}

.privacy-notice-content {
    position: relative;
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: 32px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: none !important;
}

.privacy-notice-text h3 {
    color: #1C1C1E;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.notice-title-symbol {
    color: #FF9500;
    font-weight: 400;
}

.notice-title-text {
    font-weight: 700;
    color: #1C1C1E;
}

.privacy-notice-text p {
    color: #666666;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.privacy-notice-text a {
    color: var(--primary-light);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.privacy-notice-text a:hover {
    color: var(--primary);
}

.privacy-notice-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.notice-btn {
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 180px;
}

.notice-btn-necessary {
    background: #1C1C1E;
    color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.notice-btn-necessary:hover {
    background: #2C2C2E;
    
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.notice-btn-necessary:active {
    transform: translateY(0);
}

.notice-btn-accept {
    background: var(--success);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(52, 199, 89, 0.3);
}

.notice-btn-accept:hover {
    background: #2AB759;
    
    box-shadow: 0 6px 20px rgba(52, 199, 89, 0.4);
}

.notice-btn-accept:active {
    transform: translateY(0);
}

.privacy-notice-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.privacy-notice-links a {
    color: #666666;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-notice-links a:hover {
    color: #1C1C1E;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .privacy-notice-content {
        padding: 24px;
        max-width: 90%;
    }

    .privacy-notice-text h3 {
        font-size: 1.25rem;
    }

    .privacy-notice-text p {
        font-size: 0.875rem;
    }

    .notice-btn {
        width: 100%;
        min-width: auto;
    }
}

.modal-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--success) 0%, #30D158 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 20px;
}

.modal-content h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.modal-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.modal-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 48px;
    border-radius: var(--radius-full);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-spring);
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
}

.modal-btn:hover {
    transform: scale(1.05);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .services-info-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-info-image {
        order: 1;
    }

    .services-info-content {
        order: 2;
    }
}

@media (max-width: 768px) {
    .breadcrumbs {
        margin-top: 70px;
        padding: 8px 0;
    }

    .breadcrumb-list {
        font-size: 0.8125rem;
    }

    .header {
        top: 8px;
        left: 8px;
        right: 8px;
        padding: 10px 16px;
    }

    .header-secondary {
        position: fixed !important;
        top: 8px !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: fit-content !important;
        min-width: auto !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 8px 10px !important;
    }

    .header-secondary .container {
        padding: 0 !important;
        margin: 0 !important;
        width: auto !important;
        justify-content: center !important;
    }

    .header-secondary .logo {
        margin: 0 !important;
        padding: 0 !important;
    }

    .logo-img {
        height: 32px !important;
        max-width: 90px !important;
    }

    .header-nav {
        gap: 6px;
    }

    .nav-link {
        padding: 8px 16px;
        font-size: 0.875rem;
    }

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

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

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

    .cta-banner {
        padding: 40px 0;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
    }

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

    .cta-btn-text {
        font-size: 0.875rem;
    }

    .cta-btn-number {
        font-size: 0.8125rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .slider-btn.prev {
        left: 6px;
    }

    .slider-btn.next {
        right: 6px;
    }

    .floating-btn {
        width: 165px;
        min-width: 165px;
        max-width: 165px;
        padding: 12px 14px;
        font-size: 0.875rem;
    }

    .floating-btn-label {
        font-size: 0.625rem;
        white-space: nowrap;
    }

    .floating-btn-phone {
        bottom: 16px;
        left: 16px;
    }

    .floating-btn-whatsapp {
        bottom: 16px;
        right: 16px;
    }

    .floating-btn svg {
        width: 22px;
        height: 22px;
    }

    /* Hero CTA Mobile */
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
        margin-bottom: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 20px;
        padding: 0 60px;
        /* Spațiu pentru butoanele slider (48px + 6px margin) */
    }

    .hero-cta-btn {
        min-width: auto;
        width: 100%;
        max-width: 100%;
        padding: 14px 18px;
        font-size: 1.0625rem;
        justify-content: flex-start;
        gap: 12px;
    }

    .hero-cta-icon {
        width: 40px;
        height: 40px;
    }

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

    .hero-cta-label {
        font-size: 1.0625rem;
    }

    .hero-cta-number {
        font-size: 0.9375rem;
    }

    .hero-cta-phone {
        order: -1;
        margin-top: -12px;
    }

    .hero-trust {
        gap: 8px;
    }

    .trust-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .trust-badge-rating {
        padding: 6px 14px;
        gap: 6px;
    }

    .google-icon-small {
        width: 14px;
        height: 14px;
    }

    .rating-stars-inline {
        font-size: 0.75rem;
    }

    .rating-text-inline {
        font-size: 0.6875rem;
        white-space: nowrap;
    }

    .trust-badge-rating {
        flex-wrap: nowrap;
    }
}

/* ===================================
   Privacy Page
   =================================== */
.privacy-page {
    padding: 140px 0 80px;
    background: transparent;
    min-height: 100vh;
}

.privacy-content {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(28, 28, 30, 0.6);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 28px;
    padding: 48px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.privacy-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.privacy-intro {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.privacy-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.privacy-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-section ol,
.privacy-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.privacy-section li {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.contact-info-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    margin-top: 1rem;
}

.contact-info-box p {
    margin-bottom: 0.5rem;
}

.contact-info-box a {
    color: var(--primary-light);
    transition: color 0.3s ease;
}

.contact-info-box a:hover {
    color: var(--primary);
}

.privacy-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: var(--transition);
}

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

@media (max-width: 768px) {
    .privacy-content {
        padding: 32px 24px;
    }

    .privacy-content h1 {
        font-size: 2rem;
    }

    .privacy-section h2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {

    html,
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        position: relative;
    }

    /* Mobile: disable expensive background-attachment */
    body {
        background-attachment: scroll !important;
    }

    .container {
        padding: 0 16px;
        max-width: 100%;
        overflow-x: hidden;
    }

    * {
        max-width: 100%;
    }

    img,
    video,
    iframe,
    svg {
        max-width: 100% !important;
        height: auto !important;
    }

    .hero {
        min-height: 75vh;
        padding: 120px 0 80px;
        overflow-x: hidden;
    }

    /* Mobile: reduce blur effects for performance (only on very small screens) */
    .header {
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
    }

    .logo-img {
        height: 30px !important;
        max-width: 80px !important;
    }

    .header-secondary {
        position: fixed !important;
        top: 8px !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: fit-content !important;
        padding: 6px 8px !important;
        margin: 0 !important;
    }

    .header-secondary .container {
        padding: 0 !important;
        margin: 0 !important;
        justify-content: center !important;
    }

    .header-secondary .logo {
        margin: 0 !important;
        padding: 0 !important;
    }

    .services-info-content,
    .services-info-image,
    .feature-card,
    .review-card,
    .contact-form,
    .privacy-content {
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
    }

    .hero h1 {
        font-size: clamp(1.875rem, 6.25vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: clamp(1.1rem, 2.5vw, 1.4rem);
        margin-bottom: 1.5rem;
    }

    .hero-description {
        display: none;
        /* Ascunde pe mobil pentru a nu fi prea aglomerat */
    }

    .hero-badge {
        margin-bottom: 1rem;
        font-size: 0.75rem;
        padding: 6px 16px;
    }

    .hero-cta {
        margin-top: 1.5rem;
    }

    .hero-trust {
        margin-top: 1rem;
    }


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

    .gallery-item {
        min-height: 250px;
        aspect-ratio: 16/9;
    }

    .gallery h2 {
        font-size: 1.75rem;
    }

    .gallery-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 2rem;
    }

    .services-info-wrapper {
        gap: 32px;
    }

    .services-info-title {
        font-size: 1.5rem;
    }

    .services-info-text p {
        font-size: 1rem;
    }

    .services-info-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .reviews h2 {
        font-size: 1.75rem;
    }

    .review-card {
        padding: 20px;
    }

    .btn-google-reviews {
        padding: 12px 24px;
        font-size: 0.9375rem;
    }

    .feature-card,
    .package-card {
        padding: 24px 20px;
    }

    .contact-form {
        padding: 24px 20px;
    }

    .badges {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
        gap: 8px;
    }

    .footer-brand {
        display: none;
    }

    .privacy-content {
        padding: 24px 20px;
    }
}