/* ======= ROMANTIC WEDDING LUXURY VARIABLES ======= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600&family=Great+Vibes&display=swap');

:root {
    --primary-color: #8D5A5A; /* Dusty Rose / Soft Maroon */
    --primary-light: #B47C7C;
    --accent-color: #D4AF37; /* Classic Gold */
    --accent-hover: #AA8428;
    --bg-blush: #FCF7F7; /* Very Soft Blush Pink */
    --bg-white: #FFFFFF;
    --bg-dark: #3A2F2F; /* Warm Charcoal */
    --text-dark: #3A2F2F;
    --text-body: #665D5D;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --font-script: 'Great Vibes', cursive;
    
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 10px 40px 0 rgba(141, 90, 90, 0.08);
    
    --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition: all 0.3s ease;
}

/* ======= RESET & BASE ======= */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--bg-white);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    /* Security Locks */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

img {
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none;
}


h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.2;
}

a { text-decoration: none; transition: var(--transition); }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 768px) { .container { padding: 0 16px; } }
@media (max-width: 576px) { .container { padding: 0 12px; } }
.section { padding: 100px 0; }
@media (max-width: 992px) { .section { padding: 80px 0; } }
@media (max-width: 768px) { .section { padding: 60px 0; } }
@media (max-width: 576px) { .section { padding: 40px 0; } }
.bg-blush {
    background-color: var(--bg-blush);
    background-image: url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><path d="M20 0C20 11.0457 11.0457 20 0 20C11.0457 20 20 28.9543 20 40C20 28.9543 28.9543 20 40 20C28.9543 20 20 11.0457 20 0Z" fill="%23D4AF37" fill-opacity="0.06" fill-rule="evenodd"/></svg>');
    background-size: 80px 80px;
}
.bg-white { background-color: var(--bg-white); }
.text-center { text-align: center; }
.text-white { color: var(--bg-white) !important; }
.text-gold { color: var(--accent-color) !important; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mt-6 { margin-top: 4.5rem; }
.mb-4 { margin-bottom: 2rem; }
.w-100 { width: 100%; }
.opacity-80 { opacity: 0.8; }

/* ======= TYPOGRAPHY ======= */
.script-accent {
    font-family: var(--font-script);
    color: var(--accent-color);
    font-size: 56px;
    display: block;
    margin-bottom: 5px;
    line-height: 1;
    position: relative;
    display: inline-block;
}
@media (max-width: 992px) { .script-accent { font-size: 48px; } }
@media (max-width: 768px) { .script-accent { font-size: 40px; } }
@media (max-width: 576px) { .script-accent { font-size: 32px; } }

.hero-title {
    font-size: 5rem;
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.1;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.3);
}
@media (max-width: 992px) { .hero-title { font-size: 3.5rem; } }
@media (max-width: 768px) { .hero-title { font-size: 2.5rem; } }
@media (max-width: 576px) { .hero-title { font-size: 2rem; } }

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}
.script-accent::after {
    content: '✨';
    position: absolute;
    top: -10px; right: -25px;
    font-size: 20px;
    color: var(--accent-color);
    animation: pulseSparkle 2s infinite;
}
@keyframes pulseSparkle {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; text-shadow: 0 0 10px var(--accent-color); }
    100% { transform: scale(0.8); opacity: 0.5; }
}
.section-header h2 { font-size: 46px; margin-bottom: 15px; }
@media (max-width: 992px) { .section-header h2 { font-size: 38px; } }
@media (max-width: 768px) { .section-header h2 { font-size: 32px; } }
@media (max-width: 576px) { .section-header h2 { font-size: 28px; } }

/* Floral Divider instead of strict lines */
.floral-divider {
    display: flex; align-items: center; justify-content: center;
    margin: 30px auto 40px; gap: 20px;
}
.floral-divider.left-align { justify-content: flex-start; margin-left: 0; }
.floral-divider i { color: var(--accent-color); font-size: 28px; opacity: 1; }
.floral-divider span {
    display: block; width: 120px; height: 2px; background-color: var(--accent-color); opacity: 0.8; position: relative;
}
@media (max-width: 768px) { .floral-divider span { width: 80px; } }
@media (max-width: 576px) { .floral-divider span { width: 60px; } }
.floral-divider span::before, .floral-divider span::after {
    content: ''; position: absolute; width: 8px; height: 8px; background: var(--accent-color); border-radius: 50%; top: -3px;
}
.floral-divider span::before { left: 0; }
.floral-divider span::after { right: 0; }

.large-p { font-size: 18px; line-height: 1.8; color: var(--text-body); margin-bottom: 20px; font-weight: 300;}
.intro-text { max-width: 800px; margin: 0 auto; font-size: 18px; line-height: 1.8; font-weight: 300; }
.intro-text p { margin-bottom: 20px; }

/* ======= BUTTONS ======= */
.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--bg-white);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    border-radius: 40px;
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(141, 90, 90, 0.3), inset 0 0 10px rgba(255,255,255,0.2);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 768px) { .btn-primary { padding: 14px 32px; font-size: 14px; min-height: 44px; } }
@media (max-width: 576px) { .btn-primary { padding: 12px 24px; font-size: 13px; min-height: 44px; } }
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shine 4s infinite;
}
@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4), inset 0 0 15px rgba(255,255,255,0.4);
    border-color: var(--accent-color);
}
.btn-outline {
    display: inline-block;
    padding: 14px 38px;
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    border-radius: 40px;
    transition: var(--transition);
    box-shadow: inset 0 0 0 rgba(212, 175, 55, 0);
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 768px) { .btn-outline { padding: 12px 32px; font-size: 14px; min-height: 44px; } }
@media (max-width: 576px) { .btn-outline { padding: 10px 24px; font-size: 13px; min-height: 44px; } }
.btn-outline:hover {
    background: var(--accent-color);
    color: var(--bg-white);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3), inset 0 0 15px rgba(255,255,255,0.3);
}

/* ======= TOP BAR ======= */
.top-bar {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.8);
    padding: 10px 0;
    font-size: 13px;
    font-weight: 300;
    position: relative;
    z-index: 1001;
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.top-contact span { margin-right: 25px; }
.top-contact i { color: var(--accent-color); margin-right: 8px; }
.top-social a { color: rgba(255,255,255,0.8); margin-left: 15px; transition: var(--transition); }
.top-social a:hover { color: var(--accent-color); }
.btn-legal {
    display: inline-block;
    padding: 6px 15px;
    font-size: 11px;
    letter-spacing: 1px;
    color: #fff !important;
    background: var(--primary-color);
    border-radius: 4px;
    margin-left: 10px;
    line-height: 1;
    transition: var(--transition);
}
.btn-legal:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* ======= NAVIGATION ======= */
.glass-nav {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
    z-index: 1000;
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; padding: 0 15px; gap: 25px; flex-wrap: wrap; }
@media (max-width: 992px) { .nav-container { gap: 15px; padding: 0 10px; } }
@media (max-width: 576px) { .nav-container { padding: 0 8px; gap: 10px; } }
.logo { margin-right: 0; }
.logo a {
    font-family: var(--font-heading);
    font-size: 19px; 
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.nav-links { display: flex; align-items: center; gap: 20px; margin: 0; padding: 0; }
.nav-links a:not(.btn-primary) {
    font-family: var(--font-body);
    font-size: 13px; /* Slightly smaller link font */
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    white-space: nowrap;
}
.nav-actions .btn-primary {
    padding: 10px 18px; /* Further reduced padding */
    font-size: 12px; /* Smaller font for CTA */
    white-space: nowrap;
}
.nav-links a:not(.btn-primary)::after {
    content: ''; position: absolute;
    width: 0; height: 1px;
    bottom: -4px; left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
}
.nav-links a:not(.btn-primary):hover::after { width: 100%; }
.nav-links a:not(.btn-primary):hover { color: var(--primary-color); }

.mobile-menu-btn {
    display: none;
    font-size: 26px;
    color: var(--primary-color);
    cursor: pointer;
}

/* ======= ROMANTIC HERO SECTION ======= */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--bg-blush);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
@media (max-width: 992px) { .hero-section { height: 90vh; min-height: 600px; background-attachment: scroll; } }
@media (max-width: 768px) { .hero-section { height: auto; min-height: 90vh; min-height: 90dvh; padding: 60px 0; background-attachment: scroll; } }
@media (max-width: 576px) { .hero-section { min-height: 100vh; min-height: 100dvh; padding: 40px 0; } }
.hero-bg-video {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-bg-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.8));
    z-index: 1;
}
.hero-container {
    position: relative; z-index: 10;
    width: 100%; display: flex; justify-content: center;
}
.wedding-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid var(--accent-color);
    padding: 80px 50px 70px;
    border-radius: 200px 200px 10px 10px; /* Grand Archway */
    text-align: center;
    max-width: 750px;
    box-shadow: 0 30px 60px rgba(141, 90, 90, 0.2), inset 0 0 0 10px rgba(255, 255, 255, 1), inset 0 0 0 13px var(--accent-color);
    position: relative;
    overflow: hidden;
}
@media (max-width: 992px) { .wedding-card { padding: 60px 40px 50px; max-width: 650px; } }
@media (max-width: 768px) { .wedding-card { padding: 50px 30px 40px; max-width: 90%; border-radius: 120px 120px 10px 10px; margin: 0 auto; } }
@media (max-width: 576px) { .wedding-card { padding: 40px 20px 30px; border-radius: 80px 80px 10px 10px; } }
.wedding-card > * { position: relative; z-index: 2; }

.mandala-top, .mandala-bottom {
    position: absolute;
    left: 50%;
    width: 250px; height: 125px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 100" xmlns="http://www.w3.org/2000/svg"><circle cx="100" cy="0" r="90" fill="none" stroke="%23D4AF37" stroke-width="2" opacity="0.4"/><circle cx="100" cy="0" r="70" fill="none" stroke="%23D4AF37" stroke-width="2" stroke-dasharray="5,5" opacity="0.6"/><circle cx="100" cy="0" r="50" fill="none" stroke="%23D4AF37" stroke-width="2" opacity="0.8"/><circle cx="100" cy="0" r="30" fill="%23D4AF37" opacity="0.3"/><path d="M10,0 C40,60 160,60 190,0" fill="none" stroke="%23D4AF37" stroke-width="1.5" opacity="0.5"/><path d="M30,0 C60,40 140,40 170,0" fill="none" stroke="%23D4AF37" stroke-width="1.5" opacity="0.6"/><path d="M50,0 C80,25 120,25 150,0" fill="none" stroke="%23D4AF37" stroke-width="1" opacity="0.7"/><path d="M70,0 C90,15 110,15 130,0" fill="%23D4AF37" opacity="0.4"/></svg>');
    background-size: cover;
    pointer-events: none;
    z-index: 0;
}
.mandala-top { top: 13px; transform: translateX(-50%); }
.mandala-bottom { bottom: 13px; transform: translateX(-50%) rotate(180deg); }

.fa-corner {
    position: absolute;
    color: var(--accent-color);
    font-size: 35px;
    opacity: 0.8;
    z-index: 1;
}
.fa-corner.top-left { top: 30px; left: 30px; transform: rotate(-45deg); }
.fa-corner.top-right { top: 30px; right: 30px; transform: rotate(45deg); }
.fa-corner.bottom-left { bottom: 30px; left: 30px; transform: rotate(-135deg); }
.fa-corner.bottom-right { bottom: 30px; right: 30px; transform: rotate(135deg); }
.wedding-card .script-accent { font-size: 56px; margin-bottom: 10px; }
.wedding-card h1 {
    color: var(--primary-color);
    font-size: 54px;
    margin: 10px 0 20px;
    font-weight: 500;
    line-height: 1.2;
}
@media (max-width: 992px) { .wedding-card h1 { font-size: 44px; } }
@media (max-width: 768px) { .wedding-card h1 { font-size: 36px; } }
@media (max-width: 576px) { .wedding-card h1 { font-size: 28px; } }
.wedding-card p {
    color: var(--text-body);
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 30px;
    padding: 0 20px;
}
.hero-buttons { display: flex; justify-content: center; gap: 20px; }

/* ======= FEATURES GRID ======= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
@media (max-width: 1200px) { .features-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (max-width: 992px) { .features-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 768px) { .features-grid { grid-template-columns: 1fr; gap: 15px; } }
.feature-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(141,90,90,0.05);
    border: 1px solid #F0E6E6;
    transition: var(--transition-slow);
}
@media (max-width: 768px) { .feature-card { padding: 30px 20px; } }
@media (max-width: 576px) { .feature-card { padding: 20px 15px; } }
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(141,90,90,0.1);
    border-color: var(--primary-light);
}
.icon-box {
    width: 70px; height: 70px;
    background: var(--bg-blush);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    border: 1px solid #F0E6E6;
}
.feature-card h3 { font-size: 20px; margin-bottom: 15px; color: var(--text-dark); font-family: var(--font-heading); }
.feature-card p { font-size: 15px; color: var(--text-body); font-weight: 300; line-height: 1.7; }

/* ======= SPLIT LAYOUT ======= */
.split-layout { display: flex; align-items: center; gap: 80px; }
@media (max-width: 992px) { .split-layout { gap: 50px; } }
@media (max-width: 768px) { .split-layout { flex-direction: column; gap: 30px; } }
.split-layout.reverse { flex-direction: row-reverse; }
.split-content { flex: 1; }
.split-content h2 { font-size: 42px; color: var(--text-dark); margin-bottom: 5px; }
@media (max-width: 992px) { .split-content h2 { font-size: 36px; } }
@media (max-width: 768px) { .split-content h2 { font-size: 28px; } }
.split-image-group { flex: 1; position: relative; }
.romantic-border {
    padding: 15px;
    background: var(--bg-white);
    box-shadow: 0 15px 40px rgba(141,90,90,0.1);
    border: 1px solid #F0E6E6;
    border-radius: 8px;
}
.romantic-border img { width: 100%; height: auto; display: block; border-radius: 4px; }

/* LISTS */
.custom-list { list-style: none; padding: 0; }
.custom-list li {
    font-size: 16px; margin-bottom: 15px;
    display: flex; align-items: center; font-weight: 300; color: var(--text-body);
}
.custom-list i { color: var(--primary-light); font-size: 20px; margin-right: 15px; }

/* ======= BANNER / TAGS ======= */
.parallax-banner {
    background: linear-gradient(rgba(58, 47, 47, 0.6), rgba(58, 47, 47, 0.6)), url('assets/wedding-2.jpg') center/cover fixed;
}
.parallax-banner-2 {
    background: linear-gradient(rgba(58, 47, 47, 0.7), rgba(58, 47, 47, 0.7)), url('assets/weddingg.png') center/cover fixed;
}
.tags-flex { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
.glass-tag {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 24px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    backdrop-filter: blur(5px);
    color: var(--bg-white);
}
.glass-highlight {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--accent-color);
    padding: 20px 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.glass-highlight h4 { color: var(--primary-color); font-size: 24px; margin: 0; font-family: var(--font-heading); font-weight: 500;}

/* ======= CARD GRID ======= */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
@media (max-width: 1200px) { .card-grid { gap: 20px; } }
@media (max-width: 992px) { .card-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 768px) { .card-grid { grid-template-columns: 1fr; gap: 15px; } }
.image-card {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(141,90,90,0.05);
    border: 1px solid #F0E6E6;
    transition: var(--transition-slow);
}
.image-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(141,90,90,0.12); }
.romantic-border-top { padding: 0; background: var(--bg-white); }

.img-wrapper { height: 350px; overflow: hidden; border-radius: 120px 120px 15px 15px; border: 4px solid white; margin: 0; box-shadow: 0 15px 35px rgba(0,0,0,0.1); position: relative; }

.img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.image-card:hover .img-wrapper img { transform: scale(1.1); }
.img-wrapper::after {
    content: ''; position: absolute; top: 8px; left: 8px; right: 8px; bottom: 8px;
    border: 1px solid var(--accent-color); border-radius: 110px 110px 10px 10px; pointer-events: none; opacity: 0.3;
}

.card-body { padding: 30px; }
.card-body h3 { font-size: 24px; color: var(--text-dark); margin-bottom: 12px; font-family: var(--font-heading); }
.card-body p { font-size: 15px; color: var(--text-body); font-weight: 300; }

/* ======= INFO BANNER ======= */
/* ======= INFO BANNER ======= */
.info-banner {
    background: var(--bg-white);
    border: 1px solid var(--accent-color);
    padding: 40px 50px;
    display: flex; align-items: center; justify-content: space-between;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(141,90,90,0.06), inset 0 0 20px rgba(212,175,55,0.1);
    position: relative;
    overflow: hidden;
}
@media (max-width: 992px) { .info-banner { padding: 35px 40px; } }
@media (max-width: 768px) { .info-banner { padding: 30px 25px; } }
@media (max-width: 576px) { .info-banner { padding: 20px 15px; } }
.info-banner::before, .info-banner::after {
    content: '\f1bb'; /* Leaf icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    color: var(--accent-color);
    font-size: 40px;
    opacity: 0.15;
}
.info-banner::before { top: -10px; left: -10px; transform: rotate(-45deg); }
.info-banner::after { bottom: -10px; right: -10px; transform: rotate(135deg); }
.info-banner-content { flex: 1; margin-right: 40px; position: relative; z-index: 2; }
.info-banner-content h3 { font-size: 28px; color: var(--text-dark); margin-bottom: 10px; }
.info-banner-content p { font-size: 16px; color: var(--text-body); font-weight: 300; }
.info-banner-action { position: relative; z-index: 2; }

/* ======= CATERING GRID ======= */
.catering-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 992px) { .catering-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; } }
@media (max-width: 768px) { .catering-grid { grid-template-columns: 1fr; gap: 12px; } }
.cat-box {
    background: var(--bg-white);
    border: 1px solid #F0E6E6;
    padding: 25px 20px;
    text-align: center;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--text-dark);
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(141,90,90,0.03);
    transition: var(--transition);
    position: relative;
}
.cat-box::after {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 8px;
    border: 1px solid var(--accent-color);
    opacity: 0; transition: var(--transition);
    box-shadow: inset 0 0 10px rgba(212,175,55,0.2);
}
.cat-box:hover {
    background: var(--bg-blush);
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(141,90,90,0.08), 0 0 15px rgba(212,175,55,0.3);
}
.cat-box:hover::after {
    opacity: 1;
}

/* ======= ROYAL RESORT CARDS ======= */
.resort-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 20px 0;
}
@media (max-width: 1200px) { .resort-grid { gap: 30px; } }
@media (max-width: 992px) { .resort-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; } }
@media (max-width: 768px) { .resort-grid { grid-template-columns: 1fr; gap: 20px; } }
.royal-resort-card {
    position: relative;
    padding: 15px;
    background: var(--bg-white);
    border: 1px solid var(--accent-color);
    border-radius: 180px 180px 15px 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: var(--transition-slow);
    text-align: center;
}
.royal-resort-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(212,175,55,0.4);
    border-color: var(--primary-light);
}
@media (max-width: 768px) { .royal-resort-card:hover { transform: translateY(-8px); } }
@media (max-width: 576px) { .royal-resort-card { padding: 10px; } .resort-arch-img { height: 200px; } }
.royal-card-inner {
    border: 1px dashed var(--accent-color);
    border-radius: 170px 170px 10px 10px;
    overflow: hidden;
    background: var(--bg-blush);
    height: 100%;
    position: relative;
}
.resort-arch-img {
    height: 320px;
    overflow: hidden;
    border-radius: 140px 140px 15px 15px;
    border: 4px solid white;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
}

.resort-arch-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.resort-arch-img::after {
    content: ''; position: absolute; top: 8px; left: 8px; right: 8px; bottom: 8px;
    border: 1px solid var(--accent-color); border-radius: 130px 130px 10px 10px; pointer-events: none; opacity: 0.3;
}

.royal-resort-card:hover .resort-arch-img img {
    transform: scale(1.1);
}
.resort-card-content {
    padding: 30px 20px;
    position: relative;
    z-index: 2;
}
.mini-mandala {
    width: 60px; height: 60px;
    margin: -60px auto 15px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="48" fill="%23FCF7F7" stroke="%23D4AF37" stroke-width="2"/><circle cx="50" cy="50" r="38" fill="none" stroke="%23D4AF37" stroke-width="1" stroke-dasharray="4,4"/><path d="M50,12 L56,38 L82,44 L56,50 L50,76 L44,50 L18,44 L44,38 Z" fill="%23D4AF37" opacity="0.9"/></svg>');
    background-size: cover;
    position: relative;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: transform 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.royal-resort-card:hover .mini-mandala {
    transform: rotate(360deg);
}
.resort-card-content h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-family: var(--font-heading);
}
.resort-card-content p {
    font-size: 15px;
    color: var(--text-body);
    font-weight: 300;
    margin-bottom: 20px;
}
.btn-sm {
    padding: 10px 28px;
    font-size: 14px;
}

/* ======= GOLDEN RING CEREMONIES ======= */
.ring-ceremony-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border: 1px solid rgba(212,175,55,0.2);
    transition: transform 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.ring-ceremony-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 5px;
    background: var(--accent-color);
}
.ring-ceremony-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(212,175,55,0.15);
}
.golden-ring {
    width: 220px;
    height: 220px;
    margin: 0 auto 30px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    padding: 10px;
    position: relative;
    background: var(--bg-blush);
}
.golden-ring::before {
    content: '';
    position: absolute;
    top: -8px; left: -8px; right: -8px; bottom: -8px;
    border-radius: 50%;
    border: 1px dashed var(--accent-color);
    animation: spinRotate 15s linear infinite;
}
@keyframes spinRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.golden-ring img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.ring-ceremony-card h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}
.ring-ceremony-card p {
    font-size: 15px;
    color: var(--text-body);
    margin-bottom: 25px;
    line-height: 1.6;
}
.ceremony-features {
    list-style: none;
    padding: 0;
    text-align: left;
    display: inline-block;
    background: var(--bg-blush);
    padding: 20px;
    border-radius: 10px;
    width: 100%;
}
.ceremony-features li {
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}
.ceremony-features li:last-child {
    margin-bottom: 0;
}
.ceremony-features li i {
    color: var(--accent-color);
    margin-right: 12px;
    font-size: 16px;
}

/* ======= GALLERY SECTION ======= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 10px 30px rgba(141,90,90,0.1);
    border: 1px solid #F0E6E6;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(141, 90, 90, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery-overlay i {
    color: var(--bg-white);
    font-size: 32px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-item:hover .gallery-overlay i {
    transform: translateY(0);
}

/* ======= REVIEWS SECTION ======= */
.review-parallax {
    background: linear-gradient(rgba(14, 33, 27, 0.8), rgba(14, 33, 27, 0.9)), url('assets/venue-1.jpg') center/cover fixed;
    position: relative;
}
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
@media (max-width: 992px) { .review-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 768px) { .review-grid { grid-template-columns: 1fr; gap: 15px; } }
.review-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}
.review-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border-color: rgba(212, 175, 55, 0.4);
}
.quote-icon {
    font-size: 40px;
    color: var(--accent-color);
    opacity: 0.6;
    margin-bottom: 20px;
    display: block;
}
.review-text {
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
}
.reviewer-info h4 {
    color: var(--accent-color);
    font-size: 22px;
    margin-bottom: 5px;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}
.reviewer-info span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ======= ADVANCED LUXURY DECORATIONS ======= */

/* Shimmering Gold Headings */
.section-header h2, .split-content h2, .contact-info-premium h3, .wedding-card h1 {
    background: linear-gradient(to right, var(--text-dark) 20%, var(--accent-color) 40%, var(--accent-color) 60%, var(--text-dark) 80%);
    background-size: 200% auto;
    color: #000;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 5s linear infinite;
}
@keyframes shineText {
    to { background-position: 200% center; }
}

/* Parallax Double Border on Split Images */
.split-image-group {
    position: relative;
    z-index: 1;
}
.split-image-group::before {
    content: '';
    position: absolute;
    top: 20px; left: -20px;
    width: 100%; height: 100%;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    z-index: -1;
    transition: transform 0.6s ease;
    pointer-events: none;
}
.split-layout:hover .split-image-group::before {
    transform: translate(15px, -15px);
}
.romantic-border {
    position: relative;
    z-index: 2;
    transition: transform 0.6s ease;
}
.split-layout:hover .romantic-border {
    transform: translate(-10px, 10px);
}

/* Floating Action Button */
.floating-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, var(--accent-color), #f9d976);
    color: var(--bg-dark);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5), 0 0 0 0 rgba(212, 175, 55, 0.7);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulseRing 2s infinite cubic-bezier(0.66, 0, 0, 1);
    min-height: 44px;
}
@media (max-width: 768px) { .floating-btn { bottom: 30px; right: 30px; padding: 12px 20px; font-size: 14px; } }
@media (max-width: 576px) { .floating-btn { bottom: 20px; right: 20px; padding: 10px 16px; font-size: 12px; } }
.floating-btn i { font-size: 20px; }
.floating-btn:hover {
    transform: translateY(-5px) scale(1.05);
    color: var(--bg-dark);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6);
    animation: none;
}
@keyframes pulseRing {
    to { box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5), 0 0 0 20px rgba(212, 175, 55, 0); }
}

/* ======= FAQ ACCORDION ======= */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--bg-blush);
    border: 1px solid #F0E6E6;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover {
    box-shadow: 0 10px 20px rgba(141,90,90,0.05);
}
.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 25px;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}
.faq-question i {
    color: var(--accent-color);
    transition: transform 0.3s ease;
}
.faq-question.active i {
    transform: rotate(180deg);
}
.faq-question.active {
    color: var(--primary-color);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--bg-white);
}
.faq-answer p {
    padding: 0 25px;
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 300;
    color: var(--text-body);
}
.faq-item.active .faq-answer {
    max-height: 500px; /* Arbitrary large max-height for animation */
    padding-top: 15px;
}

/* ======= CONTACT ======= */
.contact-section { position: relative; }
.contact-glass-box {
    display: flex;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(141,90,90,0.1), inset 0 0 0 2px var(--accent-color);
    border: 4px solid transparent;
    position: relative;
    background-clip: padding-box;
}
.contact-glass-box::before {
    content: ''; position: absolute;
    top: -4px; right: -4px; bottom: -4px; left: -4px;
    z-index: -1;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 16px;
}
.contact-info-premium {
    flex: 1;
    background: var(--primary-color);
    padding: 60px;
    position: relative;
    overflow: hidden;
}
@media (max-width: 992px) { .contact-info-premium { padding: 50px; } }
@media (max-width: 768px) { .contact-info-premium { padding: 40px; } }
@media (max-width: 576px) { .contact-info-premium { padding: 30px; } }
.contact-info-premium::before {
    content: ''; position: absolute; top: -50%; right: -50%;
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}
.contact-info-premium h3 { font-size: 36px; color: var(--bg-white); font-family: var(--font-heading); }
.c-detail { display: flex; align-items: flex-start; margin-bottom: 25px; color: var(--bg-white); }
.c-detail i { color: var(--bg-blush); font-size: 24px; margin-right: 20px; margin-top: 5px; }
.c-detail h4 { color: var(--bg-white); font-size: 16px; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 1px; font-family: var(--font-body); font-weight: 400;}
.c-detail span { font-size: 16px; font-weight: 300; opacity: 0.9; }

.contact-form-premium { flex: 1.5; padding: 60px; background: var(--bg-white); }
@media (max-width: 992px) { .contact-form-premium { padding: 50px; } }
@media (max-width: 768px) { .contact-form-premium { padding: 40px; } }
@media (max-width: 576px) { .contact-form-premium { padding: 30px; } }
.form-row { display: flex; gap: 20px; }
.input-group { margin-bottom: 25px; flex: 1; }
.input-group label { display: block; font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; color: var(--text-dark); }
.input-group input, .input-group textarea {
    width: 100%; padding: 15px 0;
    border: none; border-bottom: 1px solid #DDDDDD;
    background: transparent;
    font-family: var(--font-body); font-size: 16px;
    transition: var(--transition);
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}
@media (max-width: 768px) { .input-group input, .input-group textarea { padding: 12px 0; font-size: 14px; } }
.input-group input:focus, .input-group textarea:focus {
    outline: none; border-bottom-color: var(--primary-color);
}

/* ======= FOOTER ======= */
.site-footer-premium {
    background: var(--bg-dark);
    color: var(--bg-white);
    padding: 80px 0 30px;
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px;
    margin-bottom: 60px;
}
@media (max-width: 992px) { .footer-grid { gap: 40px; grid-template-columns: 1.5fr 1fr 1fr; } }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }
.footer-brand h2 { color: var(--accent-color); font-size: 36px; margin-bottom: 20px; font-family: var(--font-heading); }
.footer-brand p { color: rgba(255,255,255,0.7); font-weight: 300; max-width: 350px; line-height: 1.8; }
.social-icons a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--bg-white); margin-right: 10px;
    transition: var(--transition);
}
.social-icons a:hover { background: var(--primary-color); border-color: var(--primary-color); color: var(--bg-white); transform: translateY(-3px); }
.footer-links h3 { color: var(--bg-white); font-size: 20px; margin-bottom: 25px; font-family: var(--font-heading); font-weight: 500; }
.footer-links ul li { margin-bottom: 15px; }
.footer-links a { color: rgba(255,255,255,0.7); font-weight: 300; }
.footer-links a:hover { color: var(--accent-color); padding-left: 5px; }
.footer-bottom {
    text-align: center; padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5); font-size: 14px;
}

/* ======= LUXURY BOOKING BAR ======= */
.landscape-enquiry-wrapper {
    position: relative;
    z-index: 20;
    margin-top: -60px;
    margin-bottom: 50px;
}
.luxury-booking-bar {
    background: var(--bg-white);
    padding: 25px 35px;
    border-radius: 8px; /* Classic sharp elegant corners */
    box-shadow: 0 20px 40px rgba(141, 90, 90, 0.12);
    border: 1px solid #F0E6E6;
    border-top: 4px solid var(--accent-color); /* Premium gold accent line */
}
.luxury-landscape-form {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}
.luxury-input-wrap {
    flex: 1;
    min-width: 200px;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--bg-blush);
    border-radius: 4px;
    border: 1px solid #EAEAEA;
    transition: var(--transition);
}
.luxury-input-wrap:focus-within {
    border-color: var(--primary-color);
    background: var(--bg-white);
}
.luxury-input-wrap i {
    position: absolute;
    left: 20px;
    color: var(--primary-color);
    font-size: 16px;
    opacity: 0.8;
}
.luxury-input-wrap input {
    width: 100%;
    padding: 16px 20px 16px 50px; /* Padding for the icon */
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-dark);
    outline: none;
}
.luxury-input-wrap input::placeholder {
    color: #888;
    font-weight: 300;
}
.luxury-submit {
    flex: 0.6;
    min-width: 180px;
    border-radius: 4px; /* Matches input corners */
    padding: 16px 30px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .landscape-enquiry-wrapper { margin-top: -30px; }
    .luxury-input-wrap, .luxury-submit { min-width: 100%; flex: 100%; }
}

/* ======= ANIMATIONS & RESPONSIVE ======= */
.reveal-up { opacity: 0; transform: translateY(40px); transition: var(--transition-slow); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: var(--transition-slow); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: var(--transition-slow); }
.reveal-up.active, .reveal-left.active, .reveal-right.active { opacity: 1; transform: translate(0); }

@media (max-width: 992px) {
    .top-bar { display: none; }
    .mobile-menu-btn { display: block !important; }
    .nav-links { 
        display: none; 
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        gap: 15px;
        border-top: 1px solid rgba(0,0,0,0.05);
        z-index: 9999;
    }
    .nav-links.active { display: flex !important; }

    .split-layout.reverse { flex-direction: column; }
    .contact-glass-box { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .fa-corner { font-size: 28px; }
}
@media (max-width: 768px) {
    .info-banner { flex-direction: column; text-align: center; }
    .info-banner-content { margin-right: 0; margin-bottom: 20px; }
    .form-row { flex-direction: column; gap: 0; }
    .landscape-enquiry-wrapper { margin-top: 20px !important; }
    .hero-buttons { 
        flex-direction: column; 
        gap: 12px;
        width: 100%;
        align-items: center;
    }
    .hero-buttons .btn-primary, .hero-buttons .btn-outline {
        width: 100%;
        max-width: 100%;
        min-height: 44px;
    }
    .mandala-top, .mandala-bottom { width: 160px; height: 80px; }
    .fa-corner { font-size: 22px; }
    .fa-corner.top-left { top: 15px; left: 15px; }
    .fa-corner.top-right { top: 15px; right: 15px; }
    .fa-corner.bottom-left { bottom: 15px; left: 15px; }
    .fa-corner.bottom-right { bottom: 15px; right: 15px; }
    .img-wrapper { border-radius: 80px 80px 0 0; }
    
    /* Ensure Buttons fit on mobile */
    .logo a { font-size: 16px; }
    .logo span { font-size: 9px !important; letter-spacing: 2px !important; }
    .nav-actions { gap: 10px !important; }
    .nav-actions .btn-primary { min-height: 44px; display: flex; align-items: center; }
    
    /* Allow top-bar buttons on mobile but smaller */
    .top-bar { display: block !important; padding: 5px 0; }
    .top-contact { display: none; }
    .top-bar-inner { justify-content: center; }
    .top-social { gap: 8px; }
    .top-social a { min-height: 36px; }
}
@media (max-width: 576px) {
    .logo a { font-size: 13px; }
    .nav-actions .btn-primary { min-height: 36px; padding: 8px 12px; font-size: 11px; }
    .split-layout { gap: 20px; }
    .split-content, .split-image-group { flex: 1; }
    .img-wrapper { height: 250px; }
    .royal-resort-card { padding: 12px; }
    .resort-arch-img { height: 250px; }
}

/* ======= MAGIC DUST PARTICLES ======= */
#magic-dust {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 2; pointer-events: none; overflow: hidden;
}
.particle {
    position: absolute;
    bottom: -10px;
    background: radial-gradient(circle, var(--accent-color) 0%, rgba(212, 175, 55, 0) 80%);
    border-radius: 50%;
    opacity: 0.6;
    animation: floatUp linear infinite;
    box-shadow: 0 0 8px var(--accent-color), 0 0 15px var(--accent-color);
}
@keyframes floatUp {
    0% { transform: translateY(0) scale(1) translateX(0) rotate(0deg); opacity: 0; }
    10% { opacity: 0.8; }
    50% { transform: translateY(-50vh) scale(1.5) translateX(20px) rotate(180deg); opacity: 0.6; }
    90% { opacity: 0.8; }
    100% { transform: translateY(-100vh) scale(1) translateX(-20px) rotate(360deg); opacity: 0; }
}

/* ======= GLOBAL DECORATIONS ======= */
@keyframes floatDown {
    0% { transform: translateY(0) scale(1) translateX(0) rotate(0deg); opacity: 0; }
    10% { opacity: 0.6; }
    50% { transform: translateY(50vh) scale(1.2) translateX(30px) rotate(180deg); opacity: 0.4; }
    90% { opacity: 0.6; }
    100% { transform: translateY(110vh) scale(1) translateX(-30px) rotate(360deg); opacity: 0; }
}

#global-floating-leaves {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 999; pointer-events: none; overflow: hidden;
}

.falling-leaf {
    position: absolute;
    top: -50px;
    color: var(--accent-color);
    pointer-events: none;
    animation: floatDown linear infinite;
    z-index: 999;
}

.mandala-bg-wrapper {
    position: relative;
    overflow: hidden;
}

.mandala-bg {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><circle cx="100" cy="100" r="90" fill="none" stroke="%23D4AF37" stroke-width="1" opacity="0.1"/><circle cx="100" cy="100" r="70" fill="none" stroke="%23D4AF37" stroke-width="1" stroke-dasharray="5,5" opacity="0.15"/><circle cx="100" cy="100" r="50" fill="none" stroke="%23D4AF37" stroke-width="1" opacity="0.2"/><path d="M10,100 C40,160 160,160 190,100" fill="none" stroke="%23D4AF37" stroke-width="1" opacity="0.1"/><path d="M100,10 C160,40 160,160 100,190" fill="none" stroke="%23D4AF37" stroke-width="1" opacity="0.1"/></svg>');
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
    animation: rotateSlowly 60s linear infinite;
}

.mandala-bg-wrapper .container {
    position: relative;
    z-index: 1;
}

@keyframes rotateSlowly {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Enhancing Archway Cards */
.image-card .img-wrapper {
    position: relative;
    min-height: 250px;
}
@media (max-width: 768px) { .image-card .img-wrapper { min-height: 200px; } }
@media (max-width: 576px) { .image-card .img-wrapper { min-height: 250px; height: auto; } }
.image-card .img-wrapper::after {
    content: '';
    position: absolute;
    top: -6px; left: -6px; right: -6px; bottom: -6px;
    border: 2px solid var(--accent-color);
    border-radius: 125px 125px 0 0;
    pointer-events: none;
    opacity: 0.5;
}

/* ======= EXCLUSIVE VENUE CARDS ======= */
.venue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
    padding-top: 40px;
}
@media (max-width: 1200px) { .venue-grid { gap: 30px; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); } }
@media (max-width: 992px) { .venue-grid { gap: 25px; grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .venue-grid { gap: 20px; grid-template-columns: 1fr; } }
.exclusive-venue-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    background: white;
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent;
}
.exclusive-venue-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(212,175,55,0.2);
    border-bottom: 4px solid var(--accent-color);
}
.venue-img-wrap {
    position: relative;
    height: 260px;
    overflow: hidden;
}
@media (max-width: 768px) { .venue-img-wrap { height: 220px; } }
@media (max-width: 576px) { .venue-img-wrap { height: 250px; } }
.venue-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.exclusive-venue-card:hover .venue-img-wrap img {
    transform: scale(1.08);
}
.venue-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(14, 33, 27, 0.85);
    backdrop-filter: blur(5px);
    color: var(--accent-color);
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 2;
    border: 1px solid rgba(212,175,55,0.5);
}
.venue-info {
    padding: 30px 25px;
    text-align: center;
}
.venue-info h3 {
    font-size: 24px;
    color: var(--primary-color);
    font-family: var(--font-heading);
    margin-bottom: 12px;
}
.venue-info p {
    font-size: 15px;
    color: var(--text-body);
    margin-bottom: 25px;
    font-style: italic;
    line-height: 1.6;
}
.venue-btn {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--accent-color);
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}
.venue-btn:hover {
    background: var(--accent-color);
    color: white;
}

/* ======= DENSE MASONRY GALLERY ======= */
.dense-gallery {
    column-count: 4;
    column-gap: 15px;
    padding: 20px 0;
}
@media (max-width: 1200px) { .dense-gallery { column-count: 3; } }
@media (max-width: 768px) { .dense-gallery { column-count: 2; } }
@media (max-width: 576px) { .dense-gallery { column-count: 1; } }

.dense-item {
    break-inside: avoid;
    margin-bottom: 15px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.dense-item img {
    width: 100%;
    display: block;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.dense-item:hover img {
    transform: scale(1.08);
}
.dense-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(14, 33, 27, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(3px);
}
.dense-item:hover .dense-overlay {
    opacity: 1;
}
.dense-icon {
    width: 65px;
    height: 65px;
    background: rgba(212,175,55,0.9);
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    transform: scale(0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
.dense-item:hover .dense-icon {
    transform: scale(1);
}

/* ======= LIGHTBOX MODAL ======= */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 60px;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.92);
    backdrop-filter: blur(10px);
}
.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(212,175,55,0.15);
    animation: zoomIn 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes zoomIn {
    from {transform: scale(0.9); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}
.lightbox-close {
    position: absolute;
    top: 25px;
    right: 40px;
    color: #f1f1f1;
    font-size: 45px;
    font-weight: 300;
    transition: 0.3s;
    cursor: pointer;
    line-height: 1;
}
.lightbox-close:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

/* ======= UTILITY CLASSES ======= */
.btn-text {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 3px;
    transition: 0.3s;
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: 0.3s;
}

.btn-text:hover {
    color: var(--primary-color);
}

.btn-text:hover::after {
    width: 100%;
}

/* ======= PREMIUM IMAGE BOXES ======= */
.split-image, .content-image-wrap, .dense-item {
    border: 4px solid white;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    background: white;
}
@media (max-width: 768px) { .split-image, .content-image-wrap, .dense-item { border: 2px solid white; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); } }

.split-image::after, .content-image-wrap::after, .dense-item::after {
    content: '';
    position: absolute;
    top: 5px; left: 5px; right: 5px; bottom: 5px;
    border: 1px solid var(--accent-color);
    border-radius: 12px;
    pointer-events: none;
    opacity: 0.3;
    z-index: 2;
}

.split-image img, .img-wrapper img, .content-image-wrap img, .dense-item img, .showcase-image-wrap img {

    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}


.split-image:hover img, .img-wrapper:hover img, .content-image-wrap:hover img, .dense-item:hover img, .showcase-image-wrap:hover img {
    transform: scale(1.05);
}


/* Utilities for Graphics */
.img-contain {
    object-fit: contain !important;
    background: #fff;
}

.obj-left {
    object-position: left center !important;
}

.obj-right {
    object-position: right center !important;
}

/* Ceremony Inner Pages */
.inner-event-section {
    padding: 100px 0;
    background: #fffbfa;
    position: relative;
    overflow: hidden;
}

.event-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.event-intro .script-accent {
    font-size: 50px;
    color: var(--accent-color);
    margin-bottom: -15px;
    display: block;
}

.event-intro h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.event-intro p {
    font-size: 18px;
    color: var(--text-body);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 20px;
}

.premium-split-section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(212,175,55,0.1);
}

.premium-split-section:nth-child(even) {
    background: rgba(212,175,55,0.02);
}

.split-list {
    list-style: none;
    padding: 0;
    columns: 2;
    gap: 30px;
}

@media (max-width: 768px) {
    .split-list { columns: 1; }
}

.split-list li {
    margin-bottom: 12px;
    color: var(--text-body);
    font-size: 15px;
    display: flex;
    align-items: center;
}

.split-list li i {
    color: var(--accent-color);
    margin-right: 12px;
    font-size: 14px;
}

.theme-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

@media (max-width: 576px) {
    .theme-grid { grid-template-columns: 1fr; }
}

.theme-item {
    background: #fffbfa;
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid rgba(212,175,55,0.1);
    font-weight: 500;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.theme-item i {
    margin-right: 12px;
    color: var(--accent-color);
}



@media (max-width: 768px) {
    .parallax-banner {
        background-attachment: scroll !important;
        padding: 60px 0 !important;
    }
}

.footer-contact-list {
    list-style: none;
    padding: 0;
}

.footer-contact-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.footer-contact-list li i {
    color: var(--accent-color);
    margin-top: 4px;
}

/* ======= MOBILE RESPONSIVENESS FIXES ======= */
@media (max-width: 768px) {
    .hero-section {
        height: auto !important;
        min-height: 100vh !important;
        min-height: 100dvh !important; 
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 60px 0 !important;
        background-attachment: scroll !important; 
        background-size: cover !important;
        background-position: center center !important;
    }
    
    .hero-title {
        font-size: 3rem !important;
        line-height: 1.1 !important;
        margin-bottom: 15px !important;
    }
    
    .hero-section .script-accent {
        font-size: 40px !important;
    }
    
    .hero-container {
        padding-top: 0 !important;
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.4rem !important;
    }
    
    .hero-section .script-accent {
        font-size: 32px !important;
    }
    .wedding-card {
        padding: 50px 15px 40px !important;
        border-radius: 80px 80px 10px 10px !important;
    }
    .wedding-card h1 {
        font-size: 28px !important;
    }
    .hero-buttons .btn-primary, .hero-buttons .btn-outline {
        padding: 12px 20px !important;
    }
}

/* ======= HIGH-LEVEL LUXURY ENQUIRY POPUP ======= */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(14, 33, 27, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: #fff;
    width: 100%;
    max-width: 950px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 50px 120px rgba(0,0,0,0.6);
    transform: translateY(60px) scale(0.9);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.close-modal {
    position: absolute;
    top: 25px; right: 30px;
    width: 40px; height: 40px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 100;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.close-modal:hover { 
    background: var(--accent-color); 
    color: white;
    transform: rotate(90deg) scale(1.1); 
}

.modal-split { display: flex; min-height: 600px; }

.modal-image {
    flex: 1;
    position: relative;
    background: var(--primary-color);
    overflow: hidden;
}

.modal-image::before {
    content: '';
    position: absolute;
    top: 25px; left: 25px; right: 25px; bottom: 25px;
    border: 1px solid rgba(255,255,255,0.25);
    z-index: 2;
    pointer-events: none;
}

.modal-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: 10s linear;
}

.modal-overlay.active .modal-image img {
    transform: scale(1.15);
}

.modal-image-overlay {
    position: absolute;
    bottom: 0; left: 0;
    padding: 50px 40px;
    width: 100%;
    background: linear-gradient(to top, rgba(14,33,27,0.95), transparent);
    z-index: 5;
}

.modal-form-side {
    flex: 1.1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: #fffdf9 url('https://www.transparenttextures.com/patterns/pinstriped-suit.png');
}

/* Luxury Corner Decor */
.modal-decor-icon {
    position: absolute;
    font-size: 100px;
    color: rgba(212, 175, 55, 0.08);
    pointer-events: none;
    z-index: 0;
}
.decor-tr { top: -20px; right: -20px; transform: rotate(0deg); }
.decor-bl { bottom: -20px; left: -20px; transform: rotate(180deg); }

.modal-header { position: relative; z-index: 1; text-align: center; margin-bottom: 40px; }
.modal-header .sub-title {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-color);
    margin-bottom: 10px;
}
.modal-header .main-title {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--primary-color);
    line-height: 1.1;
    margin-bottom: 10px;
}
.modal-header .divider {
    width: 60px;
    height: 2px;
    background: var(--accent-color);
    margin: 15px auto;
}

.popup-form { position: relative; z-index: 1; }

.luxury-input-group {
    position: relative;
    margin-bottom: 30px;
}

.luxury-input-group i {
    position: absolute;
    left: 0; bottom: 15px;
    color: var(--accent-color);
    font-size: 16px;
    transition: 0.3s;
}

.luxury-input-group input, .luxury-input-group select {
    width: 100%;
    padding: 12px 10px 12px 30px;
    border: none;
    border-bottom: 1.5px solid #e0e0e0;
    background: transparent;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-dark);
    transition: 0.4s;
}

.luxury-input-group input:focus, .luxury-input-group select:focus {
    outline: none;
    border-bottom-color: var(--accent-color);
    background: rgba(212, 175, 55, 0.02);
}

.luxury-input-group input:focus + i, .luxury-input-group select:focus + i {
    transform: translateY(-5px);
}

.modal-form-side .btn-primary {
    width: 100%;
    padding: 18px !important;
    font-size: 18px !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 12px !important;
    margin-top: 20px !important;
    box-shadow: 0 15px 35px rgba(212,175,55,0.3) !important;
    position: relative;
    overflow: hidden;
}

.modal-form-side .btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.modal-form-side .btn-primary:hover::after {
    left: 100%;
}

.modal-footer-note {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 25px;
    font-style: italic;
}

@media (max-width: 992px) {
    .modal-content { max-width: 800px; }
}

@media (max-width: 992px) {
    .modal-content { max-width: 90%; }
    .modal-form-side { padding: 50px 40px; }
}
@media (max-width: 768px) {
    .modal-split { flex-direction: column; min-height: auto; }
    .modal-image { height: 250px; }
    .modal-image::before { top: 15px; left: 15px; bottom: 15px; right: 15px; }
    .modal-image-overlay { padding: 25px; }
    .modal-image-overlay h2 { font-size: 24px; }
    .modal-form-side { padding: 40px 30px; }
    .modal-header .main-title { font-size: 32px; }
    .modal-form-side .btn-primary { padding: 14px 20px !important; font-size: 14px !important; }
}
@media (max-width: 576px) {
    .modal-content { max-width: 95%; border-radius: 16px; }
    .modal-image { height: 200px; }
    .modal-form-side { padding: 30px 20px; }
    .modal-header .main-title { font-size: 24px; }
    .modal-header .sub-title { font-size: 12px; }
    .luxury-input-group { margin-bottom: 20px; }
    .luxury-input-group input { font-size: 14px; }
    .modal-form-side .btn-primary { padding: 12px 16px !important; font-size: 12px !important; min-height: 44px; }
}

/* ======= OVERLAPPING ENQUIRY FORM ======= */
.enquiry-overlap-section {
    margin-top: -120px;
    position: relative;
    z-index: 100;
}

.luxury-form-card {
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.1);
    border: 1px solid rgba(212,175,55,0.2);
}

.container-small {
    max-width: 1000px !important;
}

.custom-input-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--primary-color);
}
.custom-input-group label i {
    color: var(--accent-color);
    margin-right: 8px;
    font-size: 14px;
}
.custom-input-group input, .custom-input-group select, .custom-input-group textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1.5px solid #eee;
    background: transparent;
    font-family: var(--font-body);
    font-size: 16px;
    transition: 0.3s;
}
.custom-input-group input:focus, .custom-input-group select:focus, .custom-input-group textarea:focus {
    outline: none;
    border-bottom-color: var(--accent-color);
}
.custom-input-group textarea {
    min-height: 100px;
    resize: none;
}

@media (max-width: 992px) {
    .enquiry-overlap-section { margin-top: -80px; }
    .luxury-form-card { padding: 50px 35px; border-radius: 25px; }
}
@media (max-width: 768px) {
    .enquiry-overlap-section { margin-top: -40px; }
    .luxury-form-card { padding: 40px 25px; border-radius: 20px; }
}
@media (max-width: 576px) {
    .enquiry-overlap-section { margin-top: 0; }
    .luxury-form-card { padding: 30px 15px; border-radius: 16px; }
    .custom-input-group { margin-bottom: 20px; }
}

/* Mobile Optimization for Love Stories and Resorts */
@media (max-width: 992px) {
    .resort-grid, .review-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 768px) {
    .resort-grid, .review-grid { grid-template-columns: 1fr !important; }
    .review-parallax { background-attachment: scroll !important; padding: 60px 0 !important; }
}

.love-story-title { font-size: 50px; }
@media (max-width: 768px) {
    .love-story-title { font-size: 32px !important; }
}

