/* SWARIYA WEDDINGS - LUXURY DESIGN SYSTEM */

:root {
    --primary: #8B1A1A;
    --primary-dark: #641212;
    --primary-glow: #a82323;
    --secondary: #A02334;
    --accent: #D4AF37;
    --accent-light: #F3E5AB;
    --accent-dark: #B8860B;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f3e5ab 50%, #aa7c11 100%);
    --gold-glow: rgba(212, 175, 55, 0.35);
    --dark: #1A1A1A;
    --dark-luxury: #0a1c18;
    --dark-emerald: #132a22;
    --bg-dark: #06110e;
    --light: #F9F7F2;
    --cream: #FFFDF9;
    --ivory-soft: #FAF6F0;
    --text: #2D2D2D;
    --text-muted: #5E5E5E;
    --border: #E8E2D8;
    --border-gold: rgba(212, 175, 55, 0.28);
    --border-gold-hover: rgba(212, 175, 55, 0.65);
    --shadow-sm: 0 4px 12px rgba(10, 28, 24, 0.04);
    --shadow-luxury: 0 10px 30px rgba(10, 28, 24, 0.06);
    --shadow-hover: 0 18px 45px rgba(10, 28, 24, 0.12);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Poppins', 'Segoe UI', sans-serif;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.8;
    color: var(--text);
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.3px;
}

h1 { letter-spacing: -0.5px; }

hr.gold-divider, .gold-divider {
    border: none;
    height: 1px;
    width: 70px;
    background: var(--accent);
    margin: 18px 0 28px;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-label::after {
    content: '';
    flex: 0 0 40px;
    height: 1px;
    background: var(--accent);
    opacity: 0.6;
}

section > .section-label:first-child,
.container > .section-label:first-child {
    justify-content: flex-start;
}

.btn-primary, .btn-contact {
    font-family: var(--font-body);
    letter-spacing: 0.5px;
}

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

/* NAVIGATION */
.navbar {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-gold);
    box-shadow: 0 4px 20px rgba(10, 28, 24, 0.04);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--dark-luxury);
    position: relative;
    padding-right: 14px;
    font-family: var(--font-heading);
    transition: color 0.3s ease;
}

.logo::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent-glow);
}

.logo a {
    text-decoration: none;
    color: var(--dark-luxury);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #4A4A4A;
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.6px;
    transition: all 0.25s ease;
    position: relative;
    padding: 6px 0;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.btn-contact {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #ffffff !important;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(139, 26, 26, 0.25);
    border: 1px solid rgba(212, 175, 55, 0.35);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-contact:hover {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--dark-luxury) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
    border-color: var(--accent);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    color: var(--dark);
    cursor: pointer;
    padding: 4px 8px;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background: #fff;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 12px 20px rgba(0,0,0,0.08);
        padding: 10px 20px 20px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-links li:last-child {
        border-bottom: none;
        padding-top: 16px;
    }

    .nav-links a {
        font-size: 15px;
    }

    .btn-contact {
        display: inline-block;
    }
}

/* HERO SECTION */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 100px 0;
}

.hero-content h1 {
    font-size: 54px;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 17px;
    color: #666;
    margin-bottom: 34px;
    line-height: 1.85;
    max-width: 480px;
}

.hero-image {
    width: 100%;
    height: 520px;
    background: linear-gradient(135deg, #E8D5C4 0%, #D4C5B0 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(139,26,26,0.15);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 20px rgba(139,26,26,0.25);
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(139,26,26,0.35);
}

/* SECTION LABEL */
.section-label {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* STATISTICS */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 80px 0;
    text-align: center;
}

.stat-item {
    position: relative;
    padding-top: 4px;
}

.stat-item h3 {
    font-size: 46px;
    color: var(--primary);
    margin-bottom: 14px;
    font-weight: 600;
}

.stat-item h3::after {
    content: '';
    display: block;
    width: 36px;
    height: 2px;
    background: var(--accent);
    margin: 14px auto 0;
}

.stat-item p {
    font-size: 14px;
    color: #666;
}

/* TIMELINE */
.timeline {
    margin: 100px 0;
    text-align: center;
}

.timeline h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
}

.timeline > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    position: relative;
}

.timeline-grid::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 5%;
    right: 5%;
    height: 1px;
    background: var(--border);
}

.timeline-item {
    text-align: center;
    position: relative;
    padding-top: 25px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--accent);
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px var(--accent);
}

.timeline-item h4 {
    font-size: 15px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.timeline-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* VENUES GRID */
.venues-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.venue-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 360px;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.venue-card:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.venue-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transition: transform 0.5s ease;
}

.venue-card:hover img {
    transform: scale(1.06);
}

.venue-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px;
    color: white;
}

.venue-card h3 {
    font-size: 20px;
    margin-top: 40px;
}

/* CONTACT FORM */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 60px;
    align-items: start;
    margin: 80px 0 100px;
}

.contact-content h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.25;
}

.contact-content p {
    font-size: 15.5px;
    color: #555;
    margin-bottom: 28px;
    line-height: 1.85;
}

.contact-form {
    background: linear-gradient(180deg, #FFFFFF 0%, #FAF6F0 100%);
    padding: 45px 40px;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--border-gold);
    box-shadow: var(--shadow-luxury);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
}

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

.form-group label {
    display: block;
    font-size: 12.5px;
    color: var(--dark-luxury);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 14.5px;
    background: #fff;
    color: var(--text);
    outline: none;
    transition: all 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

.form-group fieldset legend {
    display: block;
    font-size: 13px;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 8px;
    padding: 0;
}

.checkbox-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.checkbox-group input {
    width: auto;
}

/* TESTIMONIALS */
.testimonials {
    margin: 100px 0;
    text-align: center;
}

.testimonials h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.testimonial-item {
    background: var(--light);
    padding: 36px 32px 32px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border-top: 2px solid var(--accent);
}

.testimonial-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}

.testimonial-item::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 60px;
    color: var(--accent);
    opacity: 0.5;
    line-height: 1;
    display: block;
    margin-bottom: 4px;
}

.testimonial-item p:first-child {
    font-family: var(--font-heading);
    font-style: italic;
}

.testimonial-item p:first-child {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
    font-size: 15px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
    font-size: 14px;
}

/* FAQ */
.faq-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin: 100px 0;
}

.faq-image {
    width: 100%;
    height: 480px;
    background: #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.faq-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.faq-content h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
    transition: border-color 0.3s;
}

.faq-item.active {
    border-color: var(--accent);
}

.faq-item h4 {
    color: var(--dark);
    font-size: 16px;
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item h4 span {
    color: var(--accent);
    font-size: 20px;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    max-height: 200px;
    overflow: hidden;
    transition: max-height 0.3s;
}

.faq-item.active p {
    max-height: 500px;
}

/* BLOG GALLERY */
.blog-section {
    margin: 100px 0;
}

.blog-section h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
}

.blog-section > p {
    color: #666;
    margin-bottom: 50px;
}

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

.blog-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 300px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: box-shadow 0.4s ease;
    display: block;
    text-decoration: none;
}

.blog-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    transition: transform 0.5s ease;
}

.blog-card:hover img {
    transform: scale(1.06);
}

.blog-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.05) 60%, transparent);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    color: white;
}

.blog-card h3 {
    font-size: 18px;
}

/* FOOTER */
.footer {
    background: var(--dark);
    color: white;
    padding: 64px 0 24px;
    margin-top: 100px;
    border-top: 3px solid var(--accent);
}

.footer-section h3 {
    position: relative;
    padding-bottom: 14px;
    letter-spacing: 0.5px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    background: var(--accent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section p,
.footer-section a {
    font-size: 13px;
    color: #ccc;
    line-height: 1.8;
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--accent);
}

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

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

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #b0b0b0;
}

.footer-bottom a {
    color: #b0b0b0;
}

/* SUBPAGE HEADER (About, Services, Venues, Blog, Contact, FAQ, Guides) */
.page-header {
    background: radial-gradient(circle at 50% 15%, #16362d 0%, #0a1c18 65%, #050f0c 100%);
    color: var(--cream);
    padding: 85px 20px 70px;
    text-align: center;
    position: relative;
    border-bottom: 2px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.page-header p.section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--accent);
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    padding: 5px 18px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.page-header p.section-label::after {
    display: none;
}

.page-header h1 {
    font-size: 44px;
    font-weight: 600;
    color: #FFF8F0;
    margin: 8px auto 0;
    max-width: 900px;
    line-height: 1.22;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.page-header p.subtitle {
    font-size: 16.5px;
    color: rgba(255, 248, 240, 0.85);
    margin: 14px auto 0;
    max-width: 680px;
    line-height: 1.7;
    font-weight: 300;
}

.breadcrumb {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: rgba(212, 175, 55, 0.75);
    margin-top: 20px;
    justify-content: center;
    align-items: center;
}

.breadcrumb a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}

.breadcrumb a:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.breadcrumb li:not(:last-child)::after {
    content: '✦';
    margin-left: 8px;
    color: rgba(212, 175, 55, 0.5);
    font-size: 10px;
}

.breadcrumb li[aria-current="page"] {
    color: rgba(255, 248, 240, 0.7);
}

.page-content {
    padding: 70px 0 90px;
}

.page-hero-image {
    width: 100%;
    max-width: 960px;
    height: 480px;
    border-radius: 16px;
    overflow: hidden;
    margin: 0 auto 50px;
    border: 1px solid var(--border-gold);
    box-shadow: 0 20px 50px rgba(10, 28, 24, 0.12);
    position: relative;
}

.page-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-hero-image:hover img {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 16px 50px;
    }
    .page-header h1 {
        font-size: 30px;
    }
    .page-header p.subtitle {
        font-size: 14.5px;
    }
    .page-hero-image {
        height: 280px;
        max-width: 100%;
        margin-bottom: 35px;
    }
}

.page-content h2 {
    font-size: 32px;
    color: var(--primary);
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.page-content h2:first-child {
    margin-top: 0;
}

.page-content h3 {
    font-size: 22px;
    color: var(--dark-luxury);
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 600;
}

.page-content p {
    color: #4A4A4A;
    margin-bottom: 16px;
    font-size: 15.5px;
    line-height: 1.8;
}

.page-content ul {
    margin: 0 0 25px 20px;
    color: #4A4A4A;
}

.page-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* LUXURY CARDS & GRIDS */
.luxury-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.luxury-card {
    background: linear-gradient(180deg, #FFFFFF 0%, #FAF6F0 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 36px 32px;
    box-shadow: var(--shadow-luxury);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

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

.luxury-card-icon {
    font-size: 28px;
    margin-bottom: 16px;
    display: inline-block;
}

.luxury-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-dark);
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gold-callout {
    background: #FFFDF9;
    border-left: 4px solid var(--accent);
    border-top: 1px solid var(--border-gold);
    border-right: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    border-radius: 0 12px 12px 0;
    padding: 24px 28px;
    margin: 35px 0;
    box-shadow: var(--shadow-sm);
}

.gold-callout h3, .gold-callout h4 {
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 10px;
}

.gold-callout p:last-child {
    margin-bottom: 0;
}

.table-scroll {
    overflow-x: auto;
    margin: 30px 0 45px;
    border-radius: 12px;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-sm);
}

.page-content table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    margin: 0;
    background: #FFFFFF;
}

.page-content table th {
    background: var(--dark-luxury);
    color: var(--accent-light);
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--accent);
}

.page-content table td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    color: #4A4A4A;
    font-size: 14px;
}

.page-content table tr:nth-child(even) {
    background: #FAF7F2;
}

.page-content table tr:hover td {
    background: #FFFDF9;
}

/* HIGH TOUCH CONSULTATION CTA */
.subpage-cta {
    background: radial-gradient(circle at 50% 30%, #153229 0%, #0a1c18 80%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    text-align: center;
    color: var(--cream);
    margin: 60px 0 30px;
    box-shadow: var(--shadow-hover);
    position: relative;
    overflow: hidden;
}

.subpage-cta h2 {
    color: #FFF8F0 !important;
    font-size: 34px;
    margin-bottom: 14px;
    margin-top: 0 !important;
}

.subpage-cta p {
    color: rgba(255, 248, 240, 0.85);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 30px;
}

.subpage-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--dark-luxury) !important;
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.btn-outline-gold {
    background: transparent;
    color: #FFF8F0 !important;
    font-weight: 600;
    font-size: 13.5px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 13px 30px;
    border-radius: 30px;
    border: 1.5px solid var(--accent);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-gold:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--accent-light);
    transform: translateY(-3px);
}

/* GALLERY */
.gallery-filters {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    background: #fff;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 11px 24px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.gallery-filter-btn:hover {
    border-color: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.15);
}

.gallery-filter-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, #4a0d18 100%);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 6px 18px rgba(114, 20, 34, 0.28);
}

.gallery-grid {
    column-count: 4;
    column-gap: 20px;
    width: 100%;
}

.gallery-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #fdfbf7;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
    position: relative;
    vertical-align: top;
}

.gallery-item.hidden {
    display: none !important;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(26, 20, 16, 0.14);
}

.gallery-item img {
    width: 100%;
    height: auto !important;
    display: block;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 10, 8, 0.85) 0%, rgba(15, 10, 8, 0.3) 40%, transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 18px;
    color: #fff;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

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

.gallery-item-category {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-light);
    font-weight: 600;
    margin-bottom: 4px;
}

.gallery-item-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
    color: #fff;
}

.gallery-item-zoom {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover .gallery-item-zoom {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 1100px) {
    .gallery-grid {
        column-count: 3;
        column-gap: 16px;
    }
    .gallery-item {
        margin-bottom: 16px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        column-count: 2;
        column-gap: 12px;
    }
    .gallery-item {
        margin-bottom: 12px;
        border-radius: 8px;
    }
    .gallery-item-overlay {
        padding: 14px 10px;
    }
    .gallery-item-title {
        font-size: 13px;
    }
    .gallery-filters {
        gap: 8px;
        margin-bottom: 24px;
    }
    .gallery-filter-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        column-count: 2;
        column-gap: 8px;
    }
    .gallery-item {
        margin-bottom: 8px;
        border-radius: 6px;
    }
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 8, 6, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.lightbox-container {
    position: relative;
    max-width: 90vw;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox img {
    max-width: 100%;
    max-height: 72vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.lightbox-caption-bar {
    width: 100%;
    margin-top: 14px;
    text-align: center;
    color: #f5f0eb;
}

.lightbox-caption-category {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--accent-light);
    text-transform: uppercase;
    font-weight: 600;
}

.lightbox-caption-text {
    font-family: var(--font-heading);
    font-size: 17px;
    margin-top: 4px;
    color: #fff;
}

.lightbox-counter {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    letter-spacing: 1px;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 28px;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.25);
    z-index: 100000;
    line-height: 1;
}

.lightbox-close:hover {
    background: var(--accent);
    color: #fff;
    transform: rotate(90deg);
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
    user-select: none;
    z-index: 100000;
}

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

.lightbox-prev:hover, .lightbox-next:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 600px) {
    .lightbox {
        padding: 12px;
    }
    .lightbox-close {
        top: 14px;
        right: 14px;
        width: 38px;
        height: 38px;
        font-size: 24px;
    }
    .lightbox-prev { left: 8px; width: 40px; height: 40px; font-size: 18px; }
    .lightbox-next { right: 8px; width: 40px; height: 40px; font-size: 18px; }
    .lightbox img {
        max-height: 65vh;
    }
    .lightbox-caption-text {
        font-size: 14px;
    }
}

/* WEDDING STYLES */
.styles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 50px 0;
}

.style-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 320px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease;
    text-decoration: none;
    display: block;
}

.style-card:hover {
    transform: translateY(-6px);
}

.style-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
}

.style-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: white;
}

.style-card-overlay h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.style-card-overlay p {
    font-size: 12px;
    color: rgba(255,255,255,0.85);
}

@media (max-width: 900px) {
    .styles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* VENUE FILTER BAR */
/* VENUE FILTER BAR */
.filter-bar {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    background: linear-gradient(180deg, #FFFFFF 0%, #FAF6F0 100%);
    padding: 28px 32px;
    border-radius: var(--radius-md);
    margin-bottom: 45px;
    align-items: flex-end;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-luxury);
}

.filter-group {
    flex: 1;
    min-width: 180px;
}

.filter-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-luxury);
    margin-bottom: 8px;
}

.filter-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 14px;
    background: white;
    color: var(--text);
    outline: none;
    transition: all 0.25s ease;
}

.filter-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.filter-reset {
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    padding: 11px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    height: 46px;
    transition: all 0.3s ease;
}

.filter-reset:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 26, 26, 0.2);
}

.filter-empty {
    text-align: center;
    color: var(--text-muted);
    padding: 50px 0;
    display: none;
    font-size: 16px;
}

/* BUDGET ESTIMATOR */
.estimator {
    background: radial-gradient(circle at 50% 20%, #15382e 0%, #0a1c18 70%, #050f0c 100%);
    border-radius: var(--radius-lg);
    padding: 55px 45px;
    color: white;
    margin: 90px 0;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-hover);
    position: relative;
    overflow: hidden;
}

.estimator h2 {
    font-size: 32px;
    color: #FFF8F0 !important;
    margin-bottom: 12px;
}

.estimator > p {
    color: rgba(255, 248, 240, 0.85);
    margin-bottom: 35px;
    font-size: 15px;
}

.estimator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 24px;
    align-items: end;
}

.estimator-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--accent-light);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.estimator-group select {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(212, 175, 55, 0.35);
    font-family: inherit;
    font-size: 14.5px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark-luxury);
    outline: none;
}

.estimator-btn {
    background: var(--gold-gradient);
    color: var(--dark-luxury);
    border: none;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
    transition: all 0.3s ease;
}

.estimator-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.estimator-result {
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-md);
    padding: 28px;
    display: none;
}

.estimator-result.active {
    display: block;
}

.estimator-result .range {
    font-size: 32px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--accent-light);
    margin-bottom: 8px;
}

.estimator-result p {
    font-size: 13.5px;
    color: rgba(255, 248, 240, 0.85);
}

@media (max-width: 768px) {
    .estimator-grid {
        grid-template-columns: 1fr;
    }
    .estimator {
        padding: 35px 22px;
    }
}

/* SERVICES SPLIT GRID */
.services-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

@media (max-width: 900px) {
    .services-split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* RESPONSIVE & MOBILE POLISH */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 40px 0;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: clamp(28px, 7vw, 38px);
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .hero-image {
        height: 340px;
    }

    .contact-form {
        padding: 24px 18px !important;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stat-item {
        padding: 24px 20px;
    }

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

    .venues-grid,
    .blog-grid,
    .styles-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-section,
    .faq-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .hero-image {
        height: 280px;
    }

    .contact-form form div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
}

/* ==========================================================================
   GLOBAL CONTEXTUAL WHATSAPP CONVERSION WIDGET
   ========================================================================== */
.floating-whatsapp-widget {
    position: fixed;
    bottom: 26px;
    right: 26px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 10px 18px 10px 12px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35), 0 4px 10px rgba(0,0,0,0.15);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-whatsapp-widget:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45);
    background: #20ba5a;
    color: #fff;
}

.floating-whatsapp-widget .wa-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 34px;
    height: 34px;
}

.floating-whatsapp-widget .wa-text-label {
    letter-spacing: 0.2px;
}

@media (max-width: 600px) {
    .floating-whatsapp-widget {
        bottom: 20px;
        right: 20px;
        padding: 10px;
        border-radius: 50%;
    }
    .floating-whatsapp-widget .wa-text-label {
        display: none;
    }
    .floating-whatsapp-widget .wa-icon-wrap {
        width: 32px;
        height: 32px;
        background: transparent;
    }
}

/* ==========================================================================
   IMAGE ACTIONS OVERLAY (PINTEREST & WEDDING BRIEF BUILDER)
   ========================================================================== */
.pin-wrapper-active {
    position: relative;
    overflow: hidden;
}

.image-actions-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(-6px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 20;
}

.pin-wrapper-active:hover .image-actions-overlay {
    opacity: 1;
    transform: translateY(0);
}

.pinterest-save-btn {
    background: #ffffff;
    color: #333;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.76rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    font-family: var(--font-body);
    transition: all 0.2s;
}

.pinterest-save-btn:hover {
    background: #fff;
    transform: scale(1.04);
}

.brief-save-btn {
    background: rgba(10, 28, 24, 0.88);
    color: var(--accent);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.76rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    font-family: var(--font-body);
    transition: all 0.2s;
}

.brief-save-btn:hover {
    background: #0a1c18;
    color: #fff;
    border-color: var(--accent);
    transform: scale(1.04);
}

/* SWARIYA INTERACTIVE TOAST */
.swariya-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #0a1c18;
    color: #ffffff;
    border: 1px solid var(--accent);
    padding: 14px 24px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    z-index: 10000;
    font-family: var(--font-body);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.swariya-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* ==========================================================================
   PRINT / PDF EXPORT STYLESHEET
   ========================================================================== */
@media print {
    header.site-header,
    footer.site-footer,
    .floating-whatsapp-widget,
    .pinterest-save-btn,
    .nav-toggle,
    .btn-primary,
    .btn-secondary,
    button {
        display: none !important;
    }
    body {
        background: #fff !important;
        color: #000 !important;
        font-size: 12pt;
    }
    .container, main {
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    table {
        page-break-inside: avoid;
        border-collapse: collapse !important;
        width: 100% !important;
    }
    th, td {
        border: 1px solid #ccc !important;
        padding: 6px 10px !important;
    }
}

