/* 
   The Jaya Marriage Lawn - Main Stylesheet
   Theme: Modern Luxury, Gold & Royal Maroon
   Palette: Rich Maroon (#d41e42), Gold Gradient, Pure White, Dark Charcoal
*/

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&amp;family=Montserrat:wght@300;400;500;600&amp;family=Great+Vibes&amp;display=swap');

:root {
    --primary-color: #d41e42;
    /* Deep Rich Maroon */
    --primary-dark: #db1e33;
    --gold: #D4AF37;
    --gold-light: #F4E4BC;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 50%, #D4AF37 100%);
    --bg-color: #FFFFFF;
    --bg-light: #FAFAFA;
    --text-color: #2D2D2D;
    --text-muted: #666666;
    --white: #ffffff;
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.8;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cinzel', serif;
    color: var(--primary-dark);
    line-height: 1.3;
    font-weight: 600;
}

.script-text {
    font-family: 'Great Vibes', cursive;
    color: var(--gold);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utility Classes */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--bg-light);
}

/* Button Styling 2.0 */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--gold-gradient);
    z-index: -1;
    transition: var(--transition);
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-primary:hover {
    color: var(--primary-dark);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Section Titles 2.0 */
.section-title {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-top-text {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 3rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 15px auto 0;
}

.section-title p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Header & Navigation */
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 240, 0.93);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 25px rgba(106, 4, 15, 0.04);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

header.scrolled {
    background-color: rgba(255, 255, 240, 0.98);
    box-shadow: 0 8px 30px rgba(106, 4, 15, 0.08);
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    transition: padding 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

header.scrolled nav {
    padding: 5px 0;
}

.logo {
    display: none;
    /* Subsumed by logo-container in header.php */
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    font-weight: 500;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-dark);
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: var(--gold);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.nav-links .dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: var(--white);
    min-width: 250px;
    padding: 12px 0;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(106, 4, 15, 0.12);
    border-top: 3px solid var(--gold);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
}

/* Tiny indicator triangle */
.dropdown-menu::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 7px;
    border-style: solid;
    border-color: transparent transparent var(--gold) transparent;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 24px;
    color: var(--primary-dark);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.dropdown-menu li a::after {
    display: none;
}

.dropdown-menu li a::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.dropdown-menu li a:hover {
    background: rgba(212, 175, 55, 0.06);
    padding-left: 32px;
    color: var(--primary-color);
}

.dropdown-menu li a:hover::before {
    width: 12px;
}

/* Hamburger & Responsive Burger Toggle */
.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 4px;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 6px auto;
    background-color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
/* Hero Slider Section */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    color: var(--white);
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    padding: 160px 20px 20px;
    /* Shifted down to clear the fixed header and prevent text overlap */
    z-index: 2;
    animation: fadeUp 1s ease;
}

/* Subpages Banner Styling */
.page-header {
    padding-top: 190px !important;
    /* Shifted down to clear the fixed header on inner pages */
    padding-bottom: 120px !important;
}

.hero-slide p.tagline {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.hero-slide h1 {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
}

.hero-desc {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 30px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.hero-buttons .btn {
    margin: 0;
    min-width: 180px;
}

/* Slider Controls */
.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px;
    cursor: pointer;
    z-index: 10;
    font-size: 1.2rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.hero-prev:hover,
.hero-next:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.hero-prev {
    left: 40px;
}

.hero-next {
    right: 40px;
}

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active,
.dot:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.2);
}

@media (max-width: 768px) {

    .hero-slider-section {
        height: 90dvh;
        min-height: 550px;
    }

    .hero-slide {
        background-attachment: scroll;
    }

    .hero-content {
        padding: 130px 50px 20px;
    }

    .hero-slide p.tagline {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .hero-slide h1 {
        font-size: 2.2rem;
        margin-bottom: 20px;
        letter-spacing: 1.5px;
    }

    .hero-desc {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .hero-buttons {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    .hero-buttons .btn {
        margin: 0;
        min-width: 140px;
        padding: 12px 24px;
        font-size: 0.8rem;
    }

    .page-header {
        padding-top: 150px !important;
        /* Shifted down for mobile page headers */
        padding-bottom: 90px !important;
    }

    .hero-prev,
    .hero-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        padding: 10px;
    }

    .hero-prev {
        left: 10px;
    }

    .hero-next {
        right: 10px;
    }

}

@media (max-width: 480px) {

    .hero-slider-section {
        height: 80dvh;
        min-height: 480px;
    }

    .hero-content {
        padding: 110px 15px 20px;
    }

    .hero-slide p.tagline {
        font-size: 1.6rem;
    }

    .hero-slide h1 {
        font-size: 1.65rem;
        margin-bottom: 15px;
        letter-spacing: 0.5px;
        line-height: 1.3;
    }

    .hero-desc {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .hero-buttons .btn {
        min-width: 130px;
        padding: 10px 18px;
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }

    .hero-prev,
    .hero-next {
        display: none;
    }

    .hero-dots {
        bottom: 20px;
    }

}

/* Feature/Service Boxes - Minimalist Luxury */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-box {
    padding: 40px 30px;
    background: var(--white);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.feature-box:hover::before {
    transform: scaleX(1);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-box i {
    font-size: 3rem;
    background: -webkit-linear-gradient(#D4AF37, #d41e42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
}

.feature-box h3 {
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}


/* Premium Service Cards */
.service-card {
    background: var(--white);
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
    z-index: 2;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-card-img-wrapper img {
    transform: scale(1.08);
}

.service-card-content {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-content h3 {
    font-size: 1.25rem;
    font-family: 'Cinzel', serif;
    color: var(--primary-dark);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card-content p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.service-card-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    transition: color 0.3s ease;
}

.service-card-link:hover {
    color: var(--gold);
}

/* About Section - Side by Side Layout */
.about-preview {
    display: flex;
    align-items: center;
    position: relative;
    gap: 50px;
}

.about-image {
    flex: 1;
    position: relative;
    z-index: 1;
    min-height: 600px;
}

.about-image img, .about-image video {
    box-shadow: var(--shadow-lg);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.about-text {
    flex: 1;
    background: transparent;
    padding: 20px 0;
    position: relative;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Event Gallery Teaser */
/* Event Gallery Teaser - Redesigned */
/* Event Gallery Teaser - Luxury Hover Card Design */
.event-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 20px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.event-card-luxury {
    position: relative;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.event-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.event-card-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(55, 6, 23, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    transition: all 0.5s ease;
}

.event-card-luxury:hover .event-card-inner::after {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(106, 4, 15, 0.6) 60%, rgba(0, 0, 0, 0.1) 100%);
}

.event-card-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.4, 1);
}

.event-card-luxury:hover img {
    transform: scale(1.1);
}

.event-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    z-index: 2;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.event-card-luxury:hover .event-card-content {
    transform: translateY(0);
}

.event-subtitle {
    display: block;
    color: var(--gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.1s;
}

.event-card-luxury:hover .event-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.event-card-content h3 {
    color: var(--white);
    font-size: 2.2rem;
    font-family: 'Cinzel', serif;
    margin-bottom: 15px;
    line-height: 1.1;
}

.event-divider {
    width: 0;
    height: 2px;
    background: var(--gold);
    margin-bottom: 15px;
    transition: width 0.5s ease 0.2s;
}

.event-card-luxury:hover .event-divider {
    width: 60px;
}

.event-card-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.2s;
}

.event-card-luxury:hover .event-card-content p {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .event-grid-home {
        grid-template-columns: repeat(1, 1fr);
        padding: 0 20px 40px;
    }

    .event-card-luxury {
        height: 450px;
    }

    /* Show content by default on mobile */
    .event-subtitle,
    .event-card-content p,
    .event-divider {
        opacity: 1;
        transform: translateY(0);
        width: 60px;
    }

    .event-card-content {
        transform: translateY(0);
    }
}

/* Facilities - Premium Cards */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.facility-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.facility-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.4s ease;
}

.facility-card:hover .icon-box {
    background: var(--gold);
    color: #fff;
    transform: scale(1.1);
}

.facility-card i {
    font-size: 1.5rem;
    color: var(--gold);
    transition: color 0.4s ease;
}

.facility-card:hover i {
    color: #fff;
}

.facility-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-dark);
    font-family: 'Cinzel', serif;
}

.facility-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* FAQ Section - Side by Side */
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.faq-content {
    flex: 1;
}

.faq-image-container {
    position: relative;
    height: 100%;
    min-height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.faq-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Recent Weddings Slider */
.wedding-slider-container {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
    /* More padding */
}

.wedding-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    cursor: grab;
}

.wedding-slide {
    min-width: 320px;
    height: 450px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.wedding-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.wedding-slide:hover img {
    transform: scale(1.1);
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.wedding-slide:hover .slide-caption {
    transform: translateY(0);
}

.slide-caption h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--gold);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.slider-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: var(--white);
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.slider-btn:hover {
    background: var(--gold);
    color: #fff;
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* Instagram Grid */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /* Desktop: 6 cols */
    gap: 0;
}

.insta-item {
    position: relative;
    height: 250px;
    overflow: hidden;
    display: block;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.insta-item:hover img {
    transform: scale(1.1);
    opacity: 0.8;
}

.insta-item i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 2rem;
    color: #fff;
    z-index: 2;
    transition: transform 0.3s ease;
}

.insta-item:hover i {
    transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 968px) {
    .experience-badge {
        right: 0;
        bottom: -20px;
        width: 100px;
        height: 100px;
        padding: 15px;
    }

    .experience-badge .years {
        font-size: 1.5rem;
    }

    .experience-badge .text {
        font-size: 0.5rem;
    }

    .trust-stats-row {
        justify-content: center;
    }

    .insta-grid {
        grid-template-columns: repeat(3, 1fr);
        /* Tablet: 3 cols */
    }
}

@media (max-width: 576px) {
    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Mobile: 2 cols */
    }
}

/* Video Gallery */
.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.video-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    background: #000;
    aspect-ratio: 1 / 1;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    border: 1px solid var(--gold);
}

.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive Video Grid */
@media (max-width: 968px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    background: var(--white);
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
    border-radius: 5px;
    overflow: hidden;
    transition: var(--transition);
}

/* Responsive FAQ */
@media (max-width: 968px) {
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-image-container {
        min-height: 300px;
        order: -1;
        /* Image on top on mobile? Or bottom? Let's keep natural order or put on top. User didn't specify, but image first is usually nice visually, or after. Let's keep it below for now unless space is tight. Actually, let's just stack it normally below. */
        display: none;
        /* Actually, on mobile, space is tight. Maybe hide image or stack. Let's stack. */
        display: block;
        height: 300px;
    }
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

/* Header Book Now Button Special Style */
.btn-header-book {
    background: linear-gradient(135deg, #FFC107, #FF9800);
    /* Vibrant Gold/Orange */
    color: #fff;
    /* White text */
    padding: 10px 25px;
    border-radius: 30px;
    /* Pill shape */
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    /* Glowing shadow */
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-header-book::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.btn-header-book:hover::before {
    left: 100%;
}

.btn-header-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
    background: linear-gradient(135deg, #FF9800, #F57C00);
    /* Darker Orange on hover */
    color: #fff;
}

.faq-question {
    padding: 20px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    /* Keep questions readable */
    color: var(--primary-dark);
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    background: #fafafa;
    transition: all 0.3s ease;
    border-top: 1px solid transparent;
}

.faq-answer p {
    padding: 20px 0;
    color: var(--text-color);
    font-size: 0.95rem;
}

/* Active State for FAQ (JS Toggled) */
.faq-item.active .faq-question {
    background: rgba(212, 175, 55, 0.1);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Approximate max height */
    border-top: 1px solid #eee;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card .stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.testimonial-card h4 {
    font-family: 'Cinzel', serif;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.testimonial-card::before {
    content: 'â€œ';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: rgba(212, 175, 55, 0.1);
    font-family: serif;
    pointer-events: none;
}

/* CTA Section specific tweak */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern-overlay.html');
    /* If available, else just texture */
    opacity: 0.1;
    pointer-events: none;
}



/* Pricing Section - Elegant Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.price-card {
    background: var(--white);
    padding: 50px 30px;
    border: 1px solid #eee;
    text-align: center;
    transition: var(--transition);
}

.price-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}

.price-card.featured {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    transform: scale(1.05);
}

.price-card.featured h3,
.price-card.featured .price {
    color: var(--white);
}

.price-card.featured .price span {
    color: rgba(255, 255, 255, 0.7);
}

.price-card h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.price {
    font-size: 3rem;
    font-family: 'Cinzel', serif;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
}

.price-features li {
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.price-card.featured .price-features li {
    color: rgba(255, 255, 255, 0.9);
}

/* FooterStyles */
footer {
    background-color: #1e1819;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.footer-col a:hover {
    color: var(--gold);
    padding-left: 5px;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 968px) {
    .about-preview {
        flex-direction: column;
    }

    .about-text {
        margin-left: 0;
        margin-top: -50px;
        width: 90%;
    }

    .event-grid-home {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p.tagline {
        font-size: 1.8rem;
    }

    .event-grid-home {
        grid-template-columns: 1fr;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 90px;
        /* Offset based on header padding */
        background: var(--white);
        width: 100%;
        height: calc(100vh - 90px);
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 30px 40px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        transition: left 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        overflow-y: auto;
        z-index: 999;
    }

    header.scrolled .nav-links {
        top: 65px;
        height: calc(100vh - 65px);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        display: block;
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #f2f2f2;
    }

    .nav-links li a::after {
        display: none !important;
    }

    /* Mobile Dropdown styles */
    .nav-links .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none;
        box-shadow: none !important;
        background: rgba(106, 4, 15, 0.02) !important;
        border-top: none !important;
        border-left: 2px solid var(--gold) !important;
        border-radius: 0 !important;
        margin-top: 10px !important;
        padding: 5px 0 5px 15px !important;
        width: 100% !important;
    }

    .nav-links .dropdown-menu::before {
        display: none !important;
    }

    .nav-links .dropdown-menu.open {
        display: block !important;
    }

    .dropdown-toggle.open i {
        transform: rotate(180deg) !important;
    }
}

/* ===== EVENTS PAGE STYLES ===== */

/* Events Hero Section */
.events-hero {
    height: 60vh;
    background: linear-gradient(rgba(106, 4, 15, 0.8), rgba(55, 6, 23, 0.8)), url('../Images/hero-bg.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    margin-top: 80px;
}

.events-hero .hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.events-hero .hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.event-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.event-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.event-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-item:hover .event-image img {
    transform: scale(1.1);
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(106, 4, 15, 0.8), rgba(212, 175, 55, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.event-item:hover .event-overlay {
    opacity: 1;
}

.event-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.event-icon i {
    font-size: 2rem;
    color: var(--white);
}

.event-content {
    padding: 30px;
}

.event-content h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.event-features {
    list-style: none;
    margin-bottom: 30px;
}

.event-features li {
    padding: 8px 0;
    color: var(--text-color);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-features li i {
    color: var(--gold);
    font-size: 0.8rem;
    width: 16px;
}

.event-content .btn {
    width: 100%;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Choose Events Section */
.why-choose-events .features-grid {
    margin-top: 50px;
}

.why-choose-events .feature-box {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: 10px;
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.why-choose-events .feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.why-choose-events .feature-box i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.why-choose-events .feature-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
    font-family: 'Cinzel', serif;
}

.why-choose-events .feature-box p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA Section Buttons */
.cta-buttons {
    margin-top: 30px;
}

.cta-buttons .btn {
    min-width: 160px;
    padding: 16px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

/* Responsive Design for Events Page */
@media (max-width: 1200px) {
    .events-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .events-hero {
        height: 50vh;
        margin-top: 70px;
    }

    .events-hero .hero-content h1 {
        font-size: 2.5rem;
    }

    .events-hero .hero-content p {
        font-size: 1rem;
        padding: 0 20px;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    .event-item {
        margin: 0 10px;
    }

    .event-image {
        height: 250px;
    }

    .event-content {
        padding: 25px 20px;
    }

    .event-content h3 {
        font-size: 1.5rem;
    }

    .why-choose-events .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-buttons .btn {
        width: 200px;
        margin: 5px 0;
    }
}

@media (max-width: 480px) {
    .events-hero .hero-content h1 {
        font-size: 2rem;
    }

    .events-grid {
        margin: 30px 0;
    }

    .event-item {
        margin: 0 5px;
    }

    .event-content {
        padding: 20px 15px;
    }

    .event-content h3 {
        font-size: 1.3rem;
    }

    .event-features li {
        font-size: 0.85rem;
    }

    .why-choose-events .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-choose-events .feature-box {
        padding: 30px 20px;
    }
}

/* Smooth Scrolling for Anchor Links */
html {
    scroll-behavior: smooth;
}

/* Event Item Hover Animation Enhancement */
@media (hover: hover) {
    .event-item {
        position: relative;
        overflow: hidden;
    }

    .event-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
        transition: left 0.6s ease;
        z-index: 1;
    }

    .event-item:hover::before {
        left: 100%;
    }
}

/* Loading Animation for Images */
.event-image {
    background: linear-gradient(45deg, #f0f0f0 25%, transparent 25%),
        linear-gradient(-45deg, #f0f0f0 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #f0f0f0 75%),
        linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.event-image img {
    opacity: 0;
    animation: fadeInImage 0.5s ease forwards;
}

@keyframes fadeInImage {
    to {
        opacity: 1;
    }
}

/* Enhanced Button Hover Effects */
.event-content .btn-primary {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.event-content .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.event-content .btn-primary:hover::before {
    left: 100%;
}

/* ==============================================================
   Wedding Essentials Section - Full Width Redesign
   ============================================================== */
.we-section {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 80px 0;
    background: #fdfbf7;
    overflow: hidden;
}

.we-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.we-header .section-top-text {
    display: inline-block;
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
}

.we-header h2 {
    font-size: 2.8rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.we-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.we-header-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 20px auto 0;
}

/* Premium 3D Carousel Container */
.premium-carousel-container {
    position: relative;
    width: 100%;
    max-width: 100%; /* True full width */
    margin: 0 auto;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1500px; /* 3D depth */
    display: flex;
    justify-content: center;
    align-items: center;
}

.pc-card {
    position: absolute;
    width: 380px;
    height: 440px;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    transform-style: preserve-3d;
    cursor: pointer;
    z-index: 1;
}

.pc-card-inner {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    flex-direction: column;
    transition: all 0.6s ease;
}

/* Default States for Background Cards */
.pc-card {
    opacity: 0;
    transform: translateX(0) scale(0.75) translateZ(-200px);
    pointer-events: none;
}

/* Active Card */
.pc-card.active {
    opacity: 1;
    z-index: 3;
    transform: translateX(0) scale(1) translateZ(0);
    pointer-events: auto;
}
.pc-card.active .pc-card-inner {
    box-shadow: 0 30px 60px rgba(106, 4, 15, 0.2);
    border: 2px solid var(--gold);
}

/* Prev Card */
.pc-card.prev {
    opacity: 0.8;
    z-index: 2;
    transform: translateX(-50%) scale(0.85) translateZ(-100px) rotateY(15deg);
    pointer-events: auto;
}

/* Next Card */
.pc-card.next {
    opacity: 0.8;
    z-index: 2;
    transform: translateX(50%) scale(0.85) translateZ(-100px) rotateY(-15deg);
    pointer-events: auto;
}

/* Prev-2 Card (Far Left) */
.pc-card.prev-2 {
    opacity: 0.4;
    z-index: 1;
    transform: translateX(-110%) scale(0.7) translateZ(-250px) rotateY(25deg);
    pointer-events: auto;
}

/* Next-2 Card (Far Right) */
.pc-card.next-2 {
    opacity: 0.4;
    z-index: 1;
    transform: translateX(110%) scale(0.7) translateZ(-250px) rotateY(-25deg);
    pointer-events: auto;
}

.pc-card.prev:hover, .pc-card.next:hover, 
.pc-card.prev-2:hover, .pc-card.next-2:hover {
    opacity: 0.95;
}

/* Card Content */
.pc-card-image {
    width: 100%;
    height: 240px;
    position: relative;
    overflow: hidden;
}
.pc-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.pc-card.active:hover .pc-card-image img {
    transform: scale(1.1);
}
.pc-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.6) 100%);
}
.pc-card-body {
    padding: 30px 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pc-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -60px;
    margin-bottom: 15px;
    position: relative;
    z-index: 3;
    border: 3px solid var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: var(--gold);
    font-size: 1.5rem;
    transition: all 0.4s ease;
}
.pc-card.active .pc-icon {
    background: var(--gold);
    color: var(--white);
}
.pc-card-body h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.pc-card-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Controls */
.pc-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.pc-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}
.pc-prev { left: 40px; }
.pc-next { right: 40px; }

/* Dots */
.pc-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}
.pc-dot {
    width: 12px;
    height: 12px;
    background: rgba(106, 4, 15, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}
.pc-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 1100px) {
    .pc-card { width: 340px; height: 420px; }
    .pc-card.prev { transform: translateX(-45%) scale(0.85) translateZ(-100px) rotateY(10deg); }
    .pc-card.next { transform: translateX(45%) scale(0.85) translateZ(-100px) rotateY(-10deg); }
    .pc-card.prev-2 { transform: translateX(-80%) scale(0.7) translateZ(-250px) rotateY(20deg); }
    .pc-card.next-2 { transform: translateX(80%) scale(0.7) translateZ(-250px) rotateY(-20deg); }
}
@media (max-width: 768px) {
    .we-header h2 { font-size: 2.2rem; }
    .pc-card { width: 300px; height: 400px; }
    .pc-card.prev { transform: translateX(-35%) scale(0.8) translateZ(-100px) rotateY(5deg); opacity: 0.5; }
    .pc-card.next { transform: translateX(35%) scale(0.8) translateZ(-100px) rotateY(-5deg); opacity: 0.5; }
    .pc-card.prev-2 { transform: translateX(-65%) scale(0.65) translateZ(-250px) rotateY(10deg); opacity: 0.2; }
    .pc-card.next-2 { transform: translateX(65%) scale(0.65) translateZ(-250px) rotateY(-10deg); opacity: 0.2; }
    .pc-prev { left: 5px; }
    .pc-next { right: 5px; }
}
@media (max-width: 480px) {
    .premium-carousel-container { height: 450px; }
    .pc-card { width: 260px; height: 380px; }
    .pc-card.prev { transform: translateX(-25%) scale(0.75) translateZ(-100px); opacity: 0.3; }
    .pc-card.next { transform: translateX(25%) scale(0.75) translateZ(-100px); opacity: 0.3; }
    .pc-card.prev-2 { opacity: 0; pointer-events: none; }
    .pc-card.next-2 { opacity: 0; pointer-events: none; }
}

/* ==============================================================
   PREMIUM 3D STACKED SERVICES CAROUSEL
   ============================================================== */
.stack-carousel-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0 60px 0;
}

.stack-carousel {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 450px;
    margin: 0 auto;
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stack-card {
    position: absolute;
    width: 320px;
    height: 420px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease-in-out;
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
}

.stack-card.active {
    opacity: 1;
    transform: translateX(0) scale(1) translateZ(0);
    z-index: 3;
    pointer-events: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.stack-card.prev {
    opacity: 0.7;
    transform: translateX(-50%) scale(0.85) translateZ(-100px);
    z-index: 2;
    pointer-events: auto;
    cursor: pointer;
}

.stack-card.next {
    opacity: 0.7;
    transform: translateX(50%) scale(0.85) translateZ(-100px);
    z-index: 2;
    pointer-events: auto;
    cursor: pointer;
}

.stack-card.hidden {
    opacity: 0;
    transform: translateX(0) scale(0.7) translateZ(-200px);
    z-index: 1;
}

.stack-card-img-wrapper {
    width: 100%;
    height: 50%;
    overflow: hidden;
}

.stack-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stack-card-content {
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 50%;
}

.stack-card-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.stack-card-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.stack-card-link {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-top: auto;
}

.stack-card-link:hover {
    color: var(--primary-color);
}

/* Stack Carousel Controls */
.stack-controls {
    text-align: center;
    margin-top: 30px;
}

.stack-controls button {
    background: var(--primary-color);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    margin: 0 10px;
    transition: background 0.3s ease;
}

.stack-controls button:hover {
    background: var(--secondary-color);
}

.stack-dots {
    margin-top: 15px;
}

.stack-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.stack-dot.active {
    background: var(--primary-color);
}

@media (max-width: 768px) {
    .stack-carousel {
        height: 380px;
    }

    .stack-card {
        width: 260px;
        height: 350px;
    }

    .stack-card.prev {
        transform: translateX(-35%) scale(0.85) translateZ(-100px);
    }

    .stack-card.next {
        transform: translateX(35%) scale(0.85) translateZ(-100px);
    }
}

@media (max-width: 480px) {
    .stack-carousel {
        height: 350px;
    }

    .essential-prev {
        left: 5px;
    }

    .essential-next {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .essential-card.prev {
        transform: translateX(-20%) translateZ(0) scale(0.7);
        opacity: 0.25;
    }

    .essential-card.next {
        transform: translateX(20%) translateZ(0) scale(0.7);
        opacity: 0.25;
    }
}

/* ==============================================================
   PREMIUM 3D STACKED SERVICES CAROUSEL
   ============================================================== */
.stack-carousel-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0 60px 0;
}

.stack-carousel {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 450px;
    margin: 0 auto;
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stack-card {
    position: absolute;
    width: 320px;
    height: 420px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease-in-out;
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
}

.stack-card.active {
    opacity: 1;
    transform: translateX(0) scale(1) translateZ(0);
    z-index: 3;
    pointer-events: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.stack-card.prev {
    opacity: 0.7;
    transform: translateX(-50%) scale(0.85) translateZ(-100px);
    z-index: 2;
    pointer-events: auto;
    cursor: pointer;
}

.stack-card.next {
    opacity: 0.7;
    transform: translateX(50%) scale(0.85) translateZ(-100px);
    z-index: 2;
    pointer-events: auto;
    cursor: pointer;
}

.stack-card.hidden {
    opacity: 0;
    transform: translateX(0) scale(0.7) translateZ(-200px);
    z-index: 1;
}

.stack-card-img-wrapper {
    width: 100%;
    height: 50%;
    overflow: hidden;
}

.stack-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stack-card-content {
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 50%;
}

.stack-card-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.stack-card-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.stack-card-link {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-top: auto;
}

.stack-card-link:hover {
    color: var(--primary-color);
}

/* Stack Carousel Controls */
.stack-controls {
    text-align: center;
    margin-top: 30px;
}

.stack-controls button {
    background: var(--primary-color);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    margin: 0 10px;
    transition: background 0.3s ease;
}

.stack-controls button:hover {
    background: var(--secondary-color);
}

.stack-dots {
    margin-top: 15px;
}

.stack-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.stack-dot.active {
    background: var(--primary-color);
}

@media (max-width: 768px) {
    .stack-carousel {
        height: 380px;
    }

    .stack-card {
        width: 260px;
        height: 350px;
    }

    .stack-card.prev {
        transform: translateX(-35%) scale(0.85) translateZ(-100px);
    }

    .stack-card.next {
        transform: translateX(35%) scale(0.85) translateZ(-100px);
    }
}

@media (max-width: 480px) {
    .stack-carousel {
        height: 350px;
    }

    .stack-card {
        width: 220px;
        height: 320px;
    }

    .stack-card.prev {
        transform: translateX(-25%) scale(0.85) translateZ(-100px);
    }

    .stack-card.next {
        transform: translateX(25%) scale(0.85) translateZ(-100px);
    }
}

/* ================================================================
   FAQ + CONTACT SECTION
   ================================================================ */
.faq-contact-section {
    background: linear-gradient(135deg, #faf6ef 0%, #fff8f0 50%, #faf6ef 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.faq-contact-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.faq-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Side Titles */
.faq-side-title {
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    color: var(--primary-dark);
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-side-title i {
    color: var(--gold);
    font-size: 1.1rem;
}

/* FAQ Accordion */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #ede8df;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 18px rgba(212, 175, 55, 0.12);
}

.faq-item.active {
    border-color: var(--gold);
    box-shadow: 0 6px 24px rgba(106, 4, 15, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-dark);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-item.active .faq-question {
    color: var(--primary-color);
}

.faq-icon {
    flex-shrink: 0;
    color: var(--gold);
    font-size: 0.85rem;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 16px;
}

.faq-answer p {
    padding: 0 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Contact Card */
.faq-contact-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(106, 4, 15, 0.08);
    border: 1px solid #ede8df;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.faq-contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.faq-contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-dark), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(106, 4, 15, 0.2);
}

.faq-contact-info h4 {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.faq-contact-info p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 2px 0;
}

.faq-contact-info a {
    display: block;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 2px 0;
}

.faq-contact-info a:hover {
    color: var(--gold);
}

.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-dark), var(--gold));
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(106, 4, 15, 0.25);
    margin-top: 6px;
}

.faq-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(106, 4, 15, 0.35);
}

/* Responsive */
@media (max-width: 900px) {
    .faq-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .faq-contact-section {
        padding: 70px 0;
    }

    .faq-question {
        font-size: 0.88rem;
        padding: 15px 16px;
    }

    .faq-contact-card {
        padding: 22px 18px;
    }
}

/* ==========================================================================
   Enquiry Popup Modal - Modern Luxury Theme (Royal Maroon & Gold)
   ========================================================================== */

/* The Modal (background) */
.enquiry-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 3, 5, 0.6); /* Warm dark tint to match brand */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10001; /* Must be above sticky header (1000) and other components */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                visibility 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.enquiry-modal.show {
    opacity: 1;
    visibility: visible;
}

/* Modal Content Box */
.enquiry-modal-content {
    background: #ffffff;
    width: 90%;
    max-width: 480px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(106, 4, 15, 0.18);
    border: 1px solid rgba(212, 175, 55, 0.25);
    overflow: hidden;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 35px 30px;
}

.enquiry-modal.show .enquiry-modal-content {
    transform: scale(1) translateY(0);
}

/* Close Button */
.enquiry-modal-close {
    position: absolute;
    top: 20px;
    right: 22px;
    color: var(--text-muted, #666666);
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition, all 0.3s);
    line-height: 1;
}

.enquiry-modal-close:hover {
    color: var(--primary-color, #d41e42);
    transform: rotate(90deg);
}

/* Header inside modal */
.enquiry-modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.enquiry-modal-header h3 {
    font-size: 1.8rem;
    color: var(--primary-dark, #db1e33);
    margin-bottom: 8px;
    font-family: 'Cinzel', serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.enquiry-modal-header p {
    font-size: 0.9rem;
    color: var(--text-muted, #666666);
    font-family: 'Montserrat', sans-serif;
}

/* Form Groups & Inputs */
.enquiry-modal .form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.enquiry-modal label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-dark, #db1e33);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.enquiry-modal .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.enquiry-modal .input-wrapper i {
    position: absolute;
    left: 15px;
    color: var(--gold, #D4AF37);
    font-size: 0.95rem;
    pointer-events: none;
    transition: color 0.3s;
}

.enquiry-modal .input-wrapper input,
.enquiry-modal .input-wrapper textarea {
    width: 100%;
    padding: 12px 16px 12px 42px;
    border: 1.5px solid #e2d9cd;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    color: var(--text-color, #2D2D2D);
    background: #fefcf9;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.enquiry-modal .input-wrapper textarea {
    padding-top: 12px;
    resize: none;
}

.enquiry-modal .input-wrapper input:focus,
.enquiry-modal .input-wrapper textarea:focus {
    border-color: var(--gold, #D4AF37);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
    background: #ffffff;
}

.enquiry-modal .input-wrapper input:focus + i,
.enquiry-modal .input-wrapper textarea:focus + i {
    color: var(--primary-color, #d41e42);
}

/* Submit Button */
.enquiry-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366; /* WhatsApp Green */
    color: #ffffff;
    border: none;
    padding: 14px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-top: 5px;
}

.enquiry-submit-btn:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
    color: #ffffff;
}

.enquiry-submit-btn::before {
    display: none; /* Disable default hover gradient overlay to keep WhatsApp green */
}

/* Modal Responsive adjustments */
@media (max-width: 480px) {
    .enquiry-modal-content {
        padding: 30px 20px;
        border-radius: 16px;
    }
    
    .enquiry-modal-header h3 {
        font-size: 1.5rem;
    }
}