/* ==========================================================================
   CSS Variables & Reset
   ========================================================================== */
:root {
    /* Luxury Pink Palette */
    --blush-pink: #d98c9c;
    --soft-rose: #f4c2c2;
    --rose-gold: #e8b4b8;
    --deep-pink: #b76e79;
    --cream-white: #fff8f5;
    --luxury-black: #1a1a1a;
    --dark-overlay: rgba(26, 26, 26, 0.6);
    --pink-overlay: rgba(183, 110, 121, 0.4);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;

    /* Shadows & Glows */
    --glow-pink: 0 0 20px rgba(217, 140, 156, 0.5);
    --glow-rose: 0 0 15px rgba(244, 194, 194, 0.6);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-luxury: 0 15px 40px rgba(183, 110, 121, 0.15);

    /* Gradients */
    --gradient-pink: linear-gradient(135deg, var(--blush-pink), var(--deep-pink));
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    --gradient-text: linear-gradient(to right, #fff, var(--soft-rose));

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--luxury-black);
    background-color: var(--cream-white);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

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

ul {
    list-style: none;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--deep-pink);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 3rem;
    color: var(--luxury-black);
    margin-bottom: 20px;
}

.section-text {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 35px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.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.5s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-pink);
    color: white;
    box-shadow: var(--glow-pink);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(217, 140, 156, 0.6);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

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

.btn-primary-full {
    background: var(--gradient-pink);
    color: white;
    width: 100%;
    box-shadow: var(--glow-pink);
    margin-top: 10px;
}

.btn-primary-full:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(217, 140, 156, 0.6);
}

.btn-outline-full {
    background: transparent;
    border: 2px solid var(--blush-pink);
    color: var(--deep-pink);
    width: 100%;
}

.btn-outline-full:hover {
    background: var(--blush-pink);
    color: white;
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow-soft);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: baseline;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-shadow: var(--glow-pink);
    transition: var(--transition-smooth);
}

.navbar.scrolled .logo {
    color: var(--luxury-black);
    text-shadow: none;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background: var(--blush-pink);
    border-radius: 50%;
    margin-left: 2px;
}

.desktop-menu {
    display: flex;
    gap: 30px;
}

.desktop-menu a {
    color: white;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition-smooth);
    position: relative;
}

.navbar.scrolled .desktop-menu a {
    color: var(--luxury-black);
}

.desktop-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blush-pink);
    transition: var(--transition-smooth);
}

.desktop-menu a:hover::after,
.desktop-menu a.active::after {
    width: 100%;
}

.desktop-menu a:hover {
    color: var(--blush-pink);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger .bar {
    width: 30px;
    height: 2px;
    background: white;
    transition: var(--transition-smooth);
}

.navbar.scrolled .hamburger .bar {
    background: var(--luxury-black);
}

/* ==========================================================================
   Side Menu
   ========================================================================== */
.side-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.side-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.side-menu {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100%;
    background: var(--cream-white);
    z-index: 1001;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.side-menu.active {
    transform: translateX(-350px);
}

.close-btn {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 1.5rem;
    color: var(--luxury-black);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.close-btn:hover {
    color: var(--deep-pink);
    transform: rotate(90deg);
}

.side-menu-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.menu-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--luxury-black);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition-smooth);
}

.menu-link i {
    font-size: 1.2rem;
    color: var(--blush-pink);
    width: 25px;
    text-align: center;
}

.menu-link:hover {
    color: var(--deep-pink);
    transform: translateX(10px);
}

.side-menu-socials {
    margin-top: auto;
    display: flex;
    gap: 20px;
}

.side-menu-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-pink);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.side-menu-socials a:hover {
    background: var(--deep-pink);
    color: white;
    transform: translateY(-5px);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1.1);
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 26, 26, 0.8), rgba(183, 110, 121, 0.5));
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    color: white;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 5rem;
    color: transparent;
    background-image: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-divider {
    width: 100px;
    height: 3px;
    background: var(--gradient-pink);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.hero-subtitle {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        top: 5px;
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-luxury);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
}

.experience-badge .years {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--deep-pink);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--luxury-black);
    text-transform: uppercase;
    line-height: 1.2;
}

.about-features {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: var(--luxury-black);
}

.about-features i {
    color: var(--deep-pink);
    font-size: 1.2rem;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services {
    position: relative;
    overflow: hidden;
    background: #fffdfd !important; /* Off-white luxury background */
    z-index: 1;
}

.services-bg-decor {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.decor-image {
    position: absolute;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    opacity: 0.05; /* Subtle faded collage overlay */
    filter: blur(15px); /* Soft cinematic blur */
    transform-origin: center;
}

.decor-image.img-1 {
    top: -5%;
    left: -10%;
    width: 450px;
    height: 450px;
    animation: floatingFloat1 25s infinite ease-in-out;
}

.decor-image.img-2 {
    bottom: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    animation: floatingFloat2 30s infinite ease-in-out;
}

.decor-image.img-3 {
    top: 35%;
    left: 75%;
    width: 400px;
    height: 400px;
    animation: floatingFloat1 28s infinite ease-in-out alternate;
}

.services-overlay-layer {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 240, 243, 0.75) 0%, rgba(255, 255, 255, 0.88) 50%, rgba(255, 240, 243, 0.75) 100%);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

/* Floating Cinematic Background Animations */
@keyframes floatingFloat1 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    50% {
        transform: translate(30px, -40px) scale(1.15) rotate(15deg);
    }
    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
}

@keyframes floatingFloat2 {
    0% {
        transform: translate(0, 0) scale(1.1) rotate(0deg);
    }
    50% {
        transform: translate(-40px, 30px) scale(0.95) rotate(-20deg);
    }
    100% {
        transform: translate(0, 0) scale(1.1) rotate(0deg);
    }
}

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

.service-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(217, 140, 156, 0.2);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(217, 140, 156, 0.04);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-pink);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(217, 140, 156, 0.15);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(217, 140, 156, 0.75);
}

.service-card:hover::before {
    opacity: 0; /* Keeping white readability rather than solid overlay */
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--cream-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--deep-pink);
    transition: var(--transition-smooth);
    box-shadow: inset 0 0 10px rgba(183, 110, 121, 0.1);
}

.service-card:hover .service-icon {
    background: var(--gradient-pink);
    color: white;
    box-shadow: var(--glow-pink);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    transition: var(--transition-smooth);
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.service-card:hover h3 {
    color: var(--deep-pink);
}

.service-card:hover p {
    color: #444;
}

/* ==========================================================================
   Packages Section
   ========================================================================== */
.packages-grid {
    /* existing packages grid */
}

/* Luxury Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    align-items: stretch;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(217, 140, 156, 0.35);
    border-radius: 28px;
    padding: 45px 35px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(183, 110, 121, 0.08);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(217, 140, 156, 0.22);
    border-color: rgba(217, 140, 156, 0.8);
    background: rgba(255, 255, 255, 0.65);
}

.pricing-card.most-popular {
    background: rgba(255, 255, 255, 0.55);
    border: 2px solid var(--blush-pink);
    box-shadow: 0 20px 45px rgba(217, 140, 156, 0.18);
}

.pricing-card.most-popular:hover {
    box-shadow: 0 30px 60px rgba(217, 140, 156, 0.3);
}

.pricing-card .badge {
    position: absolute;
    top: 20px;
    right: 25px;
    background: var(--gradient-pink);
    color: #fff;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    box-shadow: var(--glow-pink);
    letter-spacing: 0.5px;
}

.pricing-card .card-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--luxury-black);
    text-align: left;
    font-weight: 600;
}

/* Premium Pill Tabs */
.package-tabs {
    display: flex;
    background: rgba(183, 110, 121, 0.08);
    padding: 6px;
    border-radius: 50px;
    margin-bottom: 30px;
    gap: 5px;
    position: relative;
    border: 1px solid rgba(217, 140, 156, 0.15);
}

.tab-btn {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 15px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: #777;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    outline: none;
}

.tab-btn:hover {
    color: var(--deep-pink);
}

.tab-btn.active {
    background: var(--gradient-pink);
    color: #fff;
    box-shadow: var(--glow-pink);
}

/* Dynamic Pricing Display */
.price-display {
    margin-bottom: 25px;
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
}

.price-display .currency {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--deep-pink);
    font-weight: 500;
    margin-right: 2px;
}

.price-display .price-number {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    color: var(--luxury-black);
    font-weight: 700;
    line-height: 1;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.price-display .price-number.fade-anim {
    opacity: 0;
    transform: translateY(-10px);
}

.static-price-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--deep-pink);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    font-weight: 500;
}

.dynamic-content-wrapper {
    transition: all 0.4s ease;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.includes-list {
    margin-bottom: 35px;
    list-style: none;
    padding: 0;
}

.includes-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
    font-family: var(--font-body);
    font-size: 1rem;
    border-bottom: 1px solid rgba(183, 110, 121, 0.08);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.includes-list li i {
    color: var(--blush-pink);
    font-size: 0.9rem;
}

.booking-btn {
    margin-top: auto;
}

/* Tablet & Mobile Grid Responsiveness */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-card {
        padding: 35px 25px;
    }
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
}

.package-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    position: relative;
    border: 1px solid rgba(217, 140, 156, 0.2);
    transition: var(--transition-smooth);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-luxury);
    border-color: var(--blush-pink);
}

.package-card.premium {
    background: var(--cream-white);
    transform: scale(1.05);
    border: 2px solid var(--blush-pink);
    box-shadow: var(--shadow-luxury);
}

.package-card.premium:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-pink);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--glow-pink);
}

.package-top {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.package-top h3 {
    font-size: 1.8rem;
    color: var(--luxury-black);
    margin-bottom: 10px;
}

.price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--deep-pink);
    font-weight: 700;
}

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

.package-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.package-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--blush-pink);
}

/* ==========================================================================
   Bridal Gallery Section (Premium Cinematic Design)
   ========================================================================== */
.bridal-gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.gallery-row {
    display: grid;
    gap: 30px;
}

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

.gallery-row-fullwidth {
    grid-template-columns: 1fr;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1.1 / 1;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(217, 140, 156, 0.12);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #fdfafb;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(217, 140, 156, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: white;
}

.gallery-overlay i {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 12px;
    transform: translateY(20px) scale(0.8);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 4px 8px rgba(217, 140, 156, 0.3));
}

.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 1px;
    transform: translateY(25px);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* Gallery Hover Animations */
.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(217, 140, 156, 0.22);
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: translateY(0) scale(1);
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Cinematic Video Showcase Card */
.cinematic-video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 480px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    background: #000;
}

.cinematic-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65) contrast(1.05);
    transition: filter 0.5s ease;
    pointer-events: none; /* let clicks pass to parent card for modal open */
}

.cinematic-video-card:hover .cinematic-video {
    filter: brightness(0.7) contrast(1.05);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: white;
    z-index: 2;
    pointer-events: none;
}

.video-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(217, 140, 156, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    width: fit-content;
    box-shadow: var(--glow-pink);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-label i {
    font-size: 1rem;
    animation: pulse 1.8s infinite;
}

.video-overlay h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.video-overlay p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Center play overlay */
.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    pointer-events: none; /* allow parent click to handle opening */
}

.play-icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 30px rgba(183,110,121,0.15), 0 0 30px rgba(217,140,156,0.06);
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s;
}

.play-icon i {
    font-size: 2.6rem;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 6px 20px rgba(183,110,121,0.18);
}

.cinematic-video-card:hover .play-icon {
    transform: scale(1.06);
    box-shadow: 0 20px 50px rgba(183,110,121,0.22);
}

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

/* Responsive Overrides */
@media (max-width: 1024px) {
    .gallery-row-3col {
        grid-template-columns: repeat(2, 1fr);
    }
    .cinematic-video-card {
        height: 380px;
    }
    .video-overlay h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .gallery-row {
        gap: 20px;
    }
    .bridal-gallery-grid {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .gallery-row-3col {
        grid-template-columns: 1fr;
    }
    .cinematic-video-card {
        height: 300px;
    }
    .gallery-item {
        aspect-ratio: 1.2 / 1;
    }
    .video-overlay {
        padding: 25px;
    }
    .video-overlay h3 {
        font-size: 1.5rem;
    }
    .video-overlay p {
        font-size: 0.95rem;
    }
    .video-label {
        padding: 6px 14px;
        font-size: 0.75rem;
    }
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */
.reviews-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.stars {
    color: var(--blush-pink);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.review-text {
    font-style: italic;
    color: #555;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-pink);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.reviewer-info h4 {
    color: var(--luxury-black);
    font-size: 1.1rem;
}

.reviewer-info p {
    color: var(--deep-pink);
    font-size: 0.9rem;
}

/* ==========================================================================
   Booking Section
   ========================================================================== */
.whatsapp-booking-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 60px 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: var(--shadow-luxury);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.whatsapp-booking-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(217, 140, 156, 0.1) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.whatsapp-icon-large {
    width: 90px;
    height: 90px;
    background: var(--gradient-pink);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 30px;
    box-shadow: var(--glow-pink);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(217, 140, 156, 0.6);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(217, 140, 156, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(217, 140, 156, 0);
    }
}

.whatsapp-booking-card .section-title {
    margin-bottom: 20px;
}

.whatsapp-booking-card .section-text {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.15rem;
}

.btn-whatsapp-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 18px 45px;
    background: var(--gradient-pink);
    color: white;
    font-size: 1.2rem;
    font-family: var(--font-body);
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: var(--glow-pink);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-whatsapp-large i {
    font-size: 1.5rem;
}

.btn-whatsapp-large::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.5s ease;
    z-index: -1;
}

.btn-whatsapp-large:hover::before {
    left: 100%;
}

.btn-whatsapp-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(217, 140, 156, 0.6);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: stretch;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    text-align: center;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-luxury);
    border-color: var(--blush-pink);
    background: white;
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    color: white;
    box-shadow: var(--shadow-luxury);
}

.contact-icon.whatsapp {
    background: #25D366;
}

.contact-icon.phone {
    background: var(--gradient-pink);
}

.contact-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.contact-icon.location {
    background: var(--deep-pink);
}

.contact-card h3 {
    font-size: 1.5rem;
    color: var(--luxury-black);
    margin-bottom: 10px;
}

.contact-detail {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--deep-pink);
    margin-bottom: 15px;
}

.contact-subtext {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
}

.location-card {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 40px;
}

.location-card:hover {
    transform: translateY(0);
}

.location-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.location-header .contact-icon {
    margin: 0;
    flex-shrink: 0;
}

.location-header h3 {
    font-size: 1.8rem;
    color: var(--luxury-black);
    margin-bottom: 5px;
}

.location-header p {
    color: #555;
    line-height: 1.6;
}

.map-container {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    flex-grow: 1;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    display: block;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--luxury-black);
    color: white;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.footer-brand span {
    color: var(--blush-pink);
}

.footer-brand p {
    color: #ccc;
    margin-bottom: 30px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--blush-pink);
    transform: translateY(-5px);
}

.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: white;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: #ccc;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--blush-pink);
    padding-left: 5px;
}

.footer-newsletter h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-newsletter p {
    color: #ccc;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    outline: none;
    font-family: var(--font-body);
}

.newsletter-form button {
    padding: 0 20px;
    background: var(--blush-pink);
    color: white;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.newsletter-form button:hover {
    background: var(--deep-pink);
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 0.9rem;
}

/* ==========================================================================
   Instagram Section Styles
   ========================================================================== */
.instagram-section {
    position: relative;
    background: #fff;
    overflow: hidden;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.instagram-post {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    aspect-ratio: 1;
    background: #f7f7f7;
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.instagram-overlay {
    position: absolute;
    inset: 0;
    background: rgba(217, 140, 156, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.instagram-post:hover img {
    transform: scale(1.08);
}

.instagram-post:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transform: translateY(15px);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.instagram-post:hover .instagram-overlay a {
    transform: translateY(0);
}

.instagram-overlay i {
    font-size: 2.2rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.instagram-overlay a:hover i {
    transform: scale(1.15) rotate(5deg);
}

.instagram-cta-wrapper {
    text-align: center;
    margin-top: 45px;
}

.btn-instagram-follow {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white !important;
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    box-shadow: 0 10px 30px rgba(220, 39, 67, 0.2);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-family: var(--font-body);
    font-size: 1rem;
}

.btn-instagram-follow:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(220, 39, 67, 0.35);
    filter: brightness(1.05);
}

.btn-instagram-follow i {
    font-size: 1.3rem;
}

@media (max-width: 1024px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .btn-instagram-follow {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
}
/* ==========================================================================
   Cinematic Video Lightbox Modal
   ========================================================================== */
.video-lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.video-lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.video-lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 5, 7, 0.88);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.video-lightbox-container {
    position: relative;
    width: 90%;
    max-width: 960px;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(217, 140, 156, 0.25), 0 0 40px rgba(217, 140, 156, 0.15);
    border: 1px solid rgba(217, 140, 156, 0.35);
    transform: scale(0.85);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.video-lightbox-modal.active .video-lightbox-container {
    transform: scale(1);
}

.video-lightbox-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-lightbox-close {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 3;
}

.video-lightbox-close:hover {
    background: var(--blush-pink);
    border-color: var(--blush-pink);
    transform: rotate(90deg) scale(1.1);
    box-shadow: var(--glow-pink);
    color: white;
}

@media (max-width: 768px) {
    .video-lightbox-close {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .video-lightbox-container {
        border-radius: 16px;
        width: 95%;
    }
}

/* ==========================================================================
   Meet Our CEO Section
   ========================================================================== */
.ceo-section {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #fff4f6 100%);
    overflow: hidden;
    z-index: 1;
}

.ceo-decor-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.4;
    z-index: -1;
    pointer-events: none;
}

.ceo-decor-blur.blur-1 {
    top: 10%;
    left: -10%;
    width: 350px;
    height: 350px;
    background: #ffd3db;
}

.ceo-decor-blur.blur-2 {
    bottom: 10%;
    right: -10%;
    width: 380px;
    height: 380px;
    background: #ffe4d6;
}

.ceo-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.ceo-image-wrapper {
    position: relative;
    padding: 15px;
}

.ceo-image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 55px rgba(217, 140, 156, 0.22);
    aspect-ratio: 4 / 5;
    background: #fff;
    border: 1px solid rgba(217, 140, 156, 0.25);
    z-index: 2;
}

.ceo-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ceo-image-wrapper:hover .ceo-image-container img {
    transform: scale(1.05);
}

.ceo-image-overlay {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(217, 140, 156, 0.35);
    padding: 10px 22px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(217, 140, 156, 0.15);
    z-index: 3;
}

.ceo-experience {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--deep-pink);
    letter-spacing: 0.5px;
}

.ceo-glow-shape {
    position: absolute;
    inset: 5px;
    border-radius: 30px;
    background: radial-gradient(circle, rgba(217, 140, 156, 0.3) 0%, transparent 70%);
    filter: blur(10px);
    z-index: 1;
    pointer-events: none;
}

.ceo-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ceo-tag {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--deep-pink);
    margin-bottom: 12px;
    display: block;
}

.ceo-heading {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--luxury-black);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.ceo-subheading {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--rose-gold);
    margin-bottom: 25px;
    line-height: 1.4;
}

.ceo-divider {
    width: 60px;
    height: 3px;
    background: var(--gradient-pink);
    margin-bottom: 25px;
    border-radius: 5px;
}

.ceo-description {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: #4c4c4c;
    line-height: 1.7;
    margin-bottom: 18px;
}

.ceo-description strong {
    color: var(--luxury-black);
    font-weight: 600;
}

.ceo-achievements {
    list-style: none;
    margin: 25px 0 35px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ceo-achievements li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--luxury-black);
    font-weight: 500;
}

.ceo-achievements i {
    width: 25px;
    color: var(--deep-pink);
    font-size: 1.15rem;
    text-align: center;
}

.ceo-cta-group {
    display: flex;
    gap: 20px;
    align-items: center;
}

.ceo-cta-group .btn {
    padding: 15px 35px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(217, 140, 156, 0.15);
}

.ceo-cta-group .btn-secondary {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(217, 140, 156, 0.4);
    color: var(--deep-pink);
    backdrop-filter: blur(5px);
}

.ceo-cta-group .btn-secondary:hover {
    background: var(--blush-pink);
    color: white;
    border-color: var(--blush-pink);
    box-shadow: var(--glow-pink);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .ceo-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ceo-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .ceo-heading {
        font-size: 2.3rem;
    }
    
    .ceo-subheading {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .ceo-image-container {
        border-radius: 20px;
    }
    
    .ceo-glow-shape {
        border-radius: 20px;
    }
    
    .ceo-heading {
        font-size: 2rem;
    }
    
    .ceo-subheading {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .ceo-description {
        font-size: 0.98rem;
    }
    
    .ceo-cta-group {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .ceo-cta-group .btn {
        justify-content: center;
    }
    
    .ceo-image-overlay {
        bottom: 15px;
        left: 15px;
        padding: 8px 18px;
    }
    
    .ceo-experience {
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   Floating Elements & Mobile Nav
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: var(--transition-smooth);
    animation: bounce 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
    z-index: 98;
    padding: 10px 20px;
    padding-bottom: env(safe-area-inset-bottom, 10px);
}

/* ==========================================================================
   Special Services Section
   ========================================================================== */
.special-services {
    position: relative;
    background: linear-gradient(180deg, var(--cream-white) 0%, #fff0f3 100%);
    overflow: hidden;
    z-index: 1;
}

.special-services .glow-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.45;
    z-index: -1;
    pointer-events: none;
}

.special-services .glow-1 {
    top: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: #ffd3db;
}

.special-services .glow-2 {
    bottom: -10%;
    right: -10%;
    width: 350px;
    height: 350px;
    background: #ffe4d6;
}

.special-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.special-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(217, 140, 156, 0.35);
    border-radius: 24px;
    padding: 45px 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(183, 110, 121, 0.06);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 2;
}

.special-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(217, 140, 156, 0.22);
    border-color: rgba(217, 140, 156, 0.8);
    background: rgba(255, 255, 255, 0.7);
}

.special-icon-wrapper {
    margin-bottom: 25px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.special-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--soft-rose), var(--rose-gold));
    color: var(--deep-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 8px 25px rgba(217, 140, 156, 0.18);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.special-card:hover .special-icon {
    transform: rotateY(360deg);
    background: var(--gradient-pink);
    color: white;
    box-shadow: var(--glow-pink);
}

.special-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--luxury-black);
    margin-bottom: 15px;
}

.special-description {
    font-family: var(--font-body);
    font-size: 0.98rem;
    color: #555;
    line-height: 1.6;
}

.special-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(217, 140, 156, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.special-card:hover .special-glow {
    opacity: 1;
}

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

@media (max-width: 768px) {
    .special-services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .experience-badge {
        right: 20px;
    }

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

@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .package-card.premium {
        transform: scale(1);
    }

    .location-header {
        flex-direction: column;
        text-align: center;
    }

    .package-card.premium:hover {
        transform: translateY(-10px);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }


}

@media (max-width: 600px) {

    /* Enable Bottom Nav for mobile */
    .bottom-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Adjust floating whatsapp so it doesn't overlap bottom nav */
    .floating-whatsapp {
        bottom: 90px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    /* Hide scroll indicator */
    .scroll-indicator {
        display: none;
    }

    /* Adjust padding to account for bottom nav */
    body {
        padding-bottom: 70px;
    }

    .footer {
        padding-bottom: 90px;
    }

    .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        color: #999;
        font-size: 0.75rem;
        transition: var(--transition-smooth);
        flex: 1;
    }

    .nav-item i {
        font-size: 1.2rem;
    }

    .nav-item.active {
        color: var(--deep-pink);
    }

    .book-now-btn {
        position: relative;
        top: -20px;
    }

    .book-icon {
        width: 50px;
        height: 50px;
        background: var(--gradient-pink);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        box-shadow: var(--glow-pink);
    }

    /* iPhone SE optimization */
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}