/* ==========================================================================
   SopenRoo Brides & Beauty By Sajitha Lakmali - Ultra-Luxury Black & Gold Theme
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Great+Vibes&family=Noto+Sans+Sinhala:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    /* Metallic Gold Palette */
    --gold-1: #bf953f;
    --gold-2: #fcf6ba;
    --gold-3: #b38728;
    --gold-4: #fbf5b7;
    --gold-5: #aa771c;
    
    --gold-primary: #d4af37;
    --gold-light: #f7e7a9;
    --gold-glow: rgba(212, 175, 55, 0.45);
    --gold-gradient: linear-gradient(135deg, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fbf5b7 75%, #aa771c 100%);
    --gold-gradient-soft: linear-gradient(135deg, #d4af37 0%, #f8df85 50%, #b8860b 100%);
    --dark-gold-gradient: linear-gradient(135deg, #2b1d06 0%, #4a340c 50%, #1e1302 100%);

    /* Backgrounds & Surfaces */
    --bg-dark: #070606;
    --bg-surface: #0e0c0b;
    --bg-card: rgba(18, 14, 12, 0.82);
    --bg-card-hover: rgba(28, 22, 18, 0.9);
    --glass-border: rgba(212, 175, 55, 0.3);
    --glass-border-bright: rgba(247, 231, 169, 0.6);

    /* Text Colors */
    --text-light: #fcefdc;
    --text-muted: #cbb898;
    --text-gold: #f5d77f;
    
    /* Fonts */
    --font-heading: 'Cormorant Garamond', 'Noto Sans Sinhala', serif;
    --font-script: 'Great Vibes', 'Cormorant Garamond', cursive;
    --font-body: 'Plus Jakarta Sans', 'Noto Sans Sinhala', sans-serif;
    
    /* Effects & Shadows */
    --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.25);
    --shadow-deep: 0 20px 40px rgba(0, 0, 0, 0.9);
}

/* Reset & Base Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: #070606 !important;
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: none !important;
}

/* ==========================================================================
   Hero Section (Left Text & Right Bride Viewport Layout)
   ========================================================================== */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 140px 20px 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #070606;
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    display: block;
    filter: brightness(0.92) contrast(1.06);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to right, #070606 0%, rgba(7, 6, 6, 0.9) 35%, rgba(7, 6, 6, 0.55) 65%, rgba(7, 6, 6, 0.2) 100%),
        linear-gradient(to bottom, rgba(7, 6, 6, 0.7) 0%, transparent 20%, transparent 80%, #070606 100%);
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    position: relative;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-content .badge-tag {
    align-self: center;
}

.hero-brand-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-content .gold-ornament-wrapper {
    width: 100%;
    max-width: 280px;
    margin: 10px 0 15px 0;
    display: flex;
    justify-content: center;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #050404;
}
::-webkit-scrollbar-thumb {
    background: var(--gold-3);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

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

/* Typography & Gold Styling */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
}

.text-gold-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--glass-border-bright);
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.section-title {
    font-size: 2.6rem;
    color: #fff;
    margin-bottom: 12px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-sub {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto 35px auto;
}

/* Utilities */
.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.gap-sm { gap: 15px; }
.gap-md { gap: 30px; }
.align-center { align-items: center; }
.w-100 { width: 100%; }
.mt-3 { margin-top: 1.5rem; }

/* Glassmorphism Luxury Cards */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--shadow-deep);
    transition: var(--transition);
}

.glass-card:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.25);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 26px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-gold {
    background: var(--gold-gradient);
    color: #0b0906;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
    filter: brightness(1.1);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--gold-primary);
    color: var(--gold-light);
}

.btn-outline:hover {
    background: var(--gold-gradient);
    color: #0c0a08;
    transform: translateY(-3px);
}

/* ==========================================================================
   Header & Navigation (Matching Screenshot)
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 14px 0;
    transition: var(--transition);
    background: rgba(7, 6, 6, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(7, 6, 6, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

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

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.gold-logo-glow {
    height: 52px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.85));
    transition: var(--transition);
}

.gold-logo-glow:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 18px rgba(247, 231, 169, 1));
}

.hero-bride-exact {
    object-position: right top;
    max-height: 100%;
    filter: brightness(0.95) contrast(1.05);
}

/* Center Brand Header Title (visible on mobile / tablet header layout) */
.header-center-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.header-center-brand .center-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    line-height: 1.1;
}

.header-center-brand .center-sub {
    font-size: 0.68rem;
    color: var(--gold-light);
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

@media (min-width: 993px) {
    .header-center-brand {
        display: none; /* Hide center title on desktop when main nav menu is visible to prevent duplication */
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-btn {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--glass-border-bright);
    color: var(--gold-light);
    padding: 6px 14px;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.lang-btn:hover {
    background: var(--gold-gradient);
    color: #070606;
}

.mobile-hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--gold-light);
    font-size: 1.6rem;
    cursor: pointer;
}



/* Top Pill Badge */
.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 22px;
    background: rgba(18, 14, 12, 0.7);
    border: 1px solid var(--gold-primary);
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 25px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
    backdrop-filter: blur(8px);
}

.badge-tag .sparkle {
    font-size: 1.05rem;
}

/* Brand Display Block */
.hero-brand-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.hero-main-title {
    font-family: var(--font-heading);
    font-size: 4.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.35);
    line-height: 1;
}

.hero-script-subtitle {
    font-family: var(--font-script);
    font-size: 3.2rem;
    color: var(--gold-light);
    margin-top: -8px;
    line-height: 1.1;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.hero-author-tag {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--gold-light);
    margin-top: 5px;
    letter-spacing: 1px;
}

/* Gold Flourish Ornament */
.gold-ornament-wrapper {
    width: 100%;
    max-width: 320px;
    margin: 12px 0 18px 0;
    display: flex;
    justify-content: center;
}

.gold-ornament-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
}

/* Location Tag */
.hero-location-line {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 15px;
}

.hero-location-line .gold-pin {
    color: var(--gold-primary);
    font-size: 1.3rem;
}

/* Announcement Bell Line */
.hero-announcement-line {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

/* Body Text */
.hero-body-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 580px;
    margin-bottom: 32px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

/* Hero Action Buttons (Pill + Attached Circle Icon) */
.hero-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 420px;
}

.hero-btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}

/* Pill Button */
.btn-hero-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-grow: 1;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-deep);
}

.btn-hero-pill .icon-left {
    font-size: 1.15rem;
}

/* Gold Pill Style */
.gold-pill {
    background: var(--gold-gradient);
    color: #0b0906;
    border: 1px solid var(--gold-light);
}

.gold-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

/* Dark Burgundy Gold Pill Style */
.dark-gold-pill {
    background: linear-gradient(135deg, #3d0510 0%, #20040a 100%);
    color: var(--gold-light);
    border: 1px solid var(--gold-primary);
}

.dark-gold-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
    background: linear-gradient(135deg, #4d0816 0%, #2b060d 100%);
}

/* Attached Circle Icon Button */
.circle-icon-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    text-decoration: none;
    margin-left: -12px;
    z-index: 2;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.gold-circle {
    background: var(--gold-gradient);
    color: #0b0906;
    border: 2px solid #070606;
}

.gold-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.dark-gold-circle {
    background: var(--gold-gradient);
    color: #0b0906;
    border: 2px solid #070606;
}

.dark-gold-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

/* ==========================================================================
   Services Ticker
   ========================================================================== */
.services-ticker {
    background: var(--dark-gold-gradient);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
    border-y: 1px solid var(--gold-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.ticker-content {
    display: inline-block;
    animation: ticker 32s linear infinite;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.95rem;
    color: var(--gold-light);
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   Section Base & Content Layouts
   ========================================================================== */
.section {
    padding: 95px 0;
    position: relative;
}

/* About Section */
.about-image-wrapper {
    position: relative;
}

.about-card {
    padding: 14px;
    position: relative;
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 15px;
}

.about-experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--gold-gradient);
    color: #070606;
    padding: 15px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.exp-number {
    display: block;
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.about-content {
    padding-left: 20px;
}

.about-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--gold-light);
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--glass-border);
    padding: 12px;
    border-radius: 12px;
}

/* Filter Tabs & Cards */
.filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 45px;
}

.tab-btn {
    background: rgba(18, 14, 12, 0.8);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
    background: var(--gold-gradient);
    color: #070606;
    border-color: var(--gold-light);
    box-shadow: var(--shadow-gold);
}

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

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.service-img-wrapper {
    position: relative;
    height: 230px;
    overflow: hidden;
}

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

.service-card:hover .service-img {
    transform: scale(1.08);
}

.service-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(7, 6, 6, 0.88);
    border: 1px solid var(--gold-primary);
    color: var(--gold-light);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.service-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-title {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 10px;
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
    margin-top: auto;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.service-features li i {
    color: var(--gold-primary);
}

.service-footer {
    padding-top: 15px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

/* Booking Section & Form */
.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    padding: 40px;
}

.booking-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 30px;
}

.contact-quick-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.contact-icon {
    font-size: 1.4rem;
    color: var(--gold-light);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--glass-border);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-icon.icon-wa {
    color: #25D366;
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.3);
}

.contact-item .label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.contact-item .val {
    color: var(--gold-light);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.05rem;
}

.booking-form-wrapper {
    background: rgba(12, 10, 8, 0.85);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.form-title {
    font-size: 1.6rem;
    color: var(--gold-light);
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 500;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
    background: rgba(255, 255, 255, 0.08);
}

.form-group select option {
    background: #0e0c0b;
    color: #fff;
}

.form-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 320px;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(7, 6, 6, 0.95) 0%, rgba(7, 6, 6, 0.2) 60%, transparent 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 20px;
    transition: var(--transition);
}

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

.gallery-info .g-category {
    font-size: 0.75rem;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-info h4 {
    color: #fff;
    font-size: 1.2rem;
}

.gallery-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.gallery-zoom-btn {
    background: var(--gold-gradient);
    border: none;
    color: #070606;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-zoom-btn:hover {
    transform: scale(1.15);
}

/* Packages Section */
.package-card {
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
}

.package-featured {
    border-color: var(--gold-primary);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    transform: scale(1.03);
}

.featured-ribbon {
    position: absolute;
    top: -15px;
    right: 25px;
    background: var(--gold-gradient);
    color: #070606;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.package-header {
    margin-bottom: 25px;
    text-align: center;
}

.package-header span[class^="badge-"] {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.badge-silver { background: rgba(192, 192, 192, 0.2); color: #e0e0e0; border: 1px solid #c0c0c0; }
.badge-gold { background: rgba(212, 175, 55, 0.25); color: var(--gold-light); border: 1px solid var(--gold-primary); }
.badge-diamond { background: rgba(185, 242, 255, 0.2); color: #b9f2ff; border: 1px solid #b9f2ff; }

.package-name {
    font-size: 1.8rem;
    color: #fff;
}

.package-subtitle {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.package-list {
    list-style: none;
    margin-bottom: 30px;
    margin-top: auto;
}

.package-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.package-list li i {
    color: var(--gold-primary);
}

.package-list li.disabled {
    opacity: 0.4;
    text-decoration: line-through;
}

.package-list li.disabled i {
    color: #888;
}

/* Reviews Section */
.reviews-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.review-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.stars {
    color: var(--gold-primary);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.98rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

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

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-primary);
}

.reviewer-name {
    font-size: 1rem;
    color: #fff;
}

.reviewer-role {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Contact Section & Map */
.contact-card, .map-card {
    padding: 35px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}

.c-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.c-icon {
    font-size: 1.3rem;
    color: var(--gold-light);
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--glass-border);
    padding: 10px;
    border-radius: 50%;
}

.c-detail h4 {
    font-size: 0.95rem;
    color: var(--gold-light);
}

.c-detail p, .c-detail a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
}

.c-detail a:hover {
    color: var(--gold-primary);
}

.social-links-group {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--glass-border);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--gold-gradient);
    color: #070606;
    transform: translateY(-3px);
}

.social-btn.btn-wa:hover {
    background: #25D366;
    color: #fff;
}

.map-title {
    font-size: 1.4rem;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.map-iframe-container {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.map-footer-text {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Footer */
.footer {
    background: #040303;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 70px 0 25px 0;
}

.footer-logo {
    height: 50px;
    margin-bottom: 12px;
}

.footer-brand-title {
    font-size: 1.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-tagline {
    font-size: 0.82rem;
    color: var(--gold-light);
    margin-bottom: 12px;
}

.footer-about-text {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.footer-heading {
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.92rem;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--gold-light);
    padding-left: 5px;
}

.footer-contact p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    transition: var(--transition);
}

.float-wa {
    background: #25D366;
}

.float-call {
    background: var(--gold-gradient);
    color: #070606;
}

.float-btn:hover {
    transform: scale(1.1);
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 12px;
    border: 2px solid var(--gold-primary);
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
}

.lightbox-caption {
    margin-top: 15px;
    color: var(--gold-light);
    font-size: 1.1rem;
}

/* Ticket Modal */
.modal-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-backdrop.active {
    display: flex;
}

.modal-card {
    max-width: 480px;
    width: 100%;
    padding: 30px;
    position: relative;
    background: #0e0c0b;
    border: 2px solid var(--gold-primary);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
}

.ticket-header {
    border-bottom: 1px dashed var(--gold-primary);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.ticket-logo {
    height: 45px;
    margin-bottom: 8px;
}

.ticket-status-badge {
    display: inline-block;
    background: rgba(37, 211, 102, 0.2);
    color: #25D366;
    border: 1px solid #25D366;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-top: 8px;
}

.ticket-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.ticket-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.92rem;
}

.t-label {
    color: var(--text-muted);
}

.t-val {
    color: var(--gold-light);
    font-weight: 700;
}

.ticket-footer {
    border-top: 1px dashed var(--gold-primary);
    padding-top: 15px;
}

.ticket-msg {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

/* Responsive Breakpoints */
/* Responsive Breakpoints */
@media (max-width: 992px) {
    .hero-main-title { font-size: clamp(2.8rem, 6vw, 3.8rem); }
    .hero-script-subtitle { font-size: clamp(2rem, 4.5vw, 2.6rem); }
    .services-grid, .gallery-grid, .reviews-slider, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-2 { grid-template-columns: 1fr; }
    .booking-grid { grid-template-columns: 1fr; }
    .package-featured { transform: none; }
}

@media (max-width: 768px) {
    .header-center-brand .center-title { font-size: 1.25rem; }
    .header-center-brand .center-sub { font-size: 0.65rem; }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(7, 6, 6, 0.98);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
    }
    .nav-menu.active { left: 0; }
    .mobile-hamburger { display: block; }
    .hero {
        padding-top: 100px;
        padding-bottom: 50px;
        min-height: 100vh;
    }
    .hero-bg-image {
        object-position: 85% center;
        filter: brightness(0.85) contrast(1.1);
    }
    .hero-bg-overlay {
        background: 
            linear-gradient(to bottom, rgba(7, 6, 6, 0.88) 0%, rgba(7, 6, 6, 0.55) 45%, rgba(7, 6, 6, 0.92) 100%),
            radial-gradient(circle at 50% 35%, rgba(212, 175, 55, 0.18) 0%, transparent 65%);
    }
    .hero-content-wrapper {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
    }
    .hero-main-title { font-size: clamp(2.4rem, 8vw, 3.2rem); }
    .hero-script-subtitle { font-size: clamp(1.8rem, 6vw, 2.2rem); }
    .hero-author-tag { font-size: 0.95rem; }
    .hero-location-line { font-size: 1.2rem; margin-bottom: 12px; }
    .hero-announcement-line { font-size: 0.92rem; margin-bottom: 12px; }
    .hero-body-text { font-size: 0.88rem; line-height: 1.6; margin-bottom: 22px; }
    .gold-ornament-wrapper { max-width: 220px; margin: 8px 0 12px 0; }
    .hero-action-buttons { width: 100%; max-width: 360px; }
    .btn-hero-pill { font-size: 0.88rem; padding: 10px 16px; }
    .services-grid, .gallery-grid, .reviews-slider, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    
    /* Hide floating action buttons on initial mobile hero view, show when scrolling down */
    .floating-actions {
        display: none !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(20px);
        transition: opacity 0.35s ease, transform 0.35s ease;
    }
    .floating-actions.show-on-scroll {
        display: flex !important;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .header-center-brand .center-title { font-size: 1.1rem; }
    .header-center-brand .center-sub { font-size: 0.6rem; letter-spacing: 0.5px; }
    .brand-logo .logo-img { height: 42px; }
    .hero-main-title { font-size: 2.2rem; }
    .hero-script-subtitle { font-size: 1.7rem; }
    .badge-tag { font-size: 0.78rem; padding: 5px 14px; }
    .hero-action-buttons { gap: 10px; }
    .btn-hero-pill { font-size: 0.82rem; padding: 9px 12px; }
    .circle-icon-btn { width: 40px; height: 40px; font-size: 1.1rem; }
}
