/* ==========================================================================
   Zen Events - Luxury Event Styling Homepage CSS
   Colors: Champagne, Blush, White, Gold, Black
   Fonts: Cormorant Garamond (Serif), Outfit (Sans-Serif)
   ========================================================================== */

/* 1. Design Tokens & Root Variables */
:root {
    /* Color Palette */
    --color-white: #FFFFFF;
    --color-blush-light: #FDF9F7;
    --color-blush: #FAF0EC;
    --color-blush-dark: #F5E0D8;
    --color-champagne-light: #F6F2EE;
    --color-champagne: #EAE3DB;
    --color-champagne-dark: #D9CDBF;
    --color-gold: #C5A880;
    --color-gold-dark: #A68B63;
    --color-black: #1E1E1E;
    --color-black-light: #333333;
    --color-charcoal: #111111;
    
    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Spacing & Borders */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-pill: 50px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    /* Shadows */
    --shadow-soft: 0 10px 30px rgba(197, 168, 128, 0.06);
    --shadow-medium: 0 15px 40px rgba(197, 168, 128, 0.12);
    --shadow-luxury: 0 20px 50px rgba(197, 168, 128, 0.18);
    --shadow-header: 0 4px 30px rgba(0, 0, 0, 0.03);
}

/* 2. Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--color-blush-light);
    color: var(--color-black-light);
    line-height: 1.6;
    letter-spacing: 0.02em;
    overflow-x: hidden;
    position: relative;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-blush-light);
}
::-webkit-scrollbar-thumb {
    background: var(--color-champagne);
    border: 3px solid var(--color-blush-light);
    border-radius: var(--border-radius-pill);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/* Background Luxury Glows */
.luxury-bg-glow {
    position: absolute;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    pointer-events: none;
    z-index: -1;
}
.glow-1 {
    top: 10%;
    left: -20%;
    background-color: var(--color-blush);
}
.glow-2 {
    top: 40%;
    right: -20%;
    background-color: var(--color-champagne-light);
}
.glow-3 {
    bottom: 10%;
    left: -10%;
    background-color: var(--color-blush-dark);
}

/* Typography Headings */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    color: var(--color-charcoal);
    font-weight: 500;
    line-height: 1.2;
}

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

/* Common Section Layout */
section {
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Section Header Typography */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px auto;
}

.section-subtitle {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.section-title {
    font-size: 3rem;
    font-weight: 400;
    color: var(--color-charcoal);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--color-black-light);
    font-weight: 300;
    line-height: 1.7;
}

/* Luxury Buttons Styling */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: var(--border-radius-pill);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--color-black);
    color: var(--color-white);
    border: 1px solid var(--color-black);
}

.btn-primary:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(197, 168, 128, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-black);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ==========================================================================
   3. Header Navigation (Sticky Glassmorphism)
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    background-color: rgba(253, 249, 247, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.main-header.scrolled {
    background-color: rgba(253, 249, 247, 0.95);
    box-shadow: var(--shadow-header);
    padding: 10px 0;
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.main-header.scrolled .header-container {
    padding: 12px 30px;
}

/* Elegant Logo Design */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.main-header.scrolled .logo-img {
    height: 38px;
}

/* Navigation Links */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-black-light);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: var(--transition-smooth);
}

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

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.btn-nav-cta {
    padding: 10px 24px;
    font-size: 0.75rem;
    background-color: transparent;
    color: var(--color-charcoal);
    border: 1px solid var(--color-gold);
}

.btn-nav-cta:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
}

/* Mobile Toggle Hamburger */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-charcoal);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Mobile Drawer Overlay */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--color-blush-light);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.05);
    z-index: 2000;
    padding: 80px 40px 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.mobile-drawer.open {
    right: 0;
}

.close-drawer {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-charcoal);
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-charcoal);
    font-weight: 400;
}

.mobile-link:hover {
    color: var(--color-gold);
    padding-left: 8px;
}

.mobile-drawer-footer {
    border-top: 1px solid var(--color-champagne);
    padding-top: 25px;
}

.mobile-drawer-footer p {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.drawer-socials {
    display: flex;
    gap: 20px;
}

.drawer-socials svg {
    width: 20px;
    height: 20px;
    fill: var(--color-gold);
    transition: var(--transition-fast);
}

.drawer-socials a:hover svg {
    fill: var(--color-black);
    transform: translateY(-2px);
}

/* ==========================================================================
   4. Hero Section
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--color-black-light);
    text-align: left;
    position: relative;
    padding: 100px 0 80px 5%;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: right center;
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 540px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0;
}

.hero-badge {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    border: 1px solid var(--color-gold);
    padding: 8px 24px;
    border-radius: var(--border-radius-pill);
    margin-bottom: 25px;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
    font-weight: 500;
    color: var(--color-charcoal);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 250px;
    margin: 10px 0 15px 0;
}

.hero-divider::before {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to left, var(--color-gold), transparent);
}

.hero-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, var(--color-gold), transparent);
}

.hero-divider .heart {
    color: var(--color-gold-dark);
    font-size: 0.9rem;
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    font-weight: 300;
    color: var(--color-gold-dark);
    margin-bottom: 15px;
    letter-spacing: 0.02em;
    font-style: italic;
}

.hero-desc {
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    font-weight: 300;
    color: var(--color-black-light);
    margin-bottom: 25px;
    max-width: 550px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.hero-section .btn-outline {
    border-color: var(--color-black-light);
    color: var(--color-black-light);
    background-color: rgba(253, 249, 247, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.hero-section .btn-outline:hover {
    background-color: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}


.social-link-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-black-light);
}

.social-link-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--color-black-light);
    transition: var(--transition-fast);
}

.social-link-icon:hover {
    color: var(--color-gold-dark);
}

.social-link-icon:hover svg {
    fill: var(--color-gold-dark);
    transform: translateY(-2px);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator span {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--color-champagne-light);
}

.arrow-down {
    width: 1px;
    height: 35px;
    background-color: var(--color-champagne);
    position: relative;
    overflow: hidden;
}

.arrow-down::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: var(--color-gold);
    animation: scroll-arrow 2s infinite ease-in-out;
}

@keyframes scroll-arrow {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(250%); }
}

/* Floating Balloon Decorations */
.floating-balloon {
    position: absolute;
    border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
    z-index: 2;
    opacity: 0.3;
    pointer-events: none;
}

.fb-1 {
    width: 180px;
    height: 220px;
    background: radial-gradient(circle at 30% 30%, var(--color-blush), var(--color-gold));
    top: 15%;
    left: -50px;
    animation: float-slow 8s infinite ease-in-out;
}

.fb-2 {
    width: 100px;
    height: 120px;
    background: radial-gradient(circle at 30% 30%, #FFF, var(--color-blush-dark));
    bottom: 25%;
    right: 5%;
    animation: float-slow 12s infinite ease-in-out alternate;
}

.fb-3 {
    width: 130px;
    height: 160px;
    background: radial-gradient(circle at 30% 30%, var(--color-champagne-light), var(--color-gold));
    top: 40%;
    right: -30px;
    animation: float-slow 10s infinite ease-in-out 2s;
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(5deg); }
}

/* ==========================================================================
   5. About Us Section
   ========================================================================== */
.about-section {
    background-color: var(--color-white);
}

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

/* About Image Layout */
.about-image-wrapper {
    position: relative;
    padding-right: 40px;
    padding-bottom: 60px;
}

.about-collage {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    z-index: 2;
}

.collage-img-1 {
    width: 85%;
    height: 80%;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: var(--shadow-luxury);
    z-index: 2;
}

.collage-img-2 {
    width: 60%;
    height: 50%;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    position: absolute;
    bottom: -20px;
    right: -20px;
    border: 8px solid var(--color-white);
    box-shadow: var(--shadow-medium);
    z-index: 3;
}

.image-accent-border {
    position: absolute;
    top: 30px;
    bottom: -10px;
    left: 30px;
    right: -10px;
    border: 1px solid var(--color-gold);
    border-radius: var(--border-radius-lg);
    z-index: 1;
}

.about-experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 20px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: var(--shadow-medium);
}

.about-experience-badge .num {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-gold);
}

.about-experience-badge .lbl {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
}

/* About Text & Cards */
.about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-text {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 40px;
    color: var(--color-black-light);
}

.about-us-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    width: 100%;
}

.feature-card {
    background-color: var(--color-blush-light);
    border: 1px solid rgba(197, 168, 128, 0.15);
    padding: 24px;
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    background-color: var(--color-white);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

.feature-card.wide {
    grid-column: span 2;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-blush-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--color-gold-dark);
}

.feature-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-charcoal);
}

.feature-desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--color-black-light);
}

/* ==========================================================================
   5b. Services Section
   ========================================================================== */
.services-section {
    background-color: var(--color-blush); /* slightly warmer background than white */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
}

.service-card {
    background-color: var(--color-white);
    border: 1px solid rgba(197, 168, 128, 0.1);
    padding: 35px 30px;
    border-radius: var(--border-radius-lg);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-luxury);
    border-color: rgba(197, 168, 128, 0.3);
}

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

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-blush-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(197, 168, 128, 0.15);
}

.service-card:hover .service-icon-wrapper {
    background-color: var(--color-gold);
    transform: scale(1.1);
}

.service-icon-wrapper svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: var(--color-gold-dark);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper svg {
    stroke: var(--color-white);
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--color-charcoal);
}

.service-description {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-black-light);
}

/* ==========================================================================
   6. Pricing Packages Section
   ========================================================================== */
.packages-section {
    background-color: var(--color-blush-light);
}

.packages-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

/* Package Card Base */
.package-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: 45px 35px;
    border: 1px solid rgba(197, 168, 128, 0.1);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    position: relative;
}

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

/* Featured Luxury Package Card */
.package-card.featured {
    border: 2px solid var(--color-gold);
    box-shadow: var(--shadow-medium);
    transform: scale(1.03);
    background-color: var(--color-blush-light);
}

.package-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: var(--shadow-luxury);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-gold);
    color: var(--color-white);
    padding: 6px 20px;
    border-radius: var(--border-radius-pill);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Card Header */
.package-name {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-charcoal);
    margin-bottom: 20px;
    text-align: center;
}

.package-price {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 5px;
}

.package-price .currency {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-gold);
    margin-right: 2px;
    margin-bottom: 12px;
}

.package-price .amount {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--color-charcoal);
    line-height: 1;
}

.package-price .suffix {
    font-size: 0.85rem;
    color: var(--color-gold);
    letter-spacing: 0.05em;
    margin-left: 6px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.package-delivery {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-gold-dark);
    font-style: italic;
    margin-bottom: 35px;
}

/* Card Features */
.package-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 0.95rem;
    color: var(--color-black-light);
    line-height: 1.4;
}

.check-icon {
    width: 18px;
    height: 18px;
    fill: var(--color-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.package-card.featured .check-icon {
    fill: var(--color-gold-dark);
}

/* Card CTA Button */
.btn-package-cta {
    background-color: var(--color-champagne-light);
    color: var(--color-charcoal);
    border: 1px solid var(--color-champagne-dark);
    width: 100%;
}

.btn-package-cta:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* ==========================================================================
   7. Instagram Gallery Section
   ========================================================================== */
.gallery-section {
    background-color: var(--color-white);
}

/* Filter Controls */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--color-blush-light);
    border: 1px solid var(--color-champagne);
    color: var(--color-black-light);
    padding: 10px 24px;
    border-radius: var(--border-radius-pill);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-white);
    box-shadow: 0 6px 15px rgba(197, 168, 128, 0.15);
}

/* Gallery Grid & Items */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    height: 380px;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 30, 30, 0.4);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 30px;
    transition: var(--transition-smooth);
    z-index: 5;
}

.gallery-info {
    transform: translateY(20px);
    transition: var(--transition-smooth);
    color: var(--color-white);
}

.gallery-info .category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    margin-bottom: 5px;
    display: block;
}

.gallery-info h4 {
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: 300;
}

.view-icon {
    font-size: 1.8rem;
    color: var(--color-white);
    background-color: rgba(197, 168, 128, 0.85);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8) translateY(20px);
    transition: var(--transition-smooth);
}

/* Hover States */
.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

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

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

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

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

/* Hidden items for grid filter animation class */
.gallery-item.hidden {
    display: none;
}

/* ==========================================================================
   8. Testimonials Section
   ========================================================================== */
.testimonials-section {
    background-color: var(--color-blush);
}

.testimonials-slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-slider {
    display: flex;
    transition: var(--transition-smooth);
    width: 500%; /* 5 slides */
}

.testimonial-card {
    width: 20%;
    flex-shrink: 0;
    padding: 0 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-card.active {
    opacity: 1;
}

.stars {
    color: var(--color-gold);
    font-size: 1.4rem;
    letter-spacing: 5px;
    margin-bottom: 25px;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--color-charcoal);
    font-weight: 300;
    margin-bottom: 35px;
}

.client-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.client-name {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-black);
    margin-bottom: 4px;
}

.client-location {
    font-size: 0.8rem;
    color: var(--color-gold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Slider Pagination Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 35px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-champagne-dark);
    cursor: pointer;
    transition: var(--transition-fast);
}

.testimonial-dots .dot.active {
    background-color: var(--color-gold);
    transform: scale(1.2);
}

/* ==========================================================================
   9. Contact Section
   ========================================================================== */
.contact-section {
    background-color: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
}

/* Contact details block */
.contact-info-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-intro {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--color-black-light);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    margin-bottom: 50px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.detail-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-blush-light);
    border: 1px solid var(--color-champagne);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--color-gold);
}

.detail-item h4 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-charcoal);
    margin-bottom: 4px;
}

.detail-item p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--color-black-light);
}

.contact-social-buttons {
    display: flex;
    gap: 15px;
    width: 100%;
}

.social-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    border-radius: var(--border-radius-pill);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

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

.whatsapp-btn {
    background-color: #25D366;
    color: var(--color-white);
}

.whatsapp-btn svg {
    fill: var(--color-white);
}

.whatsapp-btn:hover {
    background-color: #1ebd59;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

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

.instagram-btn svg {
    fill: var(--color-white);
}

.instagram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 39, 67, 0.2);
}

/* Contact Form Panel */
.contact-form-panel {
    background-color: var(--color-blush-light);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    border: 1px solid rgba(197, 168, 128, 0.15);
    box-shadow: var(--shadow-medium);
    position: relative;
}

.form-title {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--color-black-light);
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-charcoal);
    margin-bottom: 8px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    padding: 14px 20px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--color-champagne-dark);
    background-color: var(--color-white);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--color-black);
    transition: var(--transition-fast);
    outline: none;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15);
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #E06C75;
    background-color: rgba(224, 108, 117, 0.02);
}

.error-msg {
    display: none;
    font-size: 0.75rem;
    color: #E06C75;
    margin-top: 5px;
}

.form-group.error .error-msg {
    display: block;
}

/* Spinner during submit loading state */
.btn-submit {
    position: relative;
}

.btn-submit .spinner {
    display: none;
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-white);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

.btn-submit.loading .btn-text {
    opacity: 0;
}

.btn-submit.loading .spinner {
    display: block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Form Success Overlay Dialog */
.form-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(253, 249, 247, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10;
    border-radius: var(--border-radius-lg);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.form-success-overlay.open {
    display: flex;
    animation: fade-in 0.3s ease;
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.success-card {
    text-align: center;
    background-color: var(--color-white);
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-luxury);
    border: 1px solid var(--color-champagne);
    max-width: 400px;
    transform: translateY(20px);
    animation: slide-up 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slide-up {
    to { transform: translateY(0); }
}

.success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    color: var(--color-white);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.25);
}

.success-card h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.success-card p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--color-black-light);
    margin-bottom: 25px;
}

/* ==========================================================================
   10. Footer Section
   ========================================================================== */
.footer {
    background-color: var(--color-charcoal);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(197, 168, 128, 0.15);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

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

.footer-col h4 {
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-family: var(--font-sans);
}

.col-brand .logo {
    justify-content: flex-start;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

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

.footer-socials svg {
    width: 18px;
    height: 18px;
    fill: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
}

.footer-socials a:hover svg {
    fill: var(--color-white);
    transform: translateY(-2px);
}

.col-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.col-links a {
    font-size: 0.9rem;
    font-weight: 300;
}

.col-links a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.col-areas ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.col-areas li {
    font-size: 0.9rem;
    font-weight: 300;
}

.delivery-footnote {
    display: block;
    margin-top: 15px;
    font-size: 0.75rem;
    font-style: italic;
    color: rgba(197, 168, 128, 0.6);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 300;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
}

.legal-link {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: var(--transition-fast);
    padding: 0;
}

.legal-link:hover {
    color: var(--color-gold);
}

.legal-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

/* ==========================================================================
   Legal Modals (Terms & Conditions / Refund Policy)
   ========================================================================== */
.legal-modal {
    position: fixed;
    inset: 0;
    z-index: 4000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.legal-modal.open {
    pointer-events: all;
    opacity: 1;
}

.legal-modal-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(17, 17, 17, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.legal-modal-panel {
    position: relative;
    z-index: 1;
    background-color: var(--color-blush-light);
    width: 100%;
    max-width: 780px;
    max-height: 88vh;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.legal-modal.open .legal-modal-panel {
    transform: translateY(0);
}

.legal-modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--color-champagne);
    border: none;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--color-charcoal);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 2;
}

.legal-modal-close:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
}

.legal-modal-header {
    padding: 40px 44px 28px;
    border-bottom: 1px solid var(--color-champagne);
    flex-shrink: 0;
}

.legal-modal-header h2 {
    font-size: 2rem;
    font-weight: 400;
    margin: 8px 0 6px;
}

.legal-modal-header p {
    font-size: 0.9rem;
    color: var(--color-black-light);
    font-weight: 300;
}

.legal-modal-body {
    padding: 28px 44px 40px;
    overflow-y: auto;
    flex: 1;
    scrollbar-width: thin;
    scrollbar-color: var(--color-champagne) transparent;
}

.legal-intro {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-black-light);
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-champagne);
}

.legal-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--color-champagne-light);
}

.legal-item:last-child {
    border-bottom: none;
}

.legal-item h3 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.02em;
}

.legal-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--color-black);
    color: var(--color-gold);
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.legal-item p {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-black-light);
    margin-bottom: 6px;
}

.legal-item p:last-child { margin-bottom: 0; }

.legal-item strong {
    color: var(--color-charcoal);
    font-weight: 600;
}

.legal-bullets {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legal-bullets li {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.65;
    color: var(--color-black-light);
    padding-left: 18px;
    position: relative;
}

.legal-bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-size: 1rem;
    line-height: 1.65;
}

/* ==========================================================================
   11. Interactive Gallery Lightbox Modal
   ========================================================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.lightbox-content {
    max-width: 85%;
    max-height: 80%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.open img {
    transform: scale(1);
}

.lightbox-caption {
    color: var(--color-champagne-light);
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-top: 20px;
    text-align: center;
    font-weight: 300;
}

/* Lightbox Navigation Controls */
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.7);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--color-gold);
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.5);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 20px;
    transition: var(--transition-fast);
}

.lightbox-prev { left: 40px; }
.lightbox-next { right: 40px; }

.lightbox-prev:hover, .lightbox-next:hover {
    color: var(--color-gold);
}

/* ==========================================================================
   12. Floating WhatsApp Sticky Widget
   ========================================================================== */
.whatsapp-sticky-badge {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
}

.whatsapp-sticky-badge svg {
    width: 32px;
    height: 32px;
    fill: var(--color-white);
}

.whatsapp-sticky-badge:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

/* ==========================================================================
   13. Scroll Reveal Styles (Intersection Observer support)
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered reveals for child elements */
.reveal-stagger > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.55s; }
.reveal-stagger > *:nth-child(7) { transition-delay: 0.65s; }
.reveal-stagger > *:nth-child(8) { transition-delay: 0.75s; }
.reveal-stagger > *:nth-child(9) { transition-delay: 0.85s; }
.reveal-stagger > *:nth-child(10) { transition-delay: 0.95s; }
.reveal-stagger > *:nth-child(11) { transition-delay: 1.05s; }
.reveal-stagger > *:nth-child(12) { transition-delay: 1.15s; }

/* Directional reveal variants */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.88);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Animations for hero items loading */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpAnim 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-badge.fade-in-up { animation-delay: 0.1s; }
.hero-title.fade-in-up { animation-delay: 0.3s; }
.hero-subtitle.fade-in-up { animation-delay: 0.5s; }
.hero-desc.fade-in-up { animation-delay: 0.7s; }
.hero-actions.fade-in-up { animation-delay: 0.9s; }
.hero-social-strip.fade-in-up { animation-delay: 1.1s; }

@keyframes fadeInUpAnim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- Shimmer text effect on section subtitles ---- */
.section-subtitle {
    background: linear-gradient(
        90deg,
        var(--color-gold-dark) 0%,
        var(--color-gold) 40%,
        #ffe8b6 55%,
        var(--color-gold) 70%,
        var(--color-gold-dark) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 3.5s linear infinite;
}

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

/* ---- Gold animated underline on section titles ---- */
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active .section-title::after,
.section-header .section-title::after {
    width: 60%;
    transition-delay: 0.4s;
}

/* ---- Service cards 3D tilt + shimmer border on hover ---- */
.service-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent 30%,
        rgba(197, 168, 128, 0.06) 50%,
        transparent 70%
    );
    background-size: 300% 300%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
    animation: cardShimmer 1.5s linear;
}

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

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(197, 168, 128, 0.2);
}

/* ---- Feature card pop animation ---- */
.feature-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s ease,
                background-color 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-6px) scale(1.02);
}

/* ---- Package card entrance glow pulse ---- */
.package-card.featured {
    animation: featuredPulse 3s ease-in-out infinite;
}

@keyframes featuredPulse {
    0%, 100% { box-shadow: 0 20px 60px rgba(197, 168, 128, 0.2); }
    50% { box-shadow: 0 20px 70px rgba(197, 168, 128, 0.4), 0 0 30px rgba(197, 168, 128, 0.15); }
}

/* ---- Gallery item zoom + overlay slide in ---- */
.gallery-item {
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item img {
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

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

.gallery-overlay {
    transition: opacity 0.4s ease, backdrop-filter 0.4s ease;
}

/* ---- Button ripple effect ---- */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.25) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.btn:hover::after {
    opacity: 1;
    transform: scale(2);
}

/* ---- Testimonial card entrance ---- */
.testimonial-card.active {
    animation: testimonialEnter 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* ---- Stars twinkle in testimonials ---- */
.stars {
    display: inline-block;
    animation: starsTwinkle 2.5s ease-in-out infinite;
}

@keyframes starsTwinkle {
    0%, 100% { opacity: 1; letter-spacing: 0.08em; }
    50% { opacity: 0.75; letter-spacing: 0.15em; }
}

/* ---- Logo image subtle float ---- */
.logo-img {
    animation: logoFloat 5s ease-in-out infinite;
}

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

/* ---- WhatsApp badge pulse ring ---- */
.whatsapp-sticky-badge::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.5);
    animation: whatsappRing 2s ease-out infinite;
}

@keyframes whatsappRing {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ---- Floating particles background ---- */
.particle {
    position: fixed;
    pointer-events: none;
    border-radius: 50%;
    opacity: 0;
    z-index: 0;
    animation: particleDrift linear infinite;
}

@keyframes particleDrift {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.5; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-20px) rotate(720deg); opacity: 0; }
}

/* ---- Scroll indicator animated gold line ---- */
.arrow-down::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    animation: scrollArrow 1.8s ease-in-out infinite;
}

@keyframes scrollArrow {
    0% { transform: translateY(-100%); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateY(300%); opacity: 0; }
}

/* ---- Float slow (existing balloons) ---- */
@keyframes float-slow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(3deg); }
    66% { transform: translateY(-10px) rotate(-3deg); }
}

/* ---- About image parallax pulse ---- */
.about-image {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.03);
    box-shadow: 0 30px 70px rgba(197, 168, 128, 0.25);
}

/* ---- Footer social icon bounce ---- */
.footer-socials a svg,
.drawer-socials a svg {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), fill 0.3s ease;
}

.footer-socials a:hover svg {
    transform: translateY(-5px) scale(1.1);
    animation: iconBounce 0.5s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    40% { transform: translateY(-7px) scale(1.15); }
    60% { transform: translateY(-3px) scale(1.05); }
}

/* ---- Experience badge spin on hover ---- */
.about-experience-badge {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-image-wrapper:hover .about-experience-badge {
    transform: rotate(-5deg) scale(1.1);
}

/* ---- Form input focus glow ---- */
.luxury-form input:focus,
.luxury-form select:focus,
.luxury-form textarea:focus {
    animation: inputGlow 0.3s ease forwards;
}

@keyframes inputGlow {
    from { box-shadow: none; }
    to { box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15), 0 4px 15px rgba(197, 168, 128, 0.1); }
}

/* ---- Nav link shimmer on hover ---- */
.nav-link::after {
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    background-size: 200% auto;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover::after {
    animation: navLineShimmer 0.8s linear;
}

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

/* ---- Filter button active pulse ---- */
.filter-btn.active {
    animation: filterActivePop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes filterActivePop {
    0% { transform: scale(1); }
    50% { transform: scale(1.12); }
    100% { transform: scale(1); }
}

/* ---- Contact detail item hover lift ---- */
.detail-item {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.detail-item:hover {
    transform: translateX(6px);
}

/* ---- Package check icons pop in on reveal ---- */
.package-features li {
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.package-card.active .package-features li,
.package-card:hover .package-features li {
    opacity: 1;
    transform: translateX(0);
}

.package-card .package-features li:nth-child(1) { transition-delay: 0.05s; }
.package-card .package-features li:nth-child(2) { transition-delay: 0.12s; }
.package-card .package-features li:nth-child(3) { transition-delay: 0.19s; }
.package-card .package-features li:nth-child(4) { transition-delay: 0.26s; }

/* ==========================================================================
   14. Responsive Layout Breakpoints
   ========================================================================== */

/* Large tablets / smaller desktops (Under 1200px) */
@media (max-width: 1200px) {
    .section-container {
        padding: 0 24px;
    }

    .header-container {
        padding: 18px 24px;
    }

    .nav-menu ul {
        gap: 24px;
    }

    .about-grid {
        gap: 50px;
    }

    .packages-grid {
        gap: 25px;
    }

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

/* Tablet & Smaller Desktops (Under 1024px) */
@media (max-width: 1024px) {
    section {
        padding: 90px 0;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        height: 420px;
    }

    .about-image-wrapper {
        padding-right: 20px;
        padding-bottom: 20px;
    }

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

    .package-card {
        padding: 35px 30px;
    }

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

    .package-card.featured:hover {
        transform: translateY(-8px);
    }

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

    .gallery-item {
        height: 320px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .col-brand {
        grid-column: span 2;
    }

    .testimonial-text {
        font-size: 1.5rem;
    }
}

/* Mobile Screens (Under 768px) */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    section {
        padding: 70px 0;
    }

    .section-container {
        padding: 0 18px;
    }

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

    .section-desc {
        font-size: 1rem;
    }

    .section-header {
        margin-bottom: 45px;
    }

    /* ---- Header ---- */
    .header-container {
        padding: 16px 18px;
    }

    .nav-menu,
    .header-actions .btn-nav-cta {
        display: none;
    }

    .mobile-nav-toggle {
        display: flex;
    }

    .logo-img {
        height: 38px;
    }

    /* ---- Hero ---- */
    .hero-section {
        justify-content: center;
        text-align: center;
        padding: 100px 16px 60px 16px;
        min-height: 100svh;
    }

    .hero-background {
        background-position: center center;
    }

    .hero-content-wrapper {
        align-items: center;
        background-color: rgba(253, 249, 247, 0.88);
        padding: 36px 22px;
        border-radius: var(--border-radius-lg);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(197, 168, 128, 0.2);
        max-width: 95%;
        margin-top: 0;
    }

    .hero-title {
        font-size: clamp(2.6rem, 9vw, 3.2rem);
    }

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

    .hero-desc {
        font-size: 0.92rem;
    }

    .hero-divider {
        justify-content: center;
        margin: 12px auto 18px auto;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .scroll-indicator {
        display: none;
    }

    .floating-balloon {
        display: none;
    }

    /* ---- About ---- */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-collage {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-image-wrapper {
        padding-right: 25px;
        padding-bottom: 40px;
        margin-top: 20px;
        display: flex;
        justify-content: center;
    }

    .collage-img-2 {
        bottom: -20px;
        right: -10px;
        border-width: 5px;
    }

    .image-accent-border {
        top: 20px;
        bottom: -5px;
        left: 20px;
        right: -5px;
    }

    .about-experience-badge {
        width: 80px;
        height: 80px;
        padding: 14px;
        top: -14px;
        left: -14px;
    }

    .about-experience-badge .num {
        font-size: 1.1rem;
    }

    .about-experience-badge .lbl {
        font-size: 0.48rem;
    }

    .about-text {
        font-size: 1rem;
        margin-bottom: 28px;
    }

    .about-us-features {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .feature-card.wide {
        grid-column: span 2;
    }

    .feature-card {
        padding: 18px;
    }

    /* ---- Services ---- */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 28px 22px;
    }

    /* ---- Packages ---- */
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 100%;
    }

    .package-card {
        padding: 30px 22px;
    }

    .package-price .amount {
        font-size: 2.8rem;
    }

    /* ---- Gallery ---- */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .gallery-item {
        height: 240px;
    }

    .gallery-filters {
        gap: 10px;
        margin-bottom: 35px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.78rem;
    }

    /* ---- Testimonials ---- */
    .testimonial-text {
        font-size: 1.2rem;
        padding: 0 10px;
    }

    .testimonial-card {
        padding: 0 16px;
    }

    /* ---- Contact ---- */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-panel {
        padding: 28px 18px;
        overflow: hidden;
    }

    /* Fix form fields overflowing screen */
    .luxury-form,
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Compact side-by-side social buttons on mobile */
    .contact-social-buttons {
        flex-direction: row;
        gap: 10px;
    }

    .social-btn {
        flex: 1;
        padding: 11px 10px;
        font-size: 0.72rem;
        letter-spacing: 0.03em;
        gap: 7px;
    }

    .social-btn svg {
        width: 15px;
        height: 15px;
        flex-shrink: 0;
    }

    .contact-intro {
        font-size: 1rem;
    }

    /* ---- Footer ---- */
    .footer {
        padding: 60px 0 30px;
    }

    .footer-container {
        padding: 0 18px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 40px;
    }

    .col-brand {
        grid-column: span 1;
    }

    .footer-tagline {
        max-width: 100%;
    }

    /* ---- Lightbox ---- */
    .lightbox-content {
        max-width: 96%;
        max-height: 90%;
    }

    .lightbox-prev { left: 8px; font-size: 1.8rem; }
    .lightbox-next { right: 8px; font-size: 1.8rem; }
    .lightbox-close { right: 12px; top: 14px; font-size: 2rem; }
    .lightbox-caption { font-size: 1.1rem; margin-top: 14px; }

    /* ---- WhatsApp badge ---- */
    .whatsapp-sticky-badge {
        bottom: 20px;
        right: 18px;
        width: 52px;
        height: 52px;
    }

    .whatsapp-sticky-badge svg {
        width: 26px;
        height: 26px;
    }
}

/* Small Mobile (Under 480px) */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    section {
        padding: 60px 0;
    }

    .section-container {
        padding: 0 14px;
    }

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

    .section-header {
        margin-bottom: 35px;
    }

    /* ---- Header ---- */
    .header-container {
        padding: 14px;
    }

    .logo-img {
        height: 34px;
    }

    /* ---- Hero ---- */
    .hero-section {
        padding: 90px 12px 50px 12px;
    }

    .hero-content-wrapper {
        padding: 28px 16px;
        max-width: 100%;
        border-radius: var(--border-radius-md);
    }

    .hero-title {
        font-size: clamp(2.3rem, 9.5vw, 2.8rem);
    }

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

    .hero-desc {
        font-size: 0.88rem;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.82rem;
    }

    /* ---- About ---- */
    .about-image-wrapper {
        padding-right: 20px;
        padding-bottom: 30px;
        margin-top: 15px;
    }

    .collage-img-2 {
        bottom: -15px;
        right: -5px;
        border-width: 4px;
    }

    .image-accent-border {
        top: 15px;
        bottom: 0px;
        left: 15px;
        right: 0px;
    }

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

    .feature-card.wide {
        grid-column: span 1;
    }

    /* ---- Packages ---- */
    .package-card {
        padding: 26px 18px;
    }

    .package-name {
        font-size: 1.5rem;
    }

    .package-price .amount {
        font-size: 2.4rem;
    }

    /* ---- Gallery ---- */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .gallery-item {
        height: 260px;
    }

    .gallery-filters {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .gallery-filters::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        flex-shrink: 0;
    }

    /* ---- Testimonials ---- */
    .testimonial-text {
        font-size: 1.05rem;
    }

    /* ---- Contact ---- */
    .contact-form-panel {
        padding: 22px 14px;
        overflow: hidden;
    }

    /* Keep form fields within screen width */
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .form-title {
        font-size: 1.6rem;
    }

    .detail-item {
        gap: 14px;
    }

    .detail-icon {
        width: 42px;
        height: 42px;
    }

    .detail-icon svg {
        width: 18px;
        height: 18px;
    }

    /* Even more compact social buttons on very small screens */
    .social-btn {
        padding: 10px 8px;
        font-size: 0.68rem;
        gap: 5px;
    }

    .social-btn svg {
        width: 14px;
        height: 14px;
    }

    /* ---- Footer ---- */
    .footer-grid {
        gap: 28px;
    }

    .footer {
        padding: 50px 0 24px;
    }

    /* ---- Lightbox ---- */
    .lightbox-prev { left: 4px; font-size: 1.5rem; padding: 10px; }
    .lightbox-next { right: 4px; font-size: 1.5rem; padding: 10px; }
    .lightbox-caption { font-size: 1rem; }

    /* ---- Mobile drawer ---- */
    .mobile-drawer {
        width: 90%;
        padding: 70px 28px 30px 28px;
    }

    .mobile-link {
        font-size: 1.7rem;
    }
}

/* Extra Small (Under 360px) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 2.1rem;
    }

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

    .package-price .amount {
        font-size: 2rem;
    }

    .contact-social-buttons {
        gap: 10px;
    }

    .mobile-drawer {
        width: 100%;
        border-radius: 0;
    }
}

