/* =============================================
   ECNAILTOUCH — Main Stylesheet
   Premium Nail Art & Beauty Studio
   
   Design: Feminen, Lüks, Soft Luxury, Minimal
   Palette: Soft Pink + White + Muted Rose
   ============================================= */

/* =============================================
   CSS Custom Properties
   ============================================= */
:root {
    /* Brand Colors */
    --ec-primary: #F5D6E6;
    --ec-primary-rgb: 245, 214, 230;
    --ec-secondary: #FFFFFF;
    --ec-accent: #C9A6B5;
    --ec-accent-rgb: 201, 166, 181;
    --ec-dark: #2B2B2B;
    --ec-dark-rgb: 43, 43, 43;
    --ec-highlight: #E8D7DF;
    
    /* Extended Palette */
    --ec-primary-light: #FDF0F5;
    --ec-primary-dark: #D4A5BE;
    --ec-accent-light: #E0CDD5;
    --ec-accent-dark: #A88495;
    --ec-cream: #FFF9FB;
    --ec-blush: #F9E8EF;
    --ec-rose-gold: #B76E79;
    --ec-soft-gray: #F8F6F7;
    --ec-medium-gray: #9B9B9B;
    --ec-light-gray: #EDEDED;
    
    /* Typography */
    --ff-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --ff-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --fs-display: clamp(2.5rem, 5vw, 4.5rem);
    --fs-h1: clamp(2rem, 4vw, 3.5rem);
    --fs-h2: clamp(1.75rem, 3.5vw, 2.75rem);
    --fs-h3: clamp(1.25rem, 2vw, 1.75rem);
    --fs-h4: clamp(1.1rem, 1.5vw, 1.35rem);
    --fs-body: clamp(0.9rem, 1vw, 1rem);
    --fs-small: clamp(0.8rem, 0.9vw, 0.875rem);
    --fs-xs: 0.75rem;
    
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    
    /* Spacing */
    --section-py: clamp(60px, 8vw, 120px);
    --section-py-sm: clamp(40px, 5vw, 80px);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(var(--ec-dark-rgb), 0.04);
    --shadow-md: 0 4px 20px rgba(var(--ec-dark-rgb), 0.06);
    --shadow-lg: 0 8px 40px rgba(var(--ec-dark-rgb), 0.08);
    --shadow-xl: 0 16px 60px rgba(var(--ec-dark-rgb), 0.1);
    --shadow-pink: 0 8px 30px rgba(var(--ec-primary-rgb), 0.3);
    --shadow-accent: 0 8px 30px rgba(var(--ec-accent-rgb), 0.2);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Navbar */
    --navbar-height: 80px;
    --navbar-height-scrolled: 65px;
    
    /* Z-index System */
    --z-loading: 10000;
    --z-transition: 9999;
    --z-navbar: 1000;
    --z-floating: 999;
    --z-cookie: 998;
    --z-overlay: 500;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--ff-body);
    font-weight: var(--fw-regular);
    font-size: var(--fs-body);
    color: var(--ec-dark);
    background-color: var(--ec-secondary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Fix for Lenis */
html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

/* Selection */
::selection {
    background: var(--ec-primary);
    color: var(--ec-dark);
}

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

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--ec-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--ec-accent-light);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--ec-accent);
}

/* Links */
a {
    color: var(--ec-accent-dark);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--ec-rose-gold);
}

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

/* =============================================
   Typography
   ============================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--ff-heading);
    font-weight: var(--fw-semibold);
    line-height: 1.3;
    color: var(--ec-dark);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p {
    margin-bottom: 1rem;
    color: #555;
}

/* =============================================
   Loading Screen
   ============================================= */
.loading-screen {
    position: fixed;
    inset: 0;
    background: var(--ec-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-loading);
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    font-family: var(--ff-heading);
    font-size: 2.5rem;
    font-weight: var(--fw-bold);
    color: var(--ec-dark);
    letter-spacing: 4px;
    margin-bottom: 2rem;
}

.loading-spinner {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.spinner-ring {
    width: 40px;
    height: 40px;
    border: 3px solid var(--ec-primary);
    border-top-color: var(--ec-accent);
    border-radius: 50%;
    animation: spinnerRotate 1s linear infinite;
}

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

.loading-text {
    font-family: var(--ff-body);
    font-size: var(--fs-small);
    color: var(--ec-medium-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* =============================================
   Page Transition
   ============================================= */
.page-transition {
    position: fixed;
    inset: 0;
    background: var(--ec-primary);
    z-index: var(--z-transition);
    transform: translateY(100%);
    pointer-events: none;
}

/* =============================================
   Navbar
   ============================================= */
.ec-navbar {
    padding: 0;
    height: var(--navbar-height);
    background: transparent;
    transition: all var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.ec-navbar.scrolled {
    height: var(--navbar-height-scrolled);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(var(--ec-accent-rgb), 0.1);
    box-shadow: var(--shadow-sm);
}

.ec-navbar .container {
    height: 100%;
    display: flex;
    align-items: center;
}

/* Logo */
.ec-logo {
    padding: 0;
    display: flex;
    align-items: center;
}

.ec-logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-base);
}

.ec-navbar.scrolled .ec-logo-img {
    height: 38px;
}

/* Nav Links */
.ec-nav-links {
    gap: 0.25rem;
}

.ec-nav-links .nav-link {
    font-family: var(--ff-body);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    color: var(--ec-dark);
    letter-spacing: 0.5px;
    padding: 0.5rem 1.1rem !important;
    position: relative;
    transition: var(--transition-base);
}

.ec-nav-links .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--ec-accent);
    transition: var(--transition-base);
    border-radius: var(--radius-full);
}

.ec-nav-links .nav-link:hover,
.ec-nav-links .nav-link.active {
    color: var(--ec-rose-gold);
}

.ec-nav-links .nav-link:hover::after,
.ec-nav-links .nav-link.active::after {
    width: 60%;
}

/* Hero page — white text navbar */
.ec-navbar:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.ec-navbar:not(.scrolled) .nav-link:hover,
.ec-navbar:not(.scrolled) .nav-link.active {
    color: #fff;
}

.ec-navbar:not(.scrolled) .nav-link::after {
    background: #fff;
}

/* Nav CTA Button */
.ec-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: var(--ec-accent);
    color: #fff !important;
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    border-radius: var(--radius-full);
    margin-left: 1rem;
    transition: var(--transition-base);
    letter-spacing: 0.3px;
}

.ec-nav-cta:hover {
    background: var(--ec-rose-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

/* Mobile Toggler */
.ec-toggler {
    border: none;
    padding: 0.5rem;
    background: none;
    position: relative;
    width: 32px;
    height: 24px;
}

.ec-toggler:focus {
    box-shadow: none;
}

.ec-toggler-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.ec-toggler-icon span {
    display: block;
    height: 2px;
    background: var(--ec-dark);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.ec-navbar:not(.scrolled) .ec-toggler-icon span {
    background: #fff;
}

.ec-toggler[aria-expanded="true"] .ec-toggler-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.ec-toggler[aria-expanded="true"] .ec-toggler-icon span:nth-child(2) {
    opacity: 0;
}

.ec-toggler[aria-expanded="true"] .ec-toggler-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   Section Styles
   ============================================= */
.ec-section {
    padding: var(--section-py) 0;
    position: relative;
    overflow: hidden;
}

.ec-section-sm {
    padding: var(--section-py-sm) 0;
}

.ec-section-alt {
    background: var(--ec-cream);
}

.ec-section-pink {
    background: var(--ec-primary-light);
}

/* Section Title */
.ec-section-title {
    text-align: center;
    margin-bottom: 3.5rem;
}

.ec-section-title .subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--ff-body);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--ec-accent);
    margin-bottom: 0.75rem;
}

.ec-section-title .subtitle::before,
.ec-section-title .subtitle::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--ec-accent);
}

.ec-section-title h2 {
    margin-bottom: 1rem;
    font-weight: var(--fw-bold);
}

.ec-section-title p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--ec-medium-gray);
    font-size: var(--fs-body);
}

/* =============================================
   Hero Section
   ============================================= */
.ec-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 1000px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.ec-hero-slide {
    position: relative;
    height: 100%;
}

.ec-hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ec-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(var(--ec-dark-rgb), 0.55) 0%,
        rgba(var(--ec-dark-rgb), 0.3) 50%,
        rgba(var(--ec-accent-rgb), 0.2) 100%
    );
    z-index: 2;
}

.ec-hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    max-width: 700px;
}

.ec-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: var(--fw-medium);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.ec-hero-title {
    font-family: var(--ff-heading);
    font-size: var(--fs-display);
    font-weight: var(--fw-bold);
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.ec-hero-title span {
    color: var(--ec-primary);
    font-style: italic;
}

.ec-hero-desc {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.ec-hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Scroll Down Indicator */
.ec-hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    animation: floatUpDown 2s ease-in-out infinite;
}

.ec-hero-scroll span {
    display: block;
    font-size: var(--fs-xs);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.ec-hero-scroll i {
    font-size: 1.25rem;
}

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

/* Page Hero (Inner Pages) */
.ec-page-hero {
    position: relative;
    height: 45vh;
    min-height: 300px;
    max-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--ec-dark) 0%, #3a2a30 100%);
}

.ec-page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

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

.ec-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(var(--ec-dark-rgb), 0.7) 0%,
        rgba(var(--ec-dark-rgb), 0.5) 50%,
        rgba(var(--ec-accent-rgb), 0.3) 100%
    );
    z-index: 2;
}

.ec-page-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
}

.ec-page-hero-content h1 {
    color: #fff;
    font-size: var(--fs-h1);
    font-weight: var(--fw-bold);
    margin-bottom: 1rem;
}

.ec-page-hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.7);
}

.ec-page-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-base);
}

.ec-page-hero-breadcrumb a:hover {
    color: var(--ec-primary);
}

.ec-page-hero-breadcrumb .separator {
    color: var(--ec-primary);
}

.ec-page-hero-breadcrumb .current {
    color: var(--ec-primary);
}

/* =============================================
   Buttons
   ============================================= */
.ec-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 2rem;
    font-family: var(--ff-body);
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
}

.ec-btn-primary {
    background: var(--ec-accent);
    color: #fff;
    border-color: var(--ec-accent);
}

.ec-btn-primary:hover {
    background: var(--ec-rose-gold);
    border-color: var(--ec-rose-gold);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-accent);
}

.ec-btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.ec-btn-outline:hover {
    background: #fff;
    color: var(--ec-dark);
    border-color: #fff;
    transform: translateY(-3px);
}

.ec-btn-outline-dark {
    background: transparent;
    color: var(--ec-dark);
    border-color: var(--ec-accent);
}

.ec-btn-outline-dark:hover {
    background: var(--ec-accent);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-accent);
}

.ec-btn-lg {
    padding: 1rem 2.5rem;
    font-size: var(--fs-body);
}

.ec-btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: var(--fs-xs);
}

/* =============================================
   Service Cards
   ============================================= */
.ec-service-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    height: 100%;
}

.ec-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.ec-service-card-img {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.ec-service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.ec-service-card:hover .ec-service-card-img img {
    transform: scale(1.08);
    filter: blur(1px);
}

.ec-service-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(var(--ec-dark-rgb), 0.5) 0%,
        transparent 60%
    );
    opacity: 0;
    transition: var(--transition-base);
}

.ec-service-card:hover .ec-service-card-img::after {
    opacity: 1;
}

.ec-service-card-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    color: var(--ec-accent);
    font-size: 1.1rem;
    z-index: 2;
    transition: var(--transition-base);
}

.ec-service-card:hover .ec-service-card-icon {
    background: var(--ec-accent);
    color: #fff;
}

.ec-service-card-body {
    padding: 1.75rem;
}

.ec-service-card-body h3 {
    font-size: var(--fs-h4);
    margin-bottom: 0.75rem;
    transition: var(--transition-base);
}

.ec-service-card:hover .ec-service-card-body h3 {
    color: var(--ec-rose-gold);
}

.ec-service-card-body p {
    font-size: var(--fs-small);
    color: var(--ec-medium-gray);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.ec-service-card-price {
    display: inline-flex;
    align-items: baseline;
    gap: 0.25rem;
    font-family: var(--ff-heading);
    color: var(--ec-accent);
    font-size: 1.1rem;
    font-weight: var(--fw-semibold);
}

.ec-service-card-price small {
    font-family: var(--ff-body);
    font-size: var(--fs-xs);
    font-weight: var(--fw-regular);
    color: var(--ec-medium-gray);
}

/* =============================================
   Stats Section
   ============================================= */
.ec-stat-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid rgba(var(--ec-accent-rgb), 0.08);
}

.ec-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(var(--ec-accent-rgb), 0.2);
}

.ec-stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    background: var(--ec-primary-light);
    border-radius: var(--radius-md);
    color: var(--ec-accent);
    font-size: 1.35rem;
    transition: var(--transition-base);
}

.ec-stat-card:hover .ec-stat-icon {
    background: var(--ec-accent);
    color: #fff;
}

.ec-stat-number {
    font-family: var(--ff-heading);
    font-size: 2.5rem;
    font-weight: var(--fw-bold);
    color: var(--ec-dark);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.ec-stat-label {
    font-size: var(--fs-small);
    color: var(--ec-medium-gray);
    font-weight: var(--fw-medium);
}

/* =============================================
   Testimonial Section
   ============================================= */
.ec-testimonial-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(var(--ec-accent-rgb), 0.08);
    margin: 1rem;
}

.ec-testimonial-quote {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 4rem;
    font-family: var(--ff-heading);
    color: var(--ec-primary);
    line-height: 1;
    opacity: 0.5;
}

.ec-testimonial-text {
    font-size: var(--fs-body);
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}

.ec-testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ec-testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--ec-primary);
}

.ec-testimonial-name {
    font-family: var(--ff-heading);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-body);
    color: var(--ec-dark);
}

.ec-testimonial-role {
    font-size: var(--fs-xs);
    color: var(--ec-medium-gray);
}

.ec-testimonial-stars {
    color: #F0C27B;
    font-size: var(--fs-small);
    margin-bottom: 1rem;
}

/* =============================================
   CTA Section
   ============================================= */
.ec-cta {
    position: relative;
    padding: var(--section-py) 0;
    background: linear-gradient(135deg, var(--ec-dark) 0%, #3a2a30 50%, var(--ec-accent-dark) 100%);
    overflow: hidden;
}

.ec-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(var(--ec-primary-rgb), 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.ec-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.ec-cta-content h2 {
    color: #fff;
    font-size: var(--fs-h2);
    font-weight: var(--fw-bold);
    margin-bottom: 1rem;
}

.ec-cta-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: var(--fs-body);
    max-width: 550px;
    margin: 0 auto 2rem;
}

/* =============================================
   Instagram Section
   ============================================= */
.ec-instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
}

.ec-instagram-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

.ec-instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.ec-instagram-item:hover img {
    transform: scale(1.1);
}

.ec-instagram-item::after {
    content: '\f16d';
    font-family: 'Font Awesome 6 Brands';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--ec-dark-rgb), 0.5);
    color: #fff;
    font-size: 1.5rem;
    opacity: 0;
    transition: var(--transition-base);
}

.ec-instagram-item:hover::after {
    opacity: 1;
}

/* =============================================
   About Preview (Home)
   ============================================= */
.ec-about-preview-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.ec-about-preview-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.ec-about-preview-img::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    border: 3px solid var(--ec-primary);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.ec-about-preview-text h2 {
    margin-bottom: 1.25rem;
}

.ec-about-preview-text p {
    color: #666;
    line-height: 1.8;
}

.ec-about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.ec-about-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    color: var(--ec-dark);
}

.ec-about-feature i {
    color: var(--ec-accent);
    font-size: 0.875rem;
}

/* =============================================
   Footer
   ============================================= */
.ec-footer {
    position: relative;
    background: var(--ec-dark);
    color: rgba(255, 255, 255, 0.7);
    overflow: hidden;
}

.footer-decoration {
    position: relative;
    height: 80px;
    color: var(--ec-dark);
    margin-top: -1px;
    background: var(--ec-secondary);
}

.footer-decoration svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.footer-main {
    padding: 5rem 0 3rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
    margin-bottom: 1.25rem;
    filter: brightness(0) invert(1);
}

.footer-desc {
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--ec-accent);
    border-color: var(--ec-accent);
    color: #fff;
    transform: translateY(-3px);
}

.footer-title {
    font-family: var(--ff-heading);
    font-size: var(--fs-h4);
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--ec-accent);
    border-radius: var(--radius-full);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--fs-small);
    transition: var(--transition-base);
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: var(--ec-primary);
    padding-left: 8px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: var(--fs-small);
    align-items: flex-start;
}

.footer-contact i {
    color: var(--ec-accent);
    font-size: 0.875rem;
    margin-top: 4px;
    min-width: 16px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.copyright {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.footer-credit {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.footer-credit i {
    color: var(--ec-accent);
}

/* =============================================
   Floating Elements
   ============================================= */
/* WhatsApp */
.ec-floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff !important;
    border-radius: 50%;
    font-size: 1.75rem;
    z-index: var(--z-floating);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-base);
    animation: pulseWhatsapp 2s infinite;
}

.ec-floating-whatsapp:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulseWhatsapp {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: var(--ec-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: var(--fs-xs);
    font-weight: var(--fw-medium);
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.ec-floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Instagram */
.ec-floating-instagram {
    position: fixed;
    bottom: 6.5rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff !important;
    border-radius: 50%;
    font-size: 1.35rem;
    z-index: var(--z-floating);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
    transition: var(--transition-base);
}

.ec-floating-instagram:hover {
    transform: scale(1.1) rotate(5deg);
    color: #fff;
}

/* Scroll to Top */
.ec-scroll-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ec-accent);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 0.875rem;
    z-index: var(--z-floating);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-base);
    box-shadow: var(--shadow-accent);
}

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

.ec-scroll-top:hover {
    background: var(--ec-rose-gold);
    transform: translateY(-3px);
}

/* =============================================
   Cookie Banner
   ============================================= */
.ec-cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: #fff;
    z-index: var(--z-cookie);
    padding: 1.25rem 0;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.1);
    transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ec-cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.cookie-icon {
    font-size: 1.5rem;
    color: var(--ec-accent);
    flex-shrink: 0;
}

.cookie-text p {
    font-size: var(--fs-small);
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
}

.cookie-accept {
    background: var(--ec-accent);
    color: #fff;
}

.cookie-accept:hover {
    background: var(--ec-rose-gold);
}

.cookie-decline {
    background: var(--ec-soft-gray);
    color: var(--ec-dark);
}

.cookie-decline:hover {
    background: var(--ec-light-gray);
}

/* =============================================
   Gallery Preview Grid (Home)
   ============================================= */
.ec-gallery-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.ec-gallery-preview-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
}

.ec-gallery-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.ec-gallery-preview-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(var(--ec-dark-rgb), 0.4) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition-base);
}

.ec-gallery-preview-item:hover::after {
    opacity: 1;
}

/* =============================================
   Pricing Cards
   ============================================= */
.ec-pricing-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(var(--ec-accent-rgb), 0.08);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ec-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.ec-pricing-card.featured {
    border-color: var(--ec-accent);
    box-shadow: var(--shadow-pink);
    transform: scale(1.05);
    z-index: 2;
}

.ec-pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.ec-pricing-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ec-accent);
    color: #fff;
    padding: 0.35rem 1.5rem;
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.ec-pricing-name {
    font-family: var(--ff-heading);
    font-size: var(--fs-h3);
    font-weight: var(--fw-bold);
    margin-bottom: 0.5rem;
    color: var(--ec-dark);
}

.ec-pricing-desc {
    font-size: var(--fs-small);
    color: var(--ec-medium-gray);
    margin-bottom: 1.5rem;
}

.ec-pricing-price {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--ec-light-gray);
}

.ec-pricing-amount {
    font-family: var(--ff-heading);
    font-size: 3rem;
    font-weight: var(--fw-bold);
    color: var(--ec-dark);
    line-height: 1;
}

.ec-pricing-currency {
    font-size: 1.5rem;
    vertical-align: super;
    color: var(--ec-accent);
}

.ec-pricing-period {
    display: block;
    font-size: var(--fs-xs);
    color: var(--ec-medium-gray);
    margin-top: 0.5rem;
}

.ec-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    flex-grow: 1;
}

.ec-pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: var(--fs-small);
    color: #555;
    border-bottom: 1px solid rgba(var(--ec-accent-rgb), 0.06);
}

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

.ec-pricing-features li i {
    font-size: 0.75rem;
    width: 20px;
    text-align: center;
}

.ec-pricing-features li i.fa-check {
    color: var(--ec-accent);
}

.ec-pricing-features li i.fa-xmark {
    color: var(--ec-light-gray);
}

.ec-pricing-features li.disabled {
    color: var(--ec-light-gray);
}

/* =============================================
   Responsive Design
   ============================================= */
/* 1440px */
@media (max-width: 1440px) {
    .container {
        max-width: 1200px;
    }
}

/* 1024px - Tablet Landscape */
@media (max-width: 1024px) {
    .ec-hero {
        min-height: 500px;
    }
    
    .ec-pricing-card.featured {
        transform: scale(1);
    }
    
    .ec-pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .ec-instagram-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* 768px - Tablet Portrait */
@media (max-width: 768px) {
    :root {
        --navbar-height: 70px;
        --navbar-height-scrolled: 60px;
    }
    
    .ec-navbar .navbar-collapse {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: #fff;
        padding: 5rem 2rem 2rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 100;
        overflow-y: auto;
    }
    
    .ec-navbar .navbar-collapse.show {
        right: 0;
    }
    
    .ec-nav-links .nav-link {
        color: var(--ec-dark) !important;
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid var(--ec-light-gray);
    }
    
    .ec-nav-cta {
        margin: 1.5rem 0 0;
        width: 100%;
        justify-content: center;
    }
    
    .ec-hero-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .ec-hero-desc {
        margin: 0 auto 2rem;
    }
    
    .ec-hero-btns {
        justify-content: center;
    }
    
    .ec-gallery-preview {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ec-instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .ec-stat-card {
        padding: 1.5rem 1rem;
    }
    
    .ec-stat-number {
        font-size: 2rem;
    }
    
    .ec-section-title {
        margin-bottom: 2.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        flex-direction: column;
    }
}

/* 480px - Mobile Landscape */
@media (max-width: 480px) {
    .ec-hero {
        min-height: 450px;
    }
    
    .ec-hero-btns {
        flex-direction: column;
        width: 100%;
    }
    
    .ec-btn {
        width: 100%;
    }
    
    .ec-gallery-preview {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .ec-instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ec-testimonial-card {
        padding: 1.75rem;
        margin: 0.5rem;
    }
    
    .ec-floating-whatsapp {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .ec-floating-instagram {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
        bottom: 5.5rem;
        right: 1.5rem;
    }
    
    .ec-scroll-top {
        width: 40px;
        height: 40px;
        bottom: 1.5rem;
        left: 1.5rem;
    }
    
    .footer-main {
        padding: 3rem 0 2rem;
    }
}

/* 320px - Small Mobile */
@media (max-width: 320px) {
    html {
        font-size: 14px;
    }
    
    .ec-hero-badge {
        font-size: 0.625rem;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* =============================================
   Utility Classes
   ============================================= */
.text-accent { color: var(--ec-accent) !important; }
.text-rose { color: var(--ec-rose-gold) !important; }
.text-primary-pink { color: var(--ec-primary) !important; }
.bg-cream { background: var(--ec-cream) !important; }
.bg-blush { background: var(--ec-blush) !important; }
.bg-primary-light { background: var(--ec-primary-light) !important; }

.ff-heading { font-family: var(--ff-heading) !important; }
.fw-light { font-weight: var(--fw-light) !important; }
.fw-medium { font-weight: var(--fw-medium) !important; }
.fw-semibold { font-weight: var(--fw-semibold) !important; }

.section-divider {
    width: 60px;
    height: 2px;
    background: var(--ec-accent);
    margin: 0 auto;
    border-radius: var(--radius-full);
}

/* Lazy load placeholder */
.lazy-placeholder {
    background: var(--ec-primary-light);
    animation: shimmer 1.5s infinite linear;
    background-size: 200% 100%;
    background-image: linear-gradient(
        90deg,
        var(--ec-primary-light) 25%,
        var(--ec-cream) 50%,
        var(--ec-primary-light) 75%
    );
}

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

/* Image width/height CLS fix */
img[width][height] {
    height: auto;
}
