
/* ===== ADVANCED COLOR PALETTE & VARIABLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Dancing+Script:wght@400;700&display=swap');:root {
    /* Primary Colors - Luxury Palette */
    --warm-nude-beige: #FAE8D8;
    --soft-peach: #FFCAB0;
    --elegant-brown: #8B4B3B;

    /* Accent Colors - Premium */
    --rose-pink: #FF9A9E;
    --golden-bronze: #D4A574;
    --coral-glow: #FF6B9D;
    --champagne-gold: #F7E7CE;

    /* New Bright Colors */
    --sunset-orange: #FF8A65;
    --blush-pink: #FFCCCB;
    --ivory-cream: #FFFEF7;
    --rose-gold: #E8B4B8;

    /* Text Colors */
    --deep-coffee-brown: #5D4037;
    --soft-charcoal: #6D4C41;
    --pure-white: #FFFFFF;
    --text-light: #8D6E63;
    --text-muted: #A1887F;

    /* Enhanced Gradients */
    --nude-gradient: linear-gradient(135deg, var(--champagne-gold) 0%, var(--soft-peach) 50%, var(--blush-pink) 100%);
    --sunset-gradient: linear-gradient(135deg, var(--sunset-orange) 0%, var(--coral-glow) 100%);
    --rose-gold-gradient: linear-gradient(135deg, var(--rose-pink) 0%, var(--golden-bronze) 50%, var(--coral-glow) 100%);
    --glass-gradient: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0.1));
    --hero-overlay: linear-gradient(135deg, rgba(255,248,243,0.9) 0%, rgba(252,242,234,0.7) 30%, rgba(255,202,176,0.3) 70%, rgba(255,107,157,0.2) 100%);

    /* Advanced Shadows */
    --glow-shadow: 0 0 40px rgba(255, 107, 157, 0.4);
    --warm-shadow: 0 15px 50px rgba(212, 165, 116, 0.3);
    --glass-shadow: 0 8px 32px rgba(255, 202, 176, 0.3);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    --inner-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    --text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

       /* Typography */
    --primary-font: 'Poppins', sans-serif;
    --secondary-font: 'Poppins', sans-serif;
    --script-font: 'Dancing Script', cursive;

    /* Responsive Typography */
    --h1-size: clamp(2.5rem, 6vw, 4.5rem);
    --h2-size: clamp(2rem, 5vw, 3.5rem);
    --h3-size: clamp(1.5rem, 4vw, 2.5rem);
    --h4-size: clamp(1.2rem, 3vw, 2rem);
    --body-size: clamp(1rem, 2.5vw, 1.1rem);
    --small-size: clamp(0.875rem, 2vw, 1rem);

    /* Spacing System */
    --section-padding: clamp(4rem, 8vw, 8rem) 0;
    --container-padding: 0 clamp(1rem, 3vw, 2rem);
    --element-margin: clamp(1rem, 3vw, 2rem);
    --card-padding: clamp(1.5rem, 4vw, 3rem);

    /* Animation Curves */
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out-back: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

    /* Transitions */
    --transition-fast: 0.2s var(--ease-smooth);
    --transition-normal: 0.3s var(--ease-smooth);
    --transition-slow: 0.5s var(--ease-smooth);
    --transition-bounce: 0.4s var(--ease-in-out-back);

    /* Z-Index Scale */
    --z-loader: 10000;
    --z-modal: 9999;
    --z-header: 1000;
    --z-overlay: 999;
    --z-floating: 100;
    --z-base: 1;

    /* Responsive Breakpoints */
    --mobile-sm: 480px;
    --mobile-lg: 768px;
    --tablet: 1024px;
    --desktop: 1200px;
    --desktop-lg: 1400px;
}

/* ===== GLOBAL RESET & BASE STYLES ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--secondary-font);
    color: var(--deep-coffee-brown);
    line-height: 1.6;
    background-color: var(--ivory-cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: min(1400px, 95vw);
    margin: 0 auto;
    padding: var(--container-padding);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.align-center { align-items: center; }
.justify-center { justify-content: center; }

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s var(--ease-out-quart) forwards;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--primary-font);
    font-weight: 300;
    line-height: 1.2;
    color: var(--deep-coffee-brown);
}




h1 { font-size: var(--h1-size); }
h2 { font-size: var(--h2-size); }
h3 { font-size: var(--h3-size); }
h4 { font-size: var(--h4-size); }

p {
    font-size: var(--body-size);
    line-height: 1.6;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul { list-style: none; }

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition-normal);
}

/* ===== LOADING SCREEN ===== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--nude-gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: var(--z-loader);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: var(--deep-coffee-brown);
    animation: pulseGlow 2s infinite alternate;
}

.loader-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.loader-logo i {
    font-size: 3rem;
    color: var(--coral-glow);
    animation: rotateGlow 2s linear infinite;
}

.loader-logo h2 {
    font-family: var(--primary-font);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--rose-gold-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.loader-progress {
    width: min(300px, 80vw);
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: var(--sunset-gradient);
    border-radius: 3px;
    animation: loadProgress 3s ease-out forwards;
    box-shadow: 0 0 20px rgba(255, 107, 157, 0.5);
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); filter: drop-shadow(0 0 10px rgba(255, 107, 157, 0.5)); }
    50% { filter: drop-shadow(0 0 20px rgba(255, 107, 157, 0.8)); }
    100% { transform: rotate(360deg); filter: drop-shadow(0 0 10px rgba(255, 107, 157, 0.5)); }
}

@keyframes loadProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes pulseGlow {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: var(--z-header);
    padding: 1rem 0;
    transition: all var(--transition-normal);
    border-bottom: 1px solid rgba(255, 202, 176, 0.2);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--card-shadow);
    padding: 0.8rem 0;
}

.nav-container {
    max-width: min(1400px, 95vw);
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: var(--z-floating);
    transition: var(--transition-normal);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--sunset-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: var(--glow-shadow);
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.logo:hover .logo-icon::before {
    left: 100%;
}

.logo-text {
    font-family: var(--primary-font);
    font-size: 2rem;
    font-weight: 800;
    background: var(--rose-gold-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--deep-coffee-brown);
    font-weight: 500;
    position: relative;
    transition: var(--transition-normal);
    padding: 0.5rem 0;
    display: block;
    font-size: 1rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sunset-gradient);
    transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--coral-glow);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.book-btn {
    background: var(--sunset-gradient);
    color: white;
    padding: 0.9rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-bounce);
    box-shadow: var(--glow-shadow);
    font-size: 1rem;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.book-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.book-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--hover-shadow);
}

.book-btn:hover::before {
    opacity: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: var(--z-floating);
    padding: 0.5rem;
    background: none;
    border: none;
    transition: var(--transition-normal);
}

.hamburger .bar {
    width: 30px;
    height: 3px;
    background: var(--deep-coffee-brown);
    border-radius: 2px;
    transition: var(--transition-normal);
    transform-origin: center;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-30px);
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO SECTION ===== */
.hero.impressa-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #FFF8F3 0%, #FCF2EA 50%, #F8EDE3 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-base);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease;
}

.hero-slide.active {
    opacity: 0.4;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7) saturate(1.2);
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-overlay);
    z-index: var(--z-base);
}

/* ===== BOUNCING IMAGES SECTION - COMPLETE ===== */

/* Bouncing Animation Keyframes */
@keyframes bounceLeft {
    0% {
        transform: translateY(0px) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translateY(-30px) scale(1.05);
        opacity: 1;
    }
    50% {
        transform: translateY(-60px) scale(0.95);
        opacity: 0.9;
    }
    75% {
        transform: translateY(-30px) scale(1.02);
        opacity: 1;
    }
    100% {
        transform: translateY(0px) scale(1);
        opacity: 0.8;
    }
}

@keyframes bounceRight {
    0% {
        transform: translateY(0px) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translateY(-25px) scale(1.08);
        opacity: 1;
    }
    50% {
        transform: translateY(-50px) scale(0.92);
        opacity: 0.9;
    }
    75% {
        transform: translateY(-25px) scale(1.04);
        opacity: 1;
    }
    100% {
        transform: translateY(0px) scale(1);
        opacity: 0.8;
    }
}


@keyframes bounceCenter {
    0% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-40px) scale(0.9);
        opacity: 1;
    }
    75% {
        transform: translateY(-20px) scale(1.05);
        opacity: 0.9;
    }
    100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
}


@keyframes glowPulse {
    0%, 100% {
        box-shadow:
            0 15px 35px rgba(0, 0, 0, 0.15),
            0 5px 15px rgba(255, 107, 157, 0.3),
            0 0 0 3px rgba(255, 255, 255, 0.8);
    }
    50% {
        box-shadow:
            0 20px 45px rgba(0, 0, 0, 0.2),
            0 8px 25px rgba(255, 107, 157, 0.5),
            0 0 0 3px rgba(255, 255, 255, 1);
    }
}


* Floating Images Container */
.floating-images-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

/* Base Bouncing Image Styles */
.floating-image {
    position: absolute;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    border: 3px solid rgba(255, 255, 255, 0.9);
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
    opacity: 0.8;
    transition: all var(--transition-normal);
    will-change: transform, opacity;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(255, 107, 157, 0.3);
}


/* LEFT SIDE BOUNCING IMAGES */
.floating-image.image-1 {
    left: 5%;
    top: 20%;
    width: 120px;
    height: 160px;
    background-image: url('../images/img1.jpg ');
    animation:
        bounceLeft 4s infinite ease-in-out,
        glowPulse 3s infinite ease-in-out;
    animation-delay: 0s, 0.5s;
}

.floating-image.image-2 {
    left: 8%;
    top: 65%;
    width: 100px;
    height: 130px;
    background-image: url('../images/img2.jpg');
    animation:
        bounceLeft 5s infinite ease-in-out,
        glowPulse 4s infinite ease-in-out;
    animation-delay: 1.5s, 2s;
}

/* RIGHT SIDE BOUNCING IMAGES */
.floating-image.image-3 {
    right: 5%;
    top: 15%;
    width: 130px;
    height: 170px;
    background-image: url('../images/img3.jpg');
    animation:
        bounceRight 4.5s infinite ease-in-out,
        glowPulse 3.5s infinite ease-in-out;
    animation-delay: 0.8s, 1.2s;
}

.floating-image.image-4 {
    right: 10%;
    top: 60%;
    width: 110px;
    height: 140px;
    background-image: url('../images/img4.jpg');
    animation:
        bounceRight 5.5s infinite ease-in-out,
        glowPulse 4.5s infinite ease-in-out;
    animation-delay: 2.2s, 1.8s;
}

/* CENTER BOUNCING IMAGE */
.floating-image.image-5 {
    left: 50%;
    top: 75%;
    width: 90px;
    height: 120px;
    transform: translateX(-50%);
    background-image: url('../images/img5.jpg');
    animation:
        bounceCenter 6s infinite ease-in-out,
        glowPulse 5s infinite ease-in-out;
    animation-delay: 3s, 2.5s;
    opacity: 0.6;
}


/* Hover Effects for Bouncing Images */
.floating-image:hover {
    animation-play-state: paused;
    transform: scale(1.15) !important;
    opacity: 1 !important;
    z-index: 10;
    cursor: pointer;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.25),
        0 10px 30px rgba(255, 107, 157, 0.6),
        0 0 0 4px rgba(255, 255, 255, 1);
}


/* ===== HERO CONTENT STYLES ===== */
.hero-content.impressa-layout {
    position: relative;
    z-index: var(--z-floating);
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 2rem;
}

/* Mobile First - Hero Layout */
.hero-main-grid {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
    width: 100%;
    text-align: center;
}

.hero-profile-side {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    animation: slideInUp 1s var(--ease-out-quart) 0.3s both;
}

.profile-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 243, 0.9));
    backdrop-filter: blur(30px);
    border-radius: 35px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow:
        0 20px 60px rgba(255, 107, 157, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    width: min(320px, 90vw);
    border: 1px solid rgba(255, 202, 176, 0.3);
    position: relative;
    transition: var(--transition-normal);
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 30px 80px rgba(255, 107, 157, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.9);
}

.profile-image-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.profile-image-wrapper img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    border: 5px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.3);
    position: relative;
    transition: var(--transition-normal);
}

.profile-card:hover .profile-image-wrapper img {
    transform: scale(1.05);
}

.profile-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}


.hero-text-side {
    animation: slideInUp 1s var(--ease-out-quart) 0.6s both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 243, 0.85));
    backdrop-filter: blur(20px);
    padding: 0.5rem 1.2rem; /* reduced padding */
    border-radius: 25px; /* smaller curve */
    color: var(--coral-glow);
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1.5px solid rgba(255, 202, 176, 0.3);
    box-shadow: 0 6px 25px rgba(255, 107, 157, 0.15);
    font-size: 0.85rem; /* slightly smaller text */
    position: relative;
    overflow: hidden;
    animation: glow 3s ease-in-out infinite;
}


@keyframes glow {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(255, 107, 157, 0.2);
    }
    50% {
        box-shadow: 0 15px 50px rgba(255, 107, 157, 0.4);
    }
}

.hero-title.impressa-title {
    font-family: var(--primary-font);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
    color: var(--deep-coffee-brown);
    margin-bottom: 0.3rem;
    animation: fadeInLeft 1s var(--ease-out-quart) 0.9s both;
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, #FF6B9D 0%, #C2185B 30%, #E91E63 60%, #FF8A80 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 700;
    margin: 0.5rem 0;
    position: relative;
    animation: slideInRight 1s var(--ease-out-quart) 1.2s both;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    color: var(--text-dark, #2b2b2b); /* darker color fallback */
    line-height: 1.7;
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s var(--ease-out-quart) 1.5s both;
}


.hero-buttons-impressa {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
    align-items: center;
    animation: fadeInUp 1s var(--ease-out-quart) 1.8s both;
}

.cta-button {
    padding: 1.2rem 2.5rem;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-bounce);
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 250px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.cta-button.primary-impressa {
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    color: white;
    box-shadow: 0 15px 35px rgba(255, 107, 157, 0.4);
}

.cta-button.primary-impressa:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(255, 107, 157, 0.6);
}

.cta-button.secondary-impressa {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    color: var(--deep-coffee-brown);
    border: 2px solid rgba(255, 202, 176, 0.5);
}

.cta-button.secondary-impressa:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--coral-glow);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.scroll-indicator.impressa-scroll {
    position: absolute;
    bottom: 20px;
    right: 20px;
    text-align: center;
    color: var(--deep-coffee-brown);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 1rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s var(--ease-out-quart) 3s both;
    z-index: 10;
}

.scroll-text {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    display: block;
    font-weight: 500;
    color: var(--text-light);
}

.scroll-arrow i {
    font-size: 1rem;
    color: var(--coral-glow);
    animation: bounce 2s infinite;
}


/* ===== MOBILE RESPONSIVENESS ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .floating-image {
        transform: scale(0.8);
    }

    .floating-image.image-1 {
        left: 3%;
        top: 25%;
        width: 90px;
        height: 120px;
    }

    .floating-image.image-2 {
        left: 5%;
        top: 70%;
        width: 75px;
        height: 100px;
    }

    .floating-image.image-3 {
        right: 3%;
        top: 20%;
        width: 100px;
        height: 130px;
    }

    .floating-image.image-4 {
        right: 8%;
        top: 65%;
        width: 85px;
        height: 110px;
    }

    .floating-image.image-5 {
        width: 70px;
        height: 90px;
        opacity: 0.4;
    }


    .hero-buttons-impressa {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        min-width: 200px;
        padding: 1rem 2rem;
    }
    .scroll-indicator.impressa-scroll {
        bottom: 20px;
        right: 20px;
        padding: 0.8rem;
    }

    .scroll-text {
        font-size: 0.7rem;
    }

}

@media (max-width: 480px) {
    .floating-image.image-5 {
        display: none;
    }

    .floating-image {
        transform: scale(0.7);
    }

}

/* ===== TABLET RESPONSIVENESS ===== */
@media (min-width: 769px) and (max-width: 1024px) {
    .floating-image.image-1 { left: 4%; width: 110px; height: 140px; }
    .floating-image.image-2 { left: 6%; width: 90px; height: 120px; }
    .floating-image.image-3 { right: 4%; width: 120px; height: 150px; }
    .floating-image.image-4 { right: 8%; width: 100px; height: 130px; }
    .floating-image.image-5 { width: 80px; height: 100px; }
}


/* ===== DESKTOP LAYOUT ===== */
@media (min-width: 1025px) {
    .hero-main-grid {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 4rem;
        align-items: center;
        text-align: left;
    }

    .hero-profile-side {
        margin-bottom: 0;
        justify-content: flex-start;
    }

    .hero-buttons-impressa {
        flex-direction: row;
        justify-content: flex-start;
        gap: 2rem;
    }

    .hero-description {
        margin-left: 0;
        margin-right: 0;
    }

    .scroll-indicator.impressa-scroll {
        display: block;
    }
}

/* ===== ANIMATIONS PERFORMANCE ===== */
@media (prefers-reduced-motion: reduce) {
    .floating-image {
        animation: none;
        transform: translateY(0) scale(1) !important;
    }
}

/* ===== BEAUTY INSPIRATION SECTION - ENHANCED ===== */
.beauty-inspiration {
    padding: 8rem 0;
    background: linear-gradient(135deg, #FFF8F3 0%, #FCF2EA 50%, #F8EDE3 100%);
    position: relative;
    overflow: hidden;
}

.beauty-inspiration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23FF6B9D" opacity="0.1"/><circle cx="75" cy="75" r="1.5" fill="%23D4A574" opacity="0.1"/><circle cx="50" cy="10" r="0.8" fill="%23FF8A65" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.inspiration-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ===== CONTENT SIDE STYLES ===== */
.inspiration-content {
    position: relative;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 243, 0.8));
    backdrop-filter: blur(20px);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    color: var(--coral-glow);
    font-weight: 600;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 202, 176, 0.3);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.2);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 3s infinite;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--deep-coffee-brown);
}

.highlight-text {
    background: var(--rose-gold-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 400;
    position: relative;
}

.section-description {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 90%;
}

/* ===== ENHANCED FEATURES ===== */
.inspiration-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 248, 243, 0.6));
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 202, 176, 0.2);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--rose-gold-gradient);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.2);
}

.feature-item:hover::before {
    opacity: 0.1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--sunset-gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(255, 107, 157, 0.3);
    position: relative;
    z-index: 1;
}

.feature-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep-coffee-brown);
    margin-bottom: 0.3rem;
}

.feature-content span {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== ENHANCED BUTTON ===== */
.view-gallery-btn {
    background: var(--sunset-gradient);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 35px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition-bounce);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.4);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.view-gallery-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.view-gallery-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(255, 107, 157, 0.5);
}

.view-gallery-btn:hover::before {
    left: 100%;
}

.btn-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--sunset-gradient);
    border-radius: 37px;
    z-index: -1;
    filter: blur(10px);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.view-gallery-btn:hover .btn-glow {
    opacity: 0.7;
}

/* ===== ENHANCED IMAGES GALLERY ===== */
.inspiration-images {
    position: relative;
    height: 100%;
    min-height: 600px;
}

.gallery-grid {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-gallery-image {
    position: absolute;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.image-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-normal);
}

.floating-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.8), rgba(255, 138, 101, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-normal);
    backdrop-filter: blur(5px);
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform var(--transition-normal);
}

.overlay-content i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.overlay-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.image-border {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--rose-gold-gradient);
    border-radius: 28px;
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

/* ===== IMAGE POSITIONING (BIGGER SIZES) ===== */
.floating-gallery-image.image-1 {
    top: 10%;
    right: 15%;
    width: 280px;
    height: 350px;
    animation: float1 6s ease-in-out infinite;
}

.floating-gallery-image.image-2 {
    top: 45%;
    right: 45%;
    width: 240px;
    height: 300px;
    animation: float2 7s ease-in-out infinite;
}

.floating-gallery-image.image-3 {
    top: 20%;
    right: 60%;
    width: 200px;
    height: 250px;
    animation: float3 8s ease-in-out infinite;
}

/* ===== HOVER EFFECTS ===== */
.floating-gallery-image:hover {
    transform: scale(1.05) rotate(2deg);
    z-index: 10;
}

.floating-gallery-image:hover .image-container {
    box-shadow: 0 30px 80px rgba(255, 107, 157, 0.3);
}

.floating-gallery-image:hover .image-overlay {
    opacity: 1;
}

.floating-gallery-image:hover .overlay-content {
    transform: translateY(0);
}

.floating-gallery-image:hover .image-border {
    opacity: 1;
}

.floating-gallery-image:hover img {
    transform: scale(1.1);
}

/* ===== FLOATING SPARKLES ===== */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--coral-glow);
    border-radius: 50%;
    opacity: 0;
    animation: sparkleFloat 4s infinite;
}

.sparkle-1 {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 35%;
    left: 80%;
    animation-delay: 1s;
}

.sparkle-3 {
    top: 70%;
    left: 30%;
    animation-delay: 2s;
}

.sparkle-4 {
    top: 80%;
    left: 70%;
    animation-delay: 3s;
}

/* ===== ANIMATIONS ===== */
@keyframes float1 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(-1deg);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-25px) rotate(1deg);
    }
}

@keyframes sparkleFloat {
    0%, 100% {
        opacity: 0;
        transform: translateY(0px) scale(0.5);
    }
    50% {
        opacity: 1;
        transform: translateY(-30px) scale(1);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .inspiration-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .floating-gallery-image.image-1 {
        top: 5%;
        right: 10%;
        width: 220px;
        height: 280px;
    }

    .floating-gallery-image.image-2 {
        top: 40%;
        right: 35%;
        width: 200px;
        height: 250px;
    }

    .floating-gallery-image.image-3 {
        top: 15%;
        right: 55%;
        width: 180px;
        height: 220px;
    }
}

@media (max-width: 768px) {
    .beauty-inspiration {
        padding: 6rem 0;
    }

    .inspiration-features {
        gap: 1rem;
    }

    .feature-item {
        padding: 1rem;
        gap: 1rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .floating-gallery-image.image-1 {
        top: 0%;
        right: 5%;
        width: 180px;
        height: 230px;
    }

    .floating-gallery-image.image-2 {
        top: 35%;
        right: 25%;
        width: 160px;
        height: 200px;
    }

    .floating-gallery-image.image-3 {
        top: 10%;
        right: 50%;
        width: 140px;
        height: 180px;
    }
}

/* ===== BEAUTY SHOWCASE SECTION ===== */
.beauty-showcase {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FFF8F3 0%, #FCF2EA 30%, #F8EDE3 70%, #FFF8F3 100%);
    position: relative;
    overflow: hidden;
}

.beauty-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 138, 101, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.beauty-showcase .container {
    position: relative;
    z-index: 2;
}

/* ===== SHOWCASE HEADER ===== */
.showcase-header {
    text-align: center;
    margin-bottom: 4rem;
}

.showcase-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 243, 0.9));
    backdrop-filter: blur(25px);
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    color: var(--coral-glow);
    font-weight: 600;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 202, 176, 0.3);
    box-shadow: 0 10px 35px rgba(255, 107, 157, 0.2);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.showcase-header .section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: shimmer 4s infinite;
}

.showcase-header .section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--deep-coffee-brown);
}

.showcase-header .highlight-text {
    background: var(--rose-gold-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 400;
}

.showcase-header .section-description {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    line-height: 1.7;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== SHOWCASE GRID ===== */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

/* ===== SHOWCASE CARDS ===== */
.showcase-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 243, 0.8));
    backdrop-filter: blur(20px);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
    position: relative;
    border: 1px solid rgba(255, 202, 176, 0.2);
}

.showcase-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(255, 107, 157, 0.2);
}

/* ===== IMAGE WRAPPER ===== */
.image-wrapper {
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 25px 25px 0 0;
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.showcase-card:hover .showcase-image {
    transform: scale(1.1);
}

/* ===== IMAGE OVERLAY ===== */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(255, 107, 157, 0.85) 0%,
        rgba(255, 138, 101, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-normal);
    backdrop-filter: blur(3px);
}

.showcase-card:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(30px);
    transition: transform var(--transition-normal);
}

.showcase-card:hover .overlay-content {
    transform: translateY(0);
}

.overlay-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.overlay-icon i {
    font-size: 2rem;
    color: white;
}

.overlay-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.overlay-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    color: white;
}

.view-details-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.view-details-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* ===== IMAGE BORDER EFFECT ===== */
.image-border {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--rose-gold-gradient);
    border-radius: 28px;
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.showcase-card:hover .image-border {
    opacity: 0.8;
}

/* ===== FLOATING SPARKLES ===== */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.showcase-card:hover .floating-elements {
    opacity: 1;
}

.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: sparkleFloat 3s infinite;
}

.sparkle-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 30%;
    right: 25%;
    animation-delay: 1s;
}

.sparkle-3 {
    bottom: 30%;
    left: 30%;
    animation-delay: 2s;
}

/* ===== CARD INFO ===== */
.card-info {
    padding: 2rem;
}

.info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.info-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--deep-coffee-brown);
    margin: 0;
}

.rating {
    display: flex;
    gap: 0.2rem;
}

.rating i {
    color: #FFD700;
    font-size: 0.9rem;
}

.card-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* ===== CARD STATS ===== */
.card-stats {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    transition: var(--transition-normal);
    cursor: pointer;
}

.stat-item:hover {
    color: var(--coral-glow);
    transform: scale(1.05);
}

.stat-item i {
    color: var(--coral-glow);
}

/* ===== CALL TO ACTION ===== */
.showcase-cta {
    text-align: center;
}

.view-all-btn {
    background: var(--sunset-gradient);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 35px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition-bounce);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.4);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.view-all-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(255, 107, 157, 0.5);
}

.view-all-btn:hover::before {
    left: 100%;
}

/* ===== ANIMATIONS ===== */
@keyframes sparkleFloat {
    0%, 100% {
        opacity: 0;
        transform: translateY(0px) scale(0.5);
    }
    50% {
        opacity: 1;
        transform: translateY(-20px) scale(1);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .showcase-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .beauty-showcase {
        padding: 4rem 0;
    }

    .showcase-header {
        margin-bottom: 3rem;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .image-wrapper {
        height: 400px;
    }

    .card-info {
        padding: 1.5rem;
    }

    .card-stats {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .image-wrapper {
        height: 400px;
    }

    .overlay-icon {
        width: 60px;
        height: 60px;
    }

    .overlay-icon i {
        font-size: 1.5rem;
    }
}


/* ===== COMPACT PACKAGES SECTION ===== */
.packages-section {
    padding: 4rem 0; /* Reduced from 8rem */
    background: linear-gradient(135deg, #FFF8F3 0%, #FFFFFF 30%, #FFF0E6 70%, #FFE8E8 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Background Elements */
.packages-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 138, 101, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(255, 202, 176, 0.1) 0%, transparent 50%);
    animation: floatingBackground 20s ease-in-out infinite;
    z-index: 0;
}

.packages-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="sparkle" x="0" y="0" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23FF6B9D" opacity="0.3"><animate attributeName="opacity" values="0.3;0.8;0.3" dur="3s" repeatCount="indefinite"/></circle><circle cx="50" cy="30" r="1.5" fill="%23FF8A65" opacity="0.2"><animate attributeName="opacity" values="0.2;0.6;0.2" dur="4s" repeatCount="indefinite"/></circle><circle cx="30" cy="50" r="1" fill="%23FFCAB0" opacity="0.4"><animate attributeName="opacity" values="0.4;0.9;0.4" dur="2.5s" repeatCount="indefinite"/></circle></pattern></defs><rect width="100%" height="100%" fill="url(%23sparkle)"/></svg>') repeat;
    z-index: 0;
}

@keyframes floatingBackground {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.packages-section .container {
    position: relative;
    z-index: 1;
}

/* Compact Section Header */
.packages-section .section-header {
    text-align: center;
    margin-bottom: 3rem; /* Reduced from 5rem */
    position: relative;
}

.packages-section .section-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1rem; /* Reduced from 1.2rem */
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.8rem; /* Reduced from 1rem */
    position: relative;
}

.packages-section .section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -6px; /* Reduced from -8px */
    left: 50%;
    transform: translateX(-50%);
    width: 60px; /* Reduced from 80px */
    height: 2px; /* Reduced from 3px */
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    border-radius: 2px;
    animation: expandLine 0.8s ease-out;
}

@keyframes expandLine {
    from { width: 0; }
    to { width: 60px; }
}

.packages-section .section-title {
    font-family: var(--primary-font);
    font-size: 2.5rem; /* Reduced from 3.5rem */
    font-weight: 800;
    color: var(--deep-coffee-brown);
    margin-bottom: 1rem; /* Reduced from 1.5rem */
    line-height: 1.2;
    background: linear-gradient(135deg, #2C1810 0%, #8B4513 50%, #2C1810 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.packages-section .section-description {
    font-size: 1.1rem; /* Reduced from 1.3rem */
    color: var(--text-light);
    max-width: 500px; /* Reduced from 600px */
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

/* Compact Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Reduced from 380px */
    gap: 2rem; /* Reduced from 3rem */
    margin-top: 3rem; /* Reduced from 5rem */
    max-width: 1200px; /* Reduced from 1400px */
    margin-left: auto;
    margin-right: auto;
    perspective: 1000px;
}

/* Compact Package Card */
.package-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px; /* Reduced from 30px */
    overflow: hidden;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.08), /* Reduced shadow */
        0 6px 15px rgba(255, 107, 157, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid rgba(255, 202, 176, 0.3);
    position: relative;
    cursor: pointer;
    transform-style: preserve-3d;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(255, 107, 157, 0.03) 0%,
        rgba(255, 138, 101, 0.03) 50%,
        rgba(255, 202, 176, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
    border-radius: 20px;
}

.package-card:hover::before {
    opacity: 1;
}

.package-card:hover {
    transform: translateY(-15px) rotateX(3deg) rotateY(3deg); /* Reduced transform */
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.15),
        0 15px 30px rgba(255, 107, 157, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 107, 157, 0.5);
}

/* Featured Card Special Effects */
.package-card.featured {
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #FF6B9D 0%, #FF8A65 50%, #FFCAB0 100%) border-box;
    box-shadow:
        0 20px 50px rgba(255, 107, 157, 0.2), /* Reduced shadow */
        0 8px 25px rgba(255, 138, 101, 0.15);
    animation: featuredGlow 3s ease-in-out infinite alternate;
}

@keyframes featuredGlow {
    0% {
        box-shadow:
            0 20px 50px rgba(255, 107, 157, 0.2),
            0 8px 25px rgba(255, 138, 101, 0.15);
    }
    100% {
        box-shadow:
            0 25px 60px rgba(255, 107, 157, 0.3),
            0 12px 30px rgba(255, 138, 101, 0.25);
    }
}

.package-card.featured:hover {
    transform: translateY(-18px) rotateX(5deg) rotateY(5deg); /* Reduced transform */
    box-shadow:
        0 35px 80px rgba(255, 107, 157, 0.3),
        0 18px 40px rgba(255, 138, 101, 0.2);
}

/* Compact Package Image */
.package-image {
    position: relative;
    height: 400px; /* Reduced from 320px */
    overflow: hidden;
}

.package-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(255, 107, 157, 0.2) 100%
    );
    z-index: 2;
    transition: opacity 0.6s ease;
}

.package-card:hover .package-image::before {
    opacity: 0.7;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(1.1) contrast(1.05) saturate(1.1);
}

.package-card:hover .package-image img {
    transform: scale(1.1) rotate(1deg); /* Reduced transform */
}

/* Compact Package Glow Effect */
.package-glow {
    position: absolute;
    top: -50%; /* Reduced from -100% */
    left: -50%; /* Reduced from -100% */
    width: 200%; /* Reduced from 300% */
    height: 200%; /* Reduced from 300% */
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 107, 157, 0.3) 0%, transparent 30%),
        radial-gradient(circle at 70% 70%, rgba(255, 138, 101, 0.2) 0%, transparent 40%);
    opacity: 0;
    transition: all 1s ease;
    z-index: 2;
    animation: rotateGlow 10s linear infinite;
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.package-card:hover .package-glow {
    opacity: 1;
    animation-duration: 7s; /* Reduced speed */
}

/* Compact Package Badge */
.package-badge {
    position: absolute;
    top: 15px; /* Reduced from 25px */
    right: 15px; /* Reduced from 25px */
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    color: white;
    padding: 0.5rem 1rem; /* Reduced from 0.8rem 1.5rem */
    border-radius: 20px; /* Reduced from 25px */
    font-size: 0.8rem; /* Reduced from 0.9rem */
    font-weight: 700;
    z-index: 10;
    box-shadow:
        0 6px 20px rgba(255, 107, 157, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px; /* Reduced from 1px */
    animation: badgeBounce 2s ease-in-out infinite;
}

@keyframes badgeBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-3px) scale(1.02); } /* Reduced bounce */
}

.package-badge.featured {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #2C1810;
    animation: featuredBadge 2s ease-in-out infinite;
    box-shadow:
        0 8px 25px rgba(255, 215, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

@keyframes featuredBadge {
    0%, 100% {
        transform: translateY(0) scale(1) rotate(0deg);
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    }
    50% {
        transform: translateY(-5px) scale(1.05) rotate(1deg);
        box-shadow: 0 12px 30px rgba(255, 215, 0, 0.7);
    }
}

/* Compact Package Overlay */
.package-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(255, 107, 157, 0.4) 50%,
        rgba(255, 138, 101, 0.3) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 5;
    backdrop-filter: blur(3px); /* Reduced blur */
}

.package-card:hover .package-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px) scale(0.9); /* Reduced transform */
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
}

.package-card:hover .overlay-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.overlay-content i {
    font-size: 2.5rem; /* Reduced from 4rem */
    margin-bottom: 1rem; /* Reduced from 1.5rem */
    display: block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5); /* Reduced glow */
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); } /* Reduced float */
}

.overlay-content h3 {
    font-size: 1.3rem; /* Reduced from 1.8rem */
    font-weight: 800;
    margin-bottom: 0.5rem; /* Reduced from 0.8rem */
    font-family: var(--primary-font);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.overlay-content p {
    font-size: 0.9rem; /* Reduced from 1.1rem */
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.4;
}

/* Compact Package Content */
.package-content {
    padding: 1.5rem; /* Reduced from 2.5rem */
    position: relative;
    z-index: 2;
}

.package-header {
    margin-bottom: 1.5rem; /* Reduced from 2rem */
    text-align: center;
    position: relative;
}

.package-header::after {
    content: '';
    position: absolute;
    bottom: -10px; /* Reduced from -15px */
    left: 50%;
    transform: translateX(-50%);
    width: 50px; /* Reduced from 60px */
    height: 2px;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    border-radius: 2px;
}

.package-header h3 {
    font-family: var(--primary-font);
    font-size: 1.4rem; /* Reduced from 1.8rem */
    font-weight: 800;
    color: var(--deep-coffee-brown);
    margin-bottom: 1rem; /* Reduced from 1.2rem */
    line-height: 1.3;
}

.package-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem; /* Reduced from 0.5rem */
}

.price-from {
    font-size: 0.9rem; /* Reduced from 1rem */
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-size: 1.8rem; /* Reduced from 2.5rem */
    font-weight: 900;
    color: var(--coral-glow);
    font-family: var(--primary-font);
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 3px 10px rgba(255, 107, 157, 0.3);
}

/* Compact Package Features */
.package-features {
    list-style: none;
    margin-bottom: 1.5rem; /* Reduced from 2.5rem */
    display: grid;
    gap: 0.5rem; /* Reduced from 0.8rem */
}

.package-features li {
    display: flex;
    align-items: center;
    padding: 0.7rem; /* Reduced from 1rem */
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px; /* Reduced from 15px */
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 202, 176, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    font-size: 0.9rem; /* Added smaller font */
}

.package-features li::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.1), transparent);
    transition: left 0.6s ease;
}

.package-features li:hover::before {
    left: 100%;
}

.package-features li:hover {
    transform: translateX(5px); /* Reduced from 8px */
    background: rgba(255, 107, 157, 0.08);
    border-color: rgba(255, 107, 157, 0.3);
    box-shadow: 0 3px 15px rgba(255, 107, 157, 0.15);
}

.package-features i {
    color: var(--coral-glow);
    margin-right: 0.8rem; /* Reduced from 1rem */
    font-size: 1rem; /* Reduced from 1.1rem */
    width: 18px; /* Reduced from 20px */
    text-align: center;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.package-features li span {
    font-weight: 500;
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

/* Compact Package Button */
.package-btn {
    width: 100%;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    color: white;
    border: none;
    padding: 1rem 2rem; /* Reduced from 1.3rem 2.5rem */
    border-radius: 40px; /* Reduced from 50px */
    font-size: 1rem; /* Reduced from 1.2rem */
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem; /* Reduced from 0.8rem */
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px; /* Reduced from 1px */
    box-shadow:
        0 10px 25px rgba(255, 107, 157, 0.3), /* Reduced shadow */
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.package-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s ease;
}

.package-btn:hover::before {
    left: 100%;
}

.package-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.6s ease;
}

.package-btn:hover::after {
    width: 250px; /* Reduced from 300px */
    height: 250px;
}

.package-btn:hover {
    transform: translateY(-3px) scale(1.02); /* Reduced transform */
    box-shadow:
        0 15px 35px rgba(255, 107, 157, 0.5), /* Reduced shadow */
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #FF8A65 0%, #FF6B9D 100%);
}

.package-btn span, .package-btn i {
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.package-btn:hover i {
    transform: translateX(5px) scale(1.1); /* Reduced transform */
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .packages-section .section-title {
        font-size: 2.2rem;
    }

    .packages-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .packages-section {
        padding: 3rem 0; /* Reduced from 6rem */
    }

    .packages-section .section-title {
        font-size: 2rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem; /* Reduced from 3rem */
    }

    .package-card:hover {
        transform: translateY(-8px) scale(1.02); /* Reduced transform */
    }

    .package-image {
        height: 400px; /* Reduced from 280px */
    }

    .overlay-content i {
        font-size: 2rem;
    }

    .overlay-content h3 {
        font-size: 1.2rem;
    }

    .price-amount {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .packages-section .section-title {
        font-size: 1.8rem;
    }

    .packages-section .section-description {
        font-size: 1rem;
    }

    .package-content {
        padding: 1.2rem;
    }

    .package-header h3 {
        font-size: 1.3rem;
    }

    .price-amount {
        font-size: 1.5rem;
    }

    .package-image {
        height: 400px;
    }
}


/* ===== ENHANCED ABOUT SECTION ===== */
.about-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FFF8F3 0%, #FFFFFF 50%, #FFF0E6 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Background Decorations */
.about-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    animation: floatAnimation 6s ease-in-out infinite;
}

.element-1 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(255, 138, 101, 0.1));
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.element-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(255, 138, 101, 0.08), rgba(255, 202, 176, 0.08));
    top: 60%;
    right: 10%;
    animation-delay: -2s;
}

.element-3 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 202, 176, 0.12), rgba(255, 107, 157, 0.08));
    top: 30%;
    right: 20%;
    animation-delay: -4s;
}

.element-4 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.06), rgba(255, 138, 101, 0.06));
    bottom: 20%;
    left: 15%;
    animation-delay: -1s;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Enhanced Section Header */
.section-header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
}

.section-number-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.section-number {
    font-size: 4rem;
    font-weight: 900;
    font-family: var(--primary-font);
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    position: relative;
}

.section-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: blur(10px);
    z-index: -1;
    animation: numberGlow 3s ease-in-out infinite;
}

@keyframes numberGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.number-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, #FF6B9D, transparent);
    margin-top: 1rem;
    animation: lineGrow 2s ease-out;
}

@keyframes lineGrow {
    from { height: 0; }
    to { height: 60px; }
}

.header-content {
    flex: 1;
}

.section-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--primary-font);
    font-size: 3rem;
    font-weight: 800;
    color: var(--deep-coffee-brown);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.title-decoration {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.decoration-line {
    height: 2px;
    width: 40px;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    border-radius: 1px;
}

.decoration-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* Enhanced Description Block */
.about-description-block {
    margin-bottom: 3rem;
}

.about-intro-title {
    font-family: var(--primary-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--deep-coffee-brown);
    margin-bottom: 1.5rem;
    position: relative;
}

.about-intro-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    border-radius: 2px;
}

.description-content {
    margin-bottom: 2rem;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about-description .highlight {
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.about-description em {
    font-style: italic;
    color: var(--coral-glow);
    font-weight: 500;
}

/* Achievement Badges */
.achievement-badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 107, 157, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.1), transparent);
    transition: left 0.6s ease;
}

.badge:hover::before {
    left: 100%;
}

.badge:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 107, 157, 0.4);
    box-shadow: 0 10px 25px rgba(255, 107, 157, 0.2);
}

.badge i {
    color: var(--coral-glow);
    font-size: 1rem;
}

.badge span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    white-space: nowrap;
}

/* Enhanced Skills Section */
.about-skills {
    margin-bottom: 3rem;
}

.skills-title {
    font-family: var(--primary-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-coffee-brown);
    margin-bottom: 2rem;
    position: relative;
}

.skills-title::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
}

.skills-grid {
    display: grid;
    gap: 1.5rem;
}

.skill-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 202, 176, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.skill-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05), rgba(255, 138, 101, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.skill-item:hover::before {
    opacity: 1;
}

.skill-item:hover {
    transform: translateX(10px);
    border-color: rgba(255, 107, 157, 0.3);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.15);
}

.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.skill-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.skill-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-coffee-brown);
}

.skill-percent {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--coral-glow);
    font-family: var(--primary-font);
}

.skill-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.3);
    transition: transform 0.4s ease;
}

.skill-item:hover .skill-icon {
    transform: scale(1.1) rotate(10deg);
}

.skill-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 202, 176, 0.3);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    border-radius: 10px;
    width: 0;
    transition: width 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.skill-progress.animate {
    animation: skillFillUp 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.skill-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), transparent);
    animation: skillGlow 2s ease-in-out infinite;
}

@keyframes skillGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Enhanced Signature Block */
.about-signature-block {
    margin-top: 3rem;
}

.signature-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 202, 176, 0.3);
    position: relative;
    overflow: hidden;
}

.signature-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.1), transparent);
    animation: signatureShine 3s ease-in-out infinite;
}

@keyframes signatureShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.signature-image {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 107, 157, 0.3);
}

.signature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.signature-content:hover .signature-image img {
    transform: scale(1.1);
}

.signature-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #FF6B9D, #FF8A65, #FFCAB0);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: rotateGlow 4s linear infinite;
}

.signature-content:hover .signature-glow {
    opacity: 0.6;
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.signature-text {
    flex: 1;
    position: relative;
    z-index: 1;
}

.signature-name {
    font-family: var(--primary-font);
    font-size: 2rem;
    font-weight: 800;
    color: var(--deep-coffee-brown);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #2C1810 0%, #8B4513 50%, #2C1810 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.signature-title {
    font-size: 1.1rem;
    color: var(--coral-glow);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
}

.signature-quote {
    font-style: italic;
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 300;
    position: relative;
    padding-left: 1.5rem;
}

.signature-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 2rem;
    color: var(--coral-glow);
    font-family: serif;
}

/* Enhanced Visual Section */
.about-visual-section {
    position: relative;
}

.visual-main {
    position: relative;
    margin-bottom: 3rem;
}

.main-image-wrapper {
    position: relative;
    display: inline-block;
}

.main-image {
    width: 100%;
    max-width: 500px;
    height: 600px;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 15px 30px rgba(255, 107, 157, 0.1);
    transition: all 0.4s ease;
}

.main-image:hover {
    transform: translateY(-10px);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.2),
        0 20px 40px rgba(255, 107, 157, 0.15);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.main-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.main-image:hover .image-overlay {
    opacity: 1;
}

.play-button {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.play-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
}

.play-button:hover .play-icon {
    transform: scale(1.1);
}

.play-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 107, 157, 0.6);
    border-radius: 50%;
    animation: rippleEffect 2s ease-out infinite;
}

@keyframes rippleEffect {
    0% {
        width: 80px;
        height: 80px;
        opacity: 1;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

.play-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.image-frame {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid transparent;
    background: linear-gradient(135deg, #FF6B9D, #FF8A65, #FFCAB0) border-box;
    border-radius: 35px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: frameRotate 10s linear infinite;
}

.main-image:hover .image-frame {
    opacity: 0.6;
}

@keyframes frameRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Enhanced Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 10px 20px rgba(255, 107, 157, 0.1);
    border: 2px solid rgba(255, 202, 176, 0.3);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    overflow: hidden;
}

.floating-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05), rgba(255, 138, 101, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.floating-card:hover::before {
    opacity: 1;
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 15px 30px rgba(255, 107, 157, 0.2);
    border-color: rgba(255, 107, 157, 0.4);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(255, 138, 101, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.floating-card:hover .card-background {
    opacity: 1;
}

.experience-card {
    top: 20%;
    right: -10%;
    animation: floatCard1 6s ease-in-out infinite;
}

.clients-card {
    bottom: 30%;
    left: -15%;
    animation: floatCard2 6s ease-in-out infinite -2s;
}

.awards-card {
    top: 60%;
    right: -5%;
    animation: floatCard3 6s ease-in-out infinite -4s;
}

@keyframes floatCard1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes floatCard2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(20px) rotate(-2deg); }
}

@keyframes floatCard3 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 10px 25px rgba(255, 107, 157, 0.3);
    transition: transform 0.4s ease;
    position: relative;
    z-index: 2;
}

.floating-card:hover .card-icon {
    transform: scale(1.2) rotate(10deg);
}

.card-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.card-number {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--primary-font);
    color: var(--deep-coffee-brown);
    display: inline-block;
    background: linear-gradient(135deg, #2C1810 0%, #8B4513 50%, #2C1810 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.plus-sign {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--coral-glow);
    margin-left: 0.2rem;
}

.card-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.card-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--coral-glow);
    border-radius: 50%;
    animation: particleFloat 4s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: -1s;
}

.particle:nth-child(3) {
    bottom: 30%;
    left: 70%;
    animation-delay: -2s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0;
    }
    50% {
        transform: translateY(-20px);
        opacity: 1;
    }
}

/* Enhanced Visual Grid */
.visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.grid-item {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.grid-item:hover img {
    transform: scale(1.1);
}

.grid-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.grid-item:hover .grid-overlay {
    transform: translateY(0);
}

.grid-label {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .main-image {
        height: 600px;
    }

    .floating-card {
        position: relative;
        margin: 1rem 0;
    }

    .experience-card,
    .clients-card,
    .awards-card {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 4rem 0;
    }

    .section-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .section-number {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .achievement-badges {
        flex-direction: column;
        gap: 1rem;
    }

    .signature-content {
        flex-direction: column;
        text-align: center;
    }

    .visual-grid {
        grid-template-columns: 1fr;
    }

    .main-image {
        height: 600px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .about-intro-title {
        font-size: 1.5rem;
    }

    .main-image {
        height: 450px;
    }

    .floating-card {
        padding: 1rem;
    }

    .card-number {
        font-size: 2rem;
    }

    .play-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}
/* ===== FIXED COMPACT PORTFOLIO SECTION ===== */
.portfolio-section-compact {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8F3 50%, #FFF0E6 100%);
    position: relative;
    overflow: hidden;
}

/* Compact Section Header */
.section-header-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.section-header-compact .section-number {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--primary-font);
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.section-header-compact .header-content {
    text-align: left;
}

.section-header-compact .section-subtitle {
    display: block;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-header-compact .section-title {
    font-family: var(--primary-font);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--deep-coffee-brown);
    line-height: 1.2;
    margin: 0;
}

/* Fixed Portfolio Grid */
.portfolio-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.portfolio-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(255, 107, 157, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    background: white;
    height: 300px; /* Fixed height */
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 25px rgba(255, 107, 157, 0.2);
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-card:hover .card-image img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.3);
    transition: transform 0.4s ease;
    z-index: 3; /* Above overlay */
}

.portfolio-card:hover .card-badge {
    transform: scale(1.1) rotate(10deg);
}

/* Fixed Overlay */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(255, 107, 157, 0.4) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 2; /* Above image, below badge */
}

/* Key Fix: Show overlay on hover */
.portfolio-card:hover .card-overlay {
    opacity: 1;
    visibility: visible;
}

.overlay-content {
    text-align: center;
    color: white;
    padding: 2rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.portfolio-card:hover .overlay-content {
    transform: translateY(0);
}

.card-title {
    font-family: var(--primary-font);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.card-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    opacity: 0.95;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}


.card-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--coral-glow);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.card-btn i {
    transition: transform 0.3s ease;
}

.card-btn:hover i {
    transform: translateX(5px);
}


/* Unique Badge Colors */
.portfolio-card:nth-child(1) .card-badge {
    background: linear-gradient(135deg, #FF6B9D 0%, #FFB6C1 100%);
}

.portfolio-card:nth-child(2) .card-badge {
    background: linear-gradient(135deg, #FF8A65 0%, #FFB347 100%);
}

.portfolio-card:nth-child(3) .card-badge {
    background: linear-gradient(135deg, #FFCAB0 0%, #DDA0DD 100%);
}

/* Compact Stats */
.portfolio-stats-compact {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 2px solid rgba(255, 202, 176, 0.3);
}

.portfolio-stats-compact .stat-item {
    text-align: center;
    padding: 1rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 202, 176, 0.2);
    transition: all 0.3s ease;
    min-width: 120px;
}

.portfolio-stats-compact .stat-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 107, 157, 0.3);
    box-shadow: 0 10px 25px rgba(255, 107, 157, 0.2);
}

.portfolio-stats-compact .stat-number {
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--primary-font);
    color: var(--deep-coffee-brown);
    display: inline-block;
}

.portfolio-stats-compact .plus,
.portfolio-stats-compact .star {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--coral-glow);
    margin-left: 0.2rem;
}

.portfolio-stats-compact .stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.3rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .portfolio-section-compact {
        padding: 3rem 0;
    }

    .section-header-compact {
        flex-direction: column;
        gap: 1rem;
    }

    .section-header-compact .header-content {
        text-align: center;
    }

    .section-header-compact .section-title {
        font-size: 2rem;
    }

    .portfolio-grid-compact {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-card {
        height: 280px;
    }

    .card-title {
        font-size: 1.6rem;
    }

    .card-description {
        font-size: 0.95rem;
    }

    .portfolio-stats-compact {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .portfolio-stats-compact .stat-item {
        min-width: 100px;
    }
}

@media (max-width: 480px) {
    .section-header-compact .section-number {
        font-size: 2.5rem;
    }

    .section-header-compact .section-title {
        font-size: 1.8rem;
    }

    .portfolio-card {
        height: 250px;
    }

    .card-title {
        font-size: 1.4rem;
    }

    .card-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .overlay-content {
        padding: 1.5rem;
    }

    .card-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Alternative: Always show text on mobile */
@media (max-width: 768px) {
    .card-overlay {
        opacity: 1;
        visibility: visible;
        background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(255, 107, 157, 0.3) 100%
        );
    }
}

/* ===== TESTIMONIALS SLIDER STYLES ===== */
.testimonials-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 2rem;
    padding: 1rem;
}

/* ===== SMALLER TESTIMONIAL CARDS ===== */
.testimonial-card {
    min-width: 350px; /* Smaller width */
    max-width: 350px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 243, 0.9));
    backdrop-filter: blur(20px);
    border-radius: 20px; /* Smaller border radius */
    padding: 1.5rem; /* Reduced padding */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 202, 176, 0.2);
    position: relative;
    transition: all var(--transition-normal);
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(255, 107, 157, 0.2);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--rose-gold-gradient);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.testimonial-card:hover::before {
    opacity: 0.05;
}

/* ===== COMPACT QUOTE ICON ===== */
.quote-icon {
    position: absolute;
    top: -10px;
    right: 20px;
    width: 40px; /* Smaller */
    height: 40px;
    background: var(--sunset-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem; /* Smaller font */
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

/* ===== COMPACT RATING ===== */
.testimonial-rating {
    margin-bottom: 1rem; /* Reduced margin */
}

.testimonial-rating .stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 0.3rem;
}

.testimonial-rating .stars i {
    color: #FFD700;
    font-size: 0.9rem; /* Smaller stars */
}

/* ===== COMPACT CONTENT ===== */
.testimonial-content {
    margin-bottom: 1.5rem; /* Reduced margin */
}

.testimonial-title {
    font-size: 1.1rem; /* Smaller title */
    font-weight: 600;
    color: var(--deep-coffee-brown);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem; /* Smaller text */
    text-align: left;
}

/* ===== COMPACT AUTHOR SECTION ===== */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem; /* Reduced gap */
}

.author-image {
    position: relative;
    width: 50px; /* Smaller image */
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--rose-gold-gradient);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.8;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1rem; /* Smaller name */
    font-weight: 600;
    color: var(--deep-coffee-brown);
    margin-bottom: 0.3rem;
}

.author-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(255, 138, 101, 0.1));
    color: var(--coral-glow);
    padding: 0.3rem 0.8rem; /* Smaller padding */
    border-radius: 15px;
    font-size: 0.75rem; /* Smaller font */
    font-weight: 500;
    border: 1px solid rgba(255, 107, 157, 0.2);
}

.author-badge i {
    font-size: 0.7rem;
}

/* ===== SLIDER CONTROLS ===== */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--sunset-gradient);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 10px 25px rgba(255, 107, 157, 0.3);
}

.slider-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 157, 0.4);
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* ===== SLIDER DOTS ===== */
.slider-dots {
    display: flex;
    gap: 0.8rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 107, 157, 0.3);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.dot.active {
    background: var(--coral-glow);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--coral-glow);
    transform: scale(1.1);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .testimonial-card {
        min-width: 320px;
        max-width: 320px;
    }

    .testimonials-slider {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 280px;
        max-width: 280px;
        padding: 1.2rem;
    }

    .testimonials-slider {
        gap: 1rem;
        padding: 0.5rem;
    }

    .slider-controls {
        gap: 1rem;
        margin-top: 2rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        min-width: 260px;
        max-width: 260px;
        padding: 1rem;
    }

    .testimonial-title {
        font-size: 1rem;
    }

    .testimonial-text {
        font-size: 0.85rem;
    }

    .author-image {
        width: 40px;
        height: 40px;
    }

    .author-name {
        font-size: 0.9rem;
    }
}

/* ===== ENHANCED CONTACT SECTION ===== */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8F3 50%, #FFF0E6 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Background Elements */
.contact-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-heart {
    position: absolute;
    font-size: 2rem;
    animation: floatHeart 8s ease-in-out infinite;
}

.heart-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.heart-2 {
    bottom: 30%;
    right: 15%;
    animation-delay: -4s;
}

.floating-makeup {
    position: absolute;
    font-size: 1.5rem;
    animation: floatMakeup 6s ease-in-out infinite;
}

.makeup-1 {
    top: 60%;
    left: 5%;
    animation-delay: -2s;
}

.makeup-2 {
    top: 15%;
    right: 10%;
    animation-delay: -3s;
}

.floating-circle {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(255, 138, 101, 0.1));
    animation: floatCircle 10s ease-in-out infinite;
}

.circle-1 {
    top: 10%;
    right: 20%;
    animation-delay: 0s;
}

.circle-2 {
    bottom: 20%;
    left: 15%;
    animation-delay: -5s;
}

@keyframes floatHeart {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-20px) rotate(10deg); opacity: 0.7; }
}

@keyframes floatMakeup {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.4; }
    50% { transform: translateY(-15px) scale(1.1); opacity: 0.8; }
}

@keyframes floatCircle {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

/* Contact Content Layout */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Contact Info Section */
.contact-info-section {
    position: sticky;
    top: 2rem;
}

.section-header-contact {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.section-header-contact .section-number-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.section-header-contact .section-number {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: var(--primary-font);
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.section-header-contact .number-line {
    width: 3px;
    height: 60px;
    background: linear-gradient(to bottom, #FF6B9D, transparent);
    margin-top: 1rem;
}

.section-header-contact .header-content {
    flex: 1;
}

.section-header-contact .section-subtitle {
    display: block;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-header-contact .section-title {
    font-family: var(--primary-font);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--deep-coffee-brown);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.section-header-contact .section-highlight {
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.section-header-contact .title-decoration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-header-contact .decoration-line {
    height: 2px;
    width: 30px;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    border-radius: 1px;
}

.section-header-contact .decoration-heart {
    font-size: 1.2rem;
    animation: heartBeat 2s ease-in-out infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.contact-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Quick Contact Grid */
.quick-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}

.quick-contact-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 2px solid rgba(255, 202, 176, 0.3);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.quick-contact-card:hover {
    transform: translateX(10px);
    border-color: rgba(255, 107, 157, 0.4);
    box-shadow: 0 15px 30px rgba(255, 107, 157, 0.2);
}

.quick-contact-card .card-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    position: relative;
    z-index: 2;
}

.whatsapp-card .card-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.call-card .card-icon {
    background: linear-gradient(135deg, #FF6B9D, #FF8A65);
}

.email-card .card-icon {
    background: linear-gradient(135deg, #4285F4, #34A853);
}

.quick-contact-card .card-content {
    flex: 1;
}

.quick-contact-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--deep-coffee-brown);
    margin-bottom: 0.3rem;
}

.quick-contact-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.quick-contact-card .card-action {
    font-size: 0.8rem;
    color: var(--coral-glow);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.quick-contact-card:hover .card-glow {
    left: 100%;
}

/* Enhanced Contact Details */
.contact-details-enhanced {
    margin-bottom: 3rem;
}

.contact-item-enhanced {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 202, 176, 0.3);
    transition: all 0.4s ease;
}

.contact-item-enhanced:hover {
    border-color: rgba(255, 107, 157, 0.4);
    box-shadow: 0 10px 25px rgba(255, 107, 157, 0.15);
}

.contact-item-enhanced {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon-enhanced {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.3);
}

.contact-content-enhanced {
    flex: 1;
}

.contact-content-enhanced h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--deep-coffee-brown);
    margin-bottom: 0.8rem;
}

.contact-content-enhanced p {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.location-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.location-btn {
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    color: white;
    border: none;
    padding: 0.7rem 1.2rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.location-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.4);
}

.hours-list {
    margin-bottom: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 202, 176, 0.2);
}

.hours-row:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: var(--text-light);
}

.time {
    color: var(--deep-coffee-brown);
    font-weight: 500;
}

.availability-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.availability-status.online {
    background: rgba(34, 197, 94, 0.1);
    color: #16A34A;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #16A34A;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Enhanced Social Section */
.social-section-enhanced {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 2rem;
    border: 2px solid rgba(255, 202, 176, 0.3);
}

.social-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--deep-coffee-brown);
    margin-bottom: 1.5rem;
    text-align: center;
}

.social-links-enhanced {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link-enhanced {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 202, 176, 0.2);
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.social-link-enhanced:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.social-link-enhanced.instagram:hover {
    border-color: #E4405F;
    box-shadow: 0 8px 20px rgba(228, 64, 95, 0.3);
}

.social-link-enhanced.facebook:hover {
    border-color: #1877F2;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
}

.social-link-enhanced.youtube:hover {
    border-color: #FF0000;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}

.social-link-enhanced .social-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
}

.social-link-enhanced.instagram .social-icon {
    background: linear-gradient(135deg, #E4405F, #FCAF45);
}

.social-link-enhanced.facebook .social-icon {
    background: linear-gradient(135deg, #1877F2, #42A5F5);
}

.social-link-enhanced.youtube .social-icon {
    background: linear-gradient(135deg, #FF0000, #FF4500);
}

.social-link-enhanced .social-content {
    flex: 1;
    text-align: left;
}

.social-name {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--deep-coffee-brown);
    margin-bottom: 0.2rem;
}

.social-handle {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.2rem;
}

.follower-count {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Enhanced Contact Form */
.contact-form-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    border-radius: 30px;
    padding: 3rem;
    border: 3px solid rgba(255, 202, 176, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05), rgba(255, 138, 101, 0.05));
    z-index: 1;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.form-title {
    font-family: var(--primary-font);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--deep-coffee-brown);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #2C1810 0%, #8B4513 50%, #2C1810 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 300;
}

.response-time {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34, 197, 94, 0.1);
    color: #16A34A;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

/* Form Progress */
.form-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 202, 176, 0.3);
    border-radius: 2px;
    overflow: hidden;
    margin-right: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    border-radius: 2px;
    transition: width 0.6s ease;
    width: 25%;
}

.progress-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    white-space: nowrap;
}

/* Form Steps */
.contact-form-enhanced {
    position: relative;
    z-index: 2;
}

.form-step {
    display: none;
    animation: fadeInUp 0.6s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--deep-coffee-brown);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--deep-coffee-brown);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 1rem;
    color: var(--coral-glow);
    font-size: 1rem;
    z-index: 2;
}

.input-wrapper input,
.input-wrapper select {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid rgba(255, 202, 176, 0.3);
    border-radius: 15px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    color: var(--text-light);
}

.input-wrapper input:focus,
.input-wrapper select:focus {
    outline: none;
    border-color: var(--coral-glow);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.2);
    transform: translateY(-2px);
}

.textarea-wrapper {
    position: relative;
    display: flex;
}

.textarea-wrapper i {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: var(--coral-glow);
    font-size: 1rem;
    z-index: 2;
}

.textarea-wrapper textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid rgba(255, 202, 176, 0.3);
    border-radius: 15px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    color: var(--text-light);
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.textarea-wrapper textarea:focus {
    outline: none;
    border-color: var(--coral-glow);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.2);
    transform: translateY(-2px);
}

/* Service Selection */
.service-selection {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-option {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 202, 176, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-option:hover {
    border-color: rgba(255, 107, 157, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 157, 0.2);
}

.service-option.selected {
    border-color: var(--coral-glow);
    background: rgba(255, 107, 157, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 157, 0.3);
}

.service-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.service-option:hover::before {
    left: 100%;
}

.service-option .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 25px rgba(255, 107, 157, 0.3);
    transition: transform 0.4s ease;
}

.service-option:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
}

.service-option h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--deep-coffee-brown);
    margin-bottom: 0.5rem;
}

.service-option p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.service-price {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--coral-glow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-top: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--coral-glow);
    cursor: pointer;
}

.checkbox-group label {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
    cursor: pointer;
    margin-bottom: 0;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.nav-btn {
    background: transparent;
    color: var(--deep-coffee-brown);
    border: 2px solid rgba(255, 202, 176, 0.5);
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-btn:hover {
    border-color: var(--coral-glow);
    background: rgba(255, 107, 157, 0.1);
    transform: translateY(-2px);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.nav-btn:disabled:hover {
    border-color: rgba(255, 202, 176, 0.5);
    background: transparent;
    transform: none;
}
.submit-btn-enhanced {
    width: 100%;
    background: var(--sunset-gradient);
    color: black;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-family: var(--primary-font);
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: var(--transition-bounce);
    box-shadow: var(--glow-shadow);
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.submit-btn-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.submit-btn-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: var(--hover-shadow);
    background: linear-gradient(135deg, #FF8A65 0%, #FF6B9D 100%);
}

.submit-btn-enhanced:hover::before {
    opacity: 1;
}

.submit-btn-enhanced:active {
    transform: translateY(-1px);
}

.submit-btn-enhanced:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.submit-btn-enhanced:disabled:hover {
    transform: none;
    box-shadow: var(--glow-shadow);
}

.submit-btn-enhanced span {
    position: relative;
    z-index: 2;
}

.submit-btn-enhanced i {
    position: relative;
    z-index: 2;
    font-size: 1rem;
    transition: transform var(--transition-normal);
}

.submit-btn-enhanced:hover i {
    transform: translateX(3px);
}

/* Loading State */
.submit-btn-enhanced .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .submit-btn-enhanced {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
}



/* Form Success */
.form-success {
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
    z-index: 2;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #16A34A, #22C55E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.3);
    animation: successPop 0.6s ease;
}

@keyframes successPop {
    0% { transform: scale(0); }
    80% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.form-success h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--deep-coffee-brown);
    margin-bottom: 1rem;
}

.form-success p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.success-btn {
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
}

.success-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.4);
}

/* Emergency Contact */
.emergency-contact {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.emergency-btn {
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(255, 107, 157, 0.4);
    animation: emergencyPulse 3s ease-in-out infinite;
}

@keyframes emergencyPulse {
    0%, 100% { box-shadow: 0 10px 25px rgba(255, 107, 157, 0.4); }
    50% { box-shadow: 0 15px 35px rgba(255, 107, 157, 0.6); }
}

.emergency-btn:hover {
    transform: translateY(-3px) scale(1.05);
}

.emergency-popup {
    position: absolute;
    bottom: 100%;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem;
    border: 2px solid rgba(255, 202, 176, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    min-width: 250px;
}

.emergency-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.emergency-popup h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--deep-coffee-brown);
    margin-bottom: 1rem;
    text-align: center;
}

.emergency-options {
    display: flex;
    gap: 0.8rem;
}

.emergency-option {
    flex: 1;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 202, 176, 0.3);
    border-radius: 15px;
    padding: 1rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.emergency-option:hover {
    border-color: rgba(255, 107, 157, 0.4);
    transform: translateY(-2px);
}

.emergency-option.call {
    color: var(--coral-glow);
}

.emergency-option.whatsapp {
    color: #25D366;
}

.emergency-option i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.emergency-option span {
    font-size: 0.85rem;
    font-weight: 600;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info-section {
        position: static;
    }

    .section-header-contact .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 0;
    }

    .section-header-contact {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .contact-form-section {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-selection {
        grid-template-columns: 1fr;
    }

    .form-navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-btn,
    .submit-btn-enhanced {
        width: 100%;
        justify-content: center;
    }

    .social-links-enhanced {
        grid-template-columns: 1fr;
    }

    .emergency-contact {
        bottom: 1rem;
        right: 1rem;
    }

    .emergency-btn span {
        display: none;
    }
}

@media (max-width: 480px) {
    .section-header-contact .section-title {
        font-size: 1.8rem;
    }

    .contact-form-section {
        padding: 1.5rem;
        border-radius: 25px;
    }

    .form-title {
        font-size: 1.8rem;
    }

    .step-title {
        font-size: 1.2rem;
    }

    .service-option {
        padding: 1rem;
    }

    .service-option .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}


/* ===== FOLLOW ME ON SOCIAL MEDIA SECTION ===== */
.social-media-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FFF0E6 0%, #FFFFFF 50%, #FFF8F3 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Background Elements */
.social-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-icon {
    position: absolute;
    font-size: 2.5rem;
    animation: floatIcon 8s ease-in-out infinite;
}

.icon-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.icon-2 {
    top: 70%;
    right: 10%;
    animation-delay: -3s;
}

.icon-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: -6s;
}

.floating-heart {
    position: absolute;
    font-size: 1.8rem;
    animation: floatHeart 6s ease-in-out infinite;
}

.heart-1 {
    top: 40%;
    right: 20%;
    animation-delay: -2s;
}

.heart-2 {
    bottom: 40%;
    left: 25%;
    animation-delay: -4s;
}

.gradient-circle {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    animation: floatCircle 12s ease-in-out infinite;
}

.circle-1 {
    top: 10%;
    right: 15%;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(255, 138, 101, 0.1));
    animation-delay: 0s;
}

.circle-2 {
    bottom: 15%;
    left: 10%;
    background: linear-gradient(135deg, rgba(66, 165, 245, 0.1), rgba(34, 197, 94, 0.1));
    animation-delay: -6s;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.4; }
    50% { transform: translateY(-25px) rotate(10deg); opacity: 0.8; }
}

@keyframes floatHeart {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.3; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 0.7; }
}

@keyframes floatCircle {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

/* Social Content */
.social-content {
    position: relative;
    z-index: 1;
}

/* Section Header */
.section-header-social {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header-social .section-number-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.section-header-social .section-number {
    font-size: 4rem;
    font-weight: 900;
    font-family: var(--primary-font);
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    position: relative;
}

.section-header-social .section-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: blur(20px);
    z-index: -1;
    animation: numberGlow 3s ease-in-out infinite;
}

@keyframes numberGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.section-header-social .number-line {
    width: 3px;
    height: 80px;
    background: linear-gradient(to bottom, #FF6B9D, transparent);
    margin-top: 1rem;
}

.section-header-social .header-content {
    flex: 1;
    text-align: center;
}

.section-header-social .section-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-header-social .section-title {
    font-family: var(--primary-font);
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--deep-coffee-brown);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #2C1810 0%, #8B4513 50%, #2C1810 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header-social .section-description {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    font-weight: 300;
}

.section-header-social .title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-header-social .decoration-line {
    height: 2px;
    width: 50px;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    border-radius: 1px;
}

.section-header-social .decoration-heart {
    font-size: 1.5rem;
    animation: heartPulse 2s ease-in-out infinite;
}

@keyframes heartPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* Social Cards Grid */
.social-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.social-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    border-radius: 30px;
    padding: 3rem 2.5rem;
    border: 3px solid rgba(255, 202, 176, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.6s ease;
    cursor: pointer;
    text-align: center;
}

.social-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.15);
}

.social-card.instagram-card:hover {
    border-color: rgba(228, 64, 95, 0.5);
    box-shadow: 0 35px 70px rgba(228, 64, 95, 0.2);
}

.social-card.facebook-card:hover {
    border-color: rgba(24, 119, 242, 0.5);
    box-shadow: 0 35px 70px rgba(24, 119, 242, 0.2);
}

.social-card.google-card:hover {
    border-color: rgba(66, 133, 244, 0.5);
    box-shadow: 0 35px 70px rgba(66, 133, 244, 0.2);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 248, 243, 0.1));
    z-index: 1;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 2;
}

.instagram-glow {
    background: radial-gradient(circle, rgba(228, 64, 95, 0.15) 0%, transparent 70%);
}

.facebook-glow {
    background: radial-gradient(circle, rgba(24, 119, 242, 0.15) 0%, transparent 70%);
}

.google-glow {
    background: radial-gradient(circle, rgba(66, 133, 244, 0.15) 0%, transparent 70%);
}

.social-card:hover .card-glow {
    opacity: 1;
}

/* Social Icon */
.social-icon-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    z-index: 3;
}

.social-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    position: relative;
    z-index: 3;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
}

.instagram-icon {
    background: linear-gradient(135deg, #E4405F 0%, #FCAF45 100%);
}

.facebook-icon {
    background: linear-gradient(135deg, #1877F2 0%, #42A5F5 100%);
}

.google-icon {
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
}

.social-card:hover .social-icon {
    transform: scale(1.1) rotate(-5deg);
}

.icon-pulse {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    opacity: 0;
    animation: iconPulse 3s ease-in-out infinite;
}

.instagram-pulse {
    background: linear-gradient(135deg, #E4405F 0%, #FCAF45 100%);
}

.facebook-pulse {
    background: linear-gradient(135deg, #1877F2 0%, #42A5F5 100%);
}

.google-pulse {
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); opacity: 0; }
    50% { transform: scale(1.2); opacity: 0.3; }
}

/* Social Content */
.social-content-card {
    position: relative;
    z-index: 3;
    margin-bottom: 2rem;
}

.social-platform {
    font-family: var(--primary-font);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--deep-coffee-brown);
    margin-bottom: 0.5rem;
}

.social-handle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.social-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 202, 176, 0.3);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    font-family: var(--primary-font);
    color: var(--deep-coffee-brown);
    display: inline-block;
}

.stat-k, .stat-plus, .stat-percent {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--coral-glow);
    margin-left: 0.2rem;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.3rem;
}

.social-description {
    margin-bottom: 1.5rem;
}

.social-description p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 400;
}

.social-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 202, 176, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-tag i {
    color: var(--coral-glow);
}

/* Social Follow Buttons */
.social-follow-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 3;
    overflow: hidden;
}

.instagram-btn {
    background: linear-gradient(135deg, #E4405F 0%, #FCAF45 100%);
    color: white;
    box-shadow: 0 12px 30px rgba(228, 64, 95, 0.3);
}

.facebook-btn {
    background: linear-gradient(135deg, #1877F2 0%, #42A5F5 100%);
    color: white;
    box-shadow: 0 12px 30px rgba(24, 119, 242, 0.3);
}

.google-btn {
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
    color: white;
    box-shadow: 0 12px 30px rgba(66, 133, 244, 0.3);
}

.social-follow-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
}

.social-follow-btn:hover::before {
    left: 100%;
}

.social-follow-btn:hover {
    transform: translateY(-3px) scale(1.02);
}

.instagram-btn:hover {
    box-shadow: 0 18px 40px rgba(228, 64, 95, 0.4);
    background: linear-gradient(135deg, #FCAF45 0%, #E4405F 100%);
}

.facebook-btn:hover {
    box-shadow: 0 18px 40px rgba(24, 119, 242, 0.4);
    background: linear-gradient(135deg, #42A5F5 0%, #1877F2 100%);
}

.google-btn:hover {
    box-shadow: 0 18px 40px rgba(66, 133, 244, 0.4);
    background: linear-gradient(135deg, #34A853 0%, #4285F4 100%);
}

.social-follow-btn i {
    transition: transform 0.4s ease;
}

.social-follow-btn:hover i {
    transform: scale(1.2) rotate(10deg);
}

/* Card Patterns */
.card-pattern {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.1;
}

.instagram-pattern {
    background: linear-gradient(135deg, #E4405F, #FCAF45);
}

.facebook-pattern {
    background: linear-gradient(135deg, #1877F2, #42A5F5);
}

.google-pattern {
    background: linear-gradient(135deg, #4285F4, #34A853);
}

/* Social CTA Section */
.social-cta-section {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 2px solid rgba(255, 202, 176, 0.3);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.social-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05), rgba(255, 138, 101, 0.05));
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--primary-font);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--deep-coffee-brown);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2C1810 0%, #8B4513 50%, #2C1810 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 202, 176, 0.3);
    transition: all 0.4s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 107, 157, 0.4);
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.2);
}

.benefit-item i {
    color: var(--coral-glow);
    font-size: 1.2rem;
}

.benefit-item span {
    font-weight: 600;
    color: var(--deep-coffee-brown);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1.3rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    position: relative;
    overflow: hidden;
}

.primary-cta {
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    color: white;
    box-shadow: 0 12px 30px rgba(255, 107, 157, 0.3);
}

.secondary-cta {
    background: transparent;
    color: var(--deep-coffee-brown);
    border: 2px solid var(--coral-glow);
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.8s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
}

.primary-cta:hover {
    box-shadow: 0 18px 40px rgba(255, 107, 157, 0.4);
    background: linear-gradient(135deg, #FF8A65 0%, #FF6B9D 100%);
}

.secondary-cta:hover {
    background: var(--coral-glow);
    color: white;
    box-shadow: 0 12px 30px rgba(255, 107, 157, 0.3);
}

.cta-btn i {
    transition: transform 0.4s ease;
}

.cta-btn:hover i {
    transform: translateX(5px);
}

/* Social Proof Banner */
.social-proof-banner {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 243, 0.9));
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2.5rem;
    border: 2px solid rgba(255, 202, 176, 0.3);
    position: relative;
    overflow: hidden;
}

.social-proof-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.03), rgba(255, 138, 101, 0.03));
    z-index: 1;
}

.proof-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.proof-stats {
    display: flex;
    gap: 3rem;
}

.proof-item {
    text-align: center;
}

.proof-number {
    font-size: 2.2rem;
    font-weight: 900;
    font-family: var(--primary-font);
    color: var(--deep-coffee-brown);
    display: inline-block;
}

.proof-k, .proof-percent {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--coral-glow);
    margin-left: 0.2rem;
}

.proof-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== SIMPLIFIED FOOTER ===== */
.simple-footer {
    background: linear-gradient(135deg, #2C1810 0%, #1A0F0A 100%);
    color: #FFFFFF;
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

.simple-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 138, 101, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Newsletter Section */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 202, 176, 0.2);
    text-align: center;
    position: relative;
    z-index: 2;
}

.newsletter-title {
    font-family: var(--primary-font);
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFCAB0 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.8rem;
}

.newsletter-subtitle {
    font-size: 1.1rem;
    color: #CCCCCC;
    margin-bottom: 2rem;
    font-weight: 300;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.5rem;
    border: 1px solid rgba(255, 202, 176, 0.3);
    transition: all 0.3s ease;
}

.input-group:focus-within {
    border-color: var(--coral-glow);
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.input-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    color: white;
    font-size: 1rem;
    border-radius: 45px;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.input-group input:focus {
    outline: none;
}

.input-group button {
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 45px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.input-group button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.4);
}

/* Main Footer */
.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

/* Brand Section */
.footer-brand {
    max-width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.logo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--primary-font);
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
}

.brand-tagline {
    font-size: 0.9rem;
    color: var(--coral-glow);
    font-weight: 600;
    margin-top: 0.2rem;
}

.brand-description {
    font-size: 1rem;
    color: #CCCCCC;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 202, 176, 0.2);
}

.social-link:hover {
    transform: translateY(-2px);
    border-color: var(--coral-glow);
}

.social-link.instagram:hover {
    background: rgba(228, 64, 95, 0.2);
}

.social-link.facebook:hover {
    background: rgba(24, 119, 242, 0.2);
}

.social-link.youtube:hover {
    background: rgba(255, 0, 0, 0.2);
}

.social-link i {
    font-size: 1.1rem;
}

/* Footer Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.column-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--coral-glow);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 202, 176, 0.2);
}

.link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-list li {
    margin-bottom: 0.8rem;
}

.link-list a {
    color: #CCCCCC;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

.link-list a:hover {
    color: #FFFFFF;
    padding-left: 0.5rem;
    border-left: 2px solid var(--coral-glow);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: var(--coral-glow);
    font-size: 1.1rem;
    margin-top: 0.3rem;
    width: 20px;
    text-align: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-details a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--coral-glow);
}

.contact-details span {
    color: #AAAAAA;
    font-size: 0.85rem;
    font-weight: 400;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 202, 176, 0.2);
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
}

.copyright {
    font-size: 0.9rem;
    color: #CCCCCC;
    margin: 0;
}

.brand-highlight {
    color: var(--coral-glow);
    font-weight: 700;
}

.footer-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--coral-glow);
    font-family: var(--primary-font);
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #AAAAAA;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-policies {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.policy-link {
    color: #CCCCCC;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.policy-link:hover {
    color: var(--coral-glow);
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.5);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-links .footer-column:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .simple-footer {
        padding: 3rem 0 0;
    }

    .footer-newsletter {
        padding: 2rem 1.5rem;
        margin-bottom: 2.5rem;
    }

    .newsletter-title {
        font-size: 1.8rem;
    }

    .input-group {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .input-group button {
        justify-content: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links .footer-column:last-child {
        grid-column: span 1;
    }

    .social-links {
        flex-wrap: wrap;
    }

    .footer-bottom-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-stats {
        justify-content: center;
    }

    .footer-policies {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-newsletter {
        padding: 1.5rem 1rem;
    }

    .newsletter-title {
        font-size: 1.5rem;
    }

    .logo {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .logo-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .brand-name {
        font-size: 1.5rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-policies {
        flex-direction: column;
        gap: 1rem;
    }

    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 1rem;
        right: 1rem;
        font-size: 1rem;
    }
}

/* ===== ENHANCED NAVBAR ===== */
.enhanced-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 202, 176, 0.2);
    z-index: 1000;
    transition: all 0.4s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.enhanced-navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    position: relative;
}

/* Enhanced Logo */
.logo-enhanced {
    position: relative;
    z-index: 1001;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo-image {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    padding: 3px;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.logo-image:hover .logo-img {
    transform: scale(1.1);
}

.logo-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(8px);
}

.logo-link:hover .logo-glow {
    opacity: 0.6;
}

.logo-content {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--primary-font);
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2C1810 0%, #8B4513 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--coral-glow);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced Navigation Menu */
.nav-menu-enhanced {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.2rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link:hover {
    color: var(--coral-glow);
    background: rgba(255, 107, 157, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    color: white;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.nav-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--coral-glow);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover .nav-indicator {
    width: 80%;
}

.nav-link.active .nav-indicator {
    width: 0;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-arrow {
    margin-left: 0.5rem;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 202, 176, 0.2);
    padding: 0.8rem;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1002;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    text-decoration: none;
    color: var(--text-dark);
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.dropdown-link:hover {
    background: rgba(255, 107, 157, 0.1);
    color: var(--coral-glow);
    transform: translateX(5px);
}

.dropdown-link i {
    color: var(--coral-glow);
    font-size: 1rem;
}

/* Enhanced Navigation Actions */
.nav-actions-enhanced {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-social {
    display: flex;
    gap: 0.8rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 202, 176, 0.3);
}

.social-icon:hover {
    color: white;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.nav-contact {
    display: flex;
    align-items: center;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 202, 176, 0.3);
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--coral-glow);
    border-color: var(--coral-glow);
    background: rgba(255, 107, 157, 0.1);
}

.contact-link i {
    color: var(--coral-glow);
}

/* Enhanced Book Button */
.book-btn-enhanced {
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.book-btn-enhanced:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.book-btn-enhanced:hover .btn-glow {
    left: 100%;
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.menu-text {
    font-size: 0.7rem;
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8F3 100%);
    backdrop-filter: blur(20px);
    z-index: 1001;
    transition: all 0.4s ease;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Mobile Navigation Header */
.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 202, 176, 0.3);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-logo-img {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    object-fit: cover;
}

.mobile-logo-text {
    display: flex;
    flex-direction: column;
}

.mobile-brand {
    font-family: var(--primary-font);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--deep-coffee-brown);
    line-height: 1;
}

.mobile-tagline {
    font-size: 0.7rem;
    color: var(--coral-glow);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 107, 157, 0.1);
    border: 1px solid rgba(255, 107, 157, 0.3);
    color: var(--coral-glow);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-close:hover {
    background: var(--coral-glow);
    color: white;
    transform: rotate(90deg);
}

/* Mobile Menu Links */
.mobile-menu-links {
    flex: 1;
}

.mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 202, 176, 0.2);
    transition: all 0.3s ease;
}

.mobile-link:hover {
    color: var(--coral-glow);
    padding-left: 1rem;
}

.mobile-link.active {
    color: var(--coral-glow);
    background: rgba(255, 107, 157, 0.1);
    padding-left: 1rem;
    border-radius: 10px;
    border-bottom-color: transparent;
}

.mobile-link-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-link-content i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.link-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.mobile-link:hover .link-arrow {
    transform: translateX(5px);
}

/* Mobile Dropdown */
.mobile-dropdown {
    border-bottom: 1px solid rgba(255, 202, 176, 0.2);
}

.mobile-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-dropdown-trigger:hover {
    color: var(--coral-glow);
    padding-left: 1rem;
}

.dropdown-toggle {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .dropdown-toggle {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.mobile-dropdown.active .mobile-dropdown-content {
    max-height: 300px;
    padding: 1rem;
}

.mobile-sub-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.mobile-sub-link:hover {
    background: rgba(255, 107, 157, 0.1);
    color: var(--coral-glow);
    transform: translateX(5px);
}

.mobile-sub-link i {
    color: var(--coral-glow);
    font-size: 1rem;
}

/* Mobile Actions */
.mobile-nav-actions {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 202, 176, 0.3);
}

.mobile-book-btn {
    width: 100%;
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A65 100%);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.mobile-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

.mobile-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mobile-contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    border: 1px solid rgba(255, 202, 176, 0.3);
    transition: all 0.3s ease;
}

.mobile-contact-link:hover {
    background: rgba(255, 107, 157, 0.1);
    color: var(--coral-glow);
    border-color: var(--coral-glow);
}

.mobile-contact-link i {
    color: var(--coral-glow);
    font-size: 1.1rem;
}

.mobile-social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    border: 1px solid rgba(255, 202, 176, 0.3);
    transition: all 0.3s ease;
}

.mobile-social-link.instagram:hover {
    background: rgba(228, 64, 95, 0.1);
    border-color: #E4405F;
    color: #E4405F;
}

.mobile-social-link.facebook:hover {
    background: rgba(24, 119, 242, 0.1);
    border-color: #1877F2;
    color: #1877F2;
}

.mobile-social-link.youtube:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: #FF0000;
    color: #FF0000;
}

.mobile-social-link i {
    font-size: 1.2rem;
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Media Queries */
@media (max-width: 1200px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .nav-social {
        display: none;
    }

    .nav-contact {
        display: none;
    }
}

@media (max-width: 1024px) {
    .nav-menu-enhanced {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }

    .logo-content {
        display: none;
    }

    .logo-image {
        width: 45px;
        height: 45px;
    }

    .book-btn-enhanced {
        display: none;
    }

    .mobile-nav {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .mobile-nav-content {
        padding: 1.5rem;
    }

    .mobile-logo-img {
        width: 40px;
        height: 40px;
    }

    .mobile-brand {
        font-size: 1.2rem;
    }
}

.contact-form-enhanced {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 1rem;
    color: var(--coral-glow);
    z-index: 2;
}

.input-wrapper input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid rgba(255, 202, 176, 0.3);
    border-radius: 15px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--coral-glow);
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.submit-btn-enhanced {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.submit-btn-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.submit-btn-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.4);
}

.submit-btn-enhanced:hover::before {
    left: 100%;
}

.submit-btn-enhanced i {
    transition: transform 0.3s ease;
}

.submit-btn-enhanced:hover i {
    transform: translateX(5px);
}

.form-success {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-icon i {
    font-size: 2.5rem;
    color: white;
}

.form-success h4 {
    font-family: var(--primary-font);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.form-success p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.success-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.success-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-form-section {
        padding: 2rem 1rem;
    }

    .input-wrapper input {
        padding: 0.9rem 0.9rem 0.9rem 2.8rem;
    }

    .submit-btn-enhanced {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}


.modal-trigger-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
    position: relative;
    overflow: hidden;
}

.modal-trigger-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.modal-trigger-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.4);
}

.modal-trigger-btn:hover::before {
    left: 100%;
}

/* Modal Styles */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.contact-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(255, 202, 176, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: scale(0.7) translateY(50px);
    transition: all 0.3s ease;
}

.contact-modal.active .modal-container {
    transform: scale(1) translateY(0);
}

/* Modal Header */
.modal-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.modal-title {
    font-family: var(--primary-font);
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.modal-close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: rgba(255, 107, 157, 0.1);
    border: 2px solid rgba(255, 107, 157, 0.2);
    color: var(--coral-glow);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.modal-close:hover {
    background: var(--coral-glow);
    color: white;
    transform: rotate(90deg);
    border-color: var(--coral-glow);
}

/* Modal Form */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 1rem;
    color: var(--coral-glow);
    z-index: 2;
    font-size: 1rem;
}

.input-wrapper input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid rgba(255, 202, 176, 0.3);
    border-radius: 15px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--coral-glow);
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.input-wrapper input::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

/* Submit Button */
.modal-submit-btn {
    background: var(--deep-coffee-brown);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.modal-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.modal-submit-btn:hover {
    background: #1a0e08; /* Darker shade on hover */
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(44, 24, 16, 0.4);
}

.modal-submit-btn:hover::before {
    left: 100%;
}

.modal-submit-btn i {
    transition: transform 0.3s ease;
}

.modal-submit-btn:hover i {
    transform: translateX(5px);
}

/* Success Message */
.modal-success {
    text-align: center;
    padding: 2rem 0;
}

.success-animation {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.success-animation i {
    font-size: 2.5rem;
    color: white;
}

.modal-success h4 {
    font-family: var(--primary-font);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.modal-success p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.success-close-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.success-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal-container {
        padding: 2rem 1.5rem;
        width: 95%;
        margin: 1rem;
    }

    .modal-title {
        font-size: 1.6rem;
    }

    .input-wrapper input {
        padding: 0.9rem 0.9rem 0.9rem 2.8rem;
        font-size: 0.95rem;
    }

    .modal-submit-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .modal-trigger-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .modal-container {
        padding: 1.5rem 1rem;
    }

    .modal-title {
        font-size: 1.4rem;
    }
}

/* Profile Slideshow Frame - Sliding Version */
/* Profile Slideshow - Smooth Sliding Animation */
.profile-slideshow {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 1rem;
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.25);
    background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,248,243,0.9));
}

.profile-slideshow img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}

/* Active (current) image */
.profile-slideshow img.active {
    transform: translateX(0);
    opacity: 1;
    z-index: 2;
}

/* Previous image (slides left & fades) */
.profile-slideshow img.prev {
    transform: translateX(-100%);
    opacity: 0;
    z-index: 1;
}

/* Optional glowing frame */
@keyframes frameGlow {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(255, 107, 157, 0.25);
    }
    50% {
        box-shadow: 0 15px 50px rgba(255, 107, 157, 0.45);
    }
}
.profile-slideshow {
    animation: frameGlow 3s ease-in-out infinite alternate;
}


/* Contact Form Enhanced Styles */
.contact-form-enhanced .form-group {
    margin-bottom: 1.5rem;
}

.contact-form-enhanced .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.contact-form-enhanced .input-wrapper i {
    position: absolute;
    left: 1rem;
    color: var(--deep-coffee-brown);
    z-index: 2;
}

.contact-form-enhanced input,
.contact-form-enhanced select,
.contact-form-enhanced textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.contact-form-enhanced input:focus,
.contact-form-enhanced select:focus,
.contact-form-enhanced textarea:focus {
    outline: none;
    border-color: var(--deep-coffee-brown);
    box-shadow: 0 0 0 3px rgba(44, 24, 16, 0.1);
}

.contact-form-enhanced textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form-enhanced label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--deep-coffee-brown);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Success and Error Messages for Contact Form */
.form-success,
.form-error {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 1rem;
}

.form-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    border: 2px solid #10b981;
    color: var(--deep-coffee-brown);
}

.form-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.1));
    border: 2px solid #ef4444;
    color: var(--deep-coffee-brown);
}

.success-icon i {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.error-icon i {
    font-size: 3rem;
    color: #ef4444;
    margin-bottom: 1rem;
}

.form-success h4,
.form-error h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.form-success p,
.form-error p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.form-error a {
    color: #ef4444;
    text-decoration: none;
    font-weight: 600;
}

.form-error a:hover {
    color: #dc2626;
}

.success-btn,
.error-btn {
    background: var(--deep-coffee-brown);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.success-btn:hover,
.error-btn:hover {
    background: #1a0e08;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-form-enhanced input,
    .contact-form-enhanced select,
    .contact-form-enhanced textarea {
        padding: 0.8rem 0.8rem 0.8rem 2.5rem;
    }

    .contact-form-enhanced .input-wrapper i {
        left: 0.8rem;
    }
}


/* Critical CSS optimizations */
/* Above-the-fold styles should be inlined */

/* Lazy loading images */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--deep-coffee-brown);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 4px 4px;
}

.skip-link:focus {
    top: 0;
}

/* Font display optimization */
@font-face {
    font-family: 'Playfair Display';
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    font-display: swap;
}

/* Enhanced Mobile Consultation Button with Pop Animation */
.mobile-consult-btn-container {
    display: none;
    position: relative;
}

.mobile-consult-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    transform-origin: center;
}

/* Pop Animation Classes */
.mobile-consult-btn.pop-animation {
    animation: popBounce 4s ease-in-out infinite;
}

.mobile-consult-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.5);
}

.mobile-consult-btn:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

.mobile-consult-btn .btn-content {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 2;
}

.mobile-consult-btn i {
    font-size: 12px;
    animation: iconWiggle 3s ease-in-out infinite;
}

.mobile-consult-btn span {
    font-size: 12px;
    animation: textGlow 2s ease-in-out infinite alternate;
}

/* Pop Effect Element */
.pop-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 25px;
    transform: translate(-50%, -50%) scale(0);
    animation: popRipple 4s ease-in-out infinite;
}

/* Enhanced Pulse Effect */
.btn-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: rgba(255, 107, 157, 0.2);
    border-radius: 25px;
    transform: translate(-50%, -50%) scale(0);
    animation: pulseWave 3s ease-in-out infinite;
}

/* Keyframe Animations */
@keyframes popBounce {
    0%, 85%, 100% {
        transform: scale(1);
    }
    5% {
        transform: scale(1.1);
    }
    15% {
        transform: scale(0.95);
    }
    25% {
        transform: scale(1.05);
    }
    35% {
        transform: scale(1);
    }
}

@keyframes popRipple {
    0%, 85%, 100% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    5% {
        transform: translate(-50%, -50%) scale(0.3);
        opacity: 0.7;
    }
    15% {
        transform: translate(-50%, -50%) scale(0.6);
        opacity: 0.5;
    }
    25% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

@keyframes pulseWave {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
    75% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

@keyframes iconWiggle {
    0%, 90%, 100% {
        transform: rotate(0deg);
    }
    2% {
        transform: rotate(-10deg);
    }
    4% {
        transform: rotate(10deg);
    }
    6% {
        transform: rotate(-5deg);
    }
    8% {
        transform: rotate(5deg);
    }
    10% {
        transform: rotate(0deg);
    }
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    }
    100% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    }
}

/* Alternative Attention-Grabbing Animation */
.mobile-consult-btn.mega-pop {
    animation: megaPopSequence 6s ease-in-out infinite;
}

@keyframes megaPopSequence {
    0%, 80%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
    }
    2% {
        transform: scale(1.15);
        box-shadow: 0 8px 25px rgba(255, 107, 157, 0.6);
    }
    4% {
        transform: scale(0.9);
        box-shadow: 0 2px 10px rgba(255, 107, 157, 0.4);
    }
    6% {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(255, 107, 157, 0.5);
    }
    8% {
        transform: scale(0.95);
        box-shadow: 0 3px 12px rgba(255, 107, 157, 0.4);
    }
    10% {
        transform: scale(1.05);
        box-shadow: 0 5px 18px rgba(255, 107, 157, 0.5);
    }
    12% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 0 15px;
    }

    .logo-enhanced {
        flex: 0 0 auto;
    }

    .mobile-consult-btn-container {
        display: block;
        flex: 0 0 auto;
    }

    .nav-actions-enhanced {
        flex: 0 0 auto;
    }

    /* Hide desktop elements in mobile */
    .nav-menu-enhanced,
    .nav-contact,
    .book-btn-enhanced {
        display: none;
    }
}

@media (max-width: 480px) {
    .mobile-consult-btn {
        padding: 6px 12px;
        font-size: 11px;
    }

    .mobile-consult-btn span {
        font-size: 11px;
    }

    .mobile-consult-btn i {
        font-size: 11px;
    }
}

/* For very small screens */
@media (max-width: 360px) {
    .mobile-consult-btn span {
        display: none;
    }

    .mobile-consult-btn {
        padding: 8px;
        border-radius: 50%;
        width: 40px;
        height: 40px;
    }

    .mobile-consult-btn i {
        font-size: 16px;
    }

    .mobile-consult-btn.pop-animation {
        animation: popBounceSmall 4s ease-in-out infinite;
    }
}

@keyframes popBounceSmall {
    0%, 85%, 100% {
        transform: scale(1);
    }
    5% {
        transform: scale(1.2);
    }
    15% {
        transform: scale(0.9);
    }
    25% {
        transform: scale(1.1);
    }
    35% {
        transform: scale(1);
    }
}

/* Hover pause animation */
.mobile-consult-btn:hover {
    animation-play-state: paused;
}


