/* ============================================
   VARANASI PHOTO WALK - DCP EXACT LAYOUT
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --primary-dark: #0a0e16;
    --accent-red: #d4534a;
    --accent-orange: #e89968;
    --accent-gold: #d4af37;
    --accent-platinum: #e5e4e2;
    --text-light: #b8b8b8;
    --text-white: #ffffff;
    --bg-dark: #0f1419;
    --border-color: #2a3141;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.6);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 400;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
    background-image:
        repeating-linear-gradient(
            0deg,
            rgba(212, 175, 55, 0.08) 0px,
            rgba(212, 175, 55, 0.08) 1px,
            transparent 1px,
            transparent 2px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(212, 175, 55, 0.08) 0px,
            rgba(212, 175, 55, 0.08) 1px,
            transparent 1px,
            transparent 2px
        );
    background-size: 50px 50px, 50px 50px;
    background-position: 0 0, 25px 25px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: sticky;
    top: 0;
    background: rgba(10, 14, 22, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--accent-gold);
    z-index: 1000;
    padding: 24px 30px;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
}

.logo-text {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-platinum));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.logo-author {
    font-size: 12px;
    color: var(--text-white);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    position: absolute;
    right: 30px;
}

.theme-switcher {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.theme-switcher:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar-ctas {
    display: flex;
    gap: 12px;
    align-items: center;
}

.navbar-btn {
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.navbar-btn.whatsapp-quick {
    background: #25d366;
    color: white;
    border: 2px solid #25d366;
}

.navbar-btn.whatsapp-quick:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.navbar-btn.book-quick {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    color: white;
    border: 2px solid var(--accent-red);
}

.navbar-btn.book-quick:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(235, 85, 100, 0.4);
}

/* ============================================
   LIGHT THEME
   ============================================ */

body.light-theme {
    --primary-dark: #ffffff;
    --bg-dark: #f5f5f5;
    --text-white: #000000;
    --text-light: #333333;
    background-color: #ffffff;
    color: #333333;
}

body.light-theme .navbar {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: var(--accent-gold);
}

body.light-theme .section {
    background: #f9f9f9;
}

body.light-theme h1,
body.light-theme h2,
body.light-theme h3,
body.light-theme h4,
body.light-theme h5,
body.light-theme h6 {
    color: #000000;
}

body.light-theme .logo-text {
    -webkit-text-fill-color: unset;
    background: linear-gradient(135deg, #d4af37, #e5e4e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.light-theme .main-gallery,
body.light-theme .gallery-carousel,
body.light-theme .value-card,
body.light-theme .testimonial-card,
body.light-theme .reach-card {
    background: #ffffff !important;
    border-color: #ddd !important;
}

body.light-theme .faq-item {
    background: transparent !important;
    border-bottom-color: #ddd !important;
}

body.light-theme .pricing-layout {
    background: transparent;
}

body.light-theme .room-option {
    background: rgba(212, 175, 55, 0.05) !important;
    border-color: #ddd !important;
}

body.light-theme .room-option:hover {
    background: rgba(212, 175, 55, 0.1) !important;
    border-color: var(--accent-gold) !important;
}

body.light-theme input[type="text"],
body.light-theme input[type="email"],
body.light-theme input[type="tel"],
body.light-theme textarea,
body.light-theme select {
    background: #ffffff !important;
    color: #000000 !important;
    border-color: #ddd !important;
}

body.light-theme .artist-card,
body.light-theme .detail-box {
    background: #ffffff !important;
    border-color: #ddd !important;
}

body.light-theme .day {
    border-bottom-color: #ddd !important;
}

body.light-theme .policy-section {
    background: transparent;
}

body.light-theme .footer {
    background: #f5f5f5 !important;
    border-top-color: #ddd !important;
}

/* Hero Product and Details Row Responsive */
@media (max-width: 1200px) {
    .hero-product-section {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 50px;
    }
}

@media (max-width: 1024px) {
    .hero-product-section {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .details-row-section {
        grid-template-columns: repeat(2, 1fr);
    }

    .navbar-ctas {
        gap: 8px;
    }

    .navbar-btn {
        padding: 8px 12px;
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
        overflow-x: hidden;
        width: 100%;
    }

    h1 { font-size: 24px !important; margin-bottom: 12px !important; }
    h2 { font-size: 20px !important; margin-bottom: 12px !important; }
    h3 { font-size: 16px !important; margin-bottom: 10px !important; }
    h4, h5, h6 { font-size: 14px !important; }
    p { font-size: 14px !important; }

    .navbar { padding: 10px 8px; }
    .nav-container { padding: 0 4px; }
    .logo-text { font-size: 20px; }
    .navbar-ctas { display: none; }

    .main-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        padding: 20px 24px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }

    .section {
        padding: 12px 0 !important;
        margin-bottom: 12px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    .section h2 { font-size: 18px !important; }

    .hero-product-section { grid-template-columns: 1fr !important; gap: 12px !important; padding: 12px !important; box-sizing: border-box !important; width: 100% !important; max-width: 100% !important; overflow-x: hidden !important; }
    .gallery-column { gap: 12px !important; width: 100% !important; max-width: 100% !important; overflow-x: hidden !important; }
    .main-gallery { width: 100% !important; height: auto !important; max-height: 350px !important; border-radius: 8px; }
    .main-gallery img { width: 100% !important; height: auto !important; max-height: 350px !important; object-fit: cover; }
    .thumbnails-list { gap: 8px !important; width: 100% !important; max-width: 100% !important; }
    .thumbnail { min-width: 60px; height: 60px; }

    .info-column { gap: 12px !important; width: 100% !important; max-width: 100% !important; overflow-x: hidden !important; }
    .workshop-title { font-size: 18px; }
    .artist-card { padding: 12px !important; gap: 8px !important; max-height: none !important; width: 100% !important; max-width: 100% !important; overflow: visible !important; }

    .details-row-section { grid-template-columns: 1fr 1fr !important; gap: 10px !important; padding: 12px !important; box-sizing: border-box !important; width: 100% !important; max-width: 100% !important; overflow-x: hidden !important; }
    .detail-box { padding: 10px !important; min-height: auto !important; width: 100% !important; max-width: 100% !important; }

    .pricing-layout { grid-template-columns: 1fr; gap: 12px; padding: 8px; box-sizing: border-box; width: 100%; max-width: 100%; overflow-x: hidden; }
    .pricing-inclusions h3, .pricing-selector h3 { font-size: 15px; }
    .room-option { padding: 12px; }

    /* Grids on Tablet */
    .value-cards-grid { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
    .value-card { padding: 10px; min-height: 0; }
    .testimonials-grid { grid-template-columns: 1fr !important; gap: 10px !important; }
    .testimonial-card { padding: 12px; min-height: auto; }

    .day { margin-bottom: 8px; }
    .day-toggle { padding: 12px; font-size: 14px; }
    .faq-container { grid-template-columns: 1fr 1fr !important; gap: 15px !important; }
    .faq-item { margin-bottom: 0; }
    .faq-toggle { padding: 12px 14px; font-size: 13px; }

    .footer { padding: 12px 8px; }
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
        overflow-x: hidden;
        width: 100%;
    }
    h1 { font-size: 22px !important; margin-bottom: 10px !important; }
    h2 { font-size: 18px !important; margin-bottom: 10px !important; }
    h3 { font-size: 15px !important; margin-bottom: 8px !important; }
    h4, h5, h6 { font-size: 13px !important; }
    p, span, a { font-size: 12px !important; }

    .navbar { padding: 8px 5px; }
    .nav-container { padding: 0 3px; }
    .logo-text { font-size: 18px; }
    .logo-author { font-size: 8px; }
    .navbar-ctas { display: none; }

    .main-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        padding: 20px 16px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }

    .section {
        padding: 8px 0 !important;
        margin-bottom: 8px !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    .section h2 { font-size: 16px !important; }

    .hero-product-section { grid-template-columns: 1fr !important; gap: 8px !important; padding: 6px !important; box-sizing: border-box !important; width: 100% !important; max-width: 100% !important; overflow-x: hidden !important; display: grid !important; }
    .gallery-column { gap: 8px !important; width: 100% !important; max-width: 100% !important; overflow-x: hidden !important; }
    .main-gallery { width: 100% !important; height: auto !important; max-height: 220px !important; border-radius: 6px; }
    .main-gallery img { width: 100% !important; height: auto !important; max-height: 220px !important; object-fit: cover; }
    .thumbnails-section { width: 100% !important; max-width: 100% !important; }
    .thumbnails-list { gap: 6px !important; padding: 6px 0 !important; width: 100% !important; max-width: 100% !important; overflow-x: auto !important; }
    .thumbnail { min-width: 45px; width: 45px; height: 45px; flex-shrink: 0; }

    .info-column { gap: 10px !important; width: 100% !important; max-width: 100% !important; overflow-x: hidden !important; }
    .workshop-title { font-size: 16px; }
    .artist-card { padding: 10px !important; gap: 6px !important; width: 100% !important; max-width: 100% !important; max-height: none !important; overflow: visible !important; }

    .details-row-section { grid-template-columns: 1fr 1fr !important; gap: 8px !important; padding: 6px !important; box-sizing: border-box !important; width: 100% !important; max-width: 100% !important; overflow-x: hidden !important; }
    .detail-box { padding: 8px !important; width: 100% !important; max-width: 100% !important; }

    .pricing-layout { grid-template-columns: 1fr; gap: 10px; padding: 6px; box-sizing: border-box; width: 100%; max-width: 100%; overflow-x: hidden; }
    .pricing-inclusions h3, .pricing-selector h3 { font-size: 14px; }
    .room-option { padding: 8px; }

    .policy-title { font-size: 14px; margin-bottom: 6px; }
    .policy-text { font-size: 11px; }
    .exclusions-list { font-size: 11px; padding-left: 16px; }
    .exclusions-list li { margin-bottom: 4px; }

    /* Value Cards Grid */
    .value-cards-grid { grid-template-columns: 1fr 1fr !important; gap: 6px !important; }
    .value-card { padding: 8px; min-height: 0; }
    .value-card-icon { font-size: 24px; height: 24px; }
    .value-card h3 { font-size: 12px; margin-bottom: 4px; }
    .value-card p { font-size: 10px; line-height: 1.3; }

    /* Testimonials Grid */
    .testimonials-grid { grid-template-columns: 1fr !important; gap: 8px !important; }
    .testimonial-card { padding: 10px; min-height: auto; max-height: 180px; }
    .testimonial-card p { font-size: 12px; line-height: 1.4; }
    .testimonial-author { font-size: 11px; margin-top: 6px; }

    /* Itinerary */
    .day { padding: 0; border-bottom: 1px solid rgba(212, 175, 55, 0.2); margin-bottom: 6px; }
    .day-toggle { padding: 8px; font-size: 12px; gap: 8px; }
    .day-toggle h3 { font-size: 13px; }
    .activity-time { font-size: 10px; margin-bottom: 3px; }
    .activity-details { font-size: 10px; line-height: 1.3; margin-top: 2px; }

    /* FAQ */
    .faq-container { grid-template-columns: 1fr !important; gap: 12px !important; }
    .faq-item { margin-bottom: 0; }
    .faq-toggle { padding: 8px 10px; font-size: 12px; }
    .faq-toggle h3 { font-size: 12px; }
    .faq-answer { font-size: 11px; line-height: 1.3; padding: 8px; }

    .footer { padding: 10px 6px; margin-top: 20px; }
    .footer-link { font-size: 10px; padding: 3px 4px; }

    input, textarea, select { font-size: 12px !important; padding: 8px !important; }

    .nav-right { gap: 5px; right: 5px; }
    .theme-switcher { font-size: 12px; padding: 2px; }
    .whatsapp-btn { width: 45px; height: 45px; font-size: 20px; }
}

/* ============================================
   MAIN LAYOUT - Two Column
   ============================================ */

.main-wrapper {
    max-width: 70%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 50px;
}

.content-area {
    flex: 1;
}

/* ============================================
   SIDEBAR NAVIGATION
   ============================================ */

.sidebar-nav {
    position: relative;
}

.sidebar-sticky {
    position: sticky;
    top: 100px;
    background: rgba(20, 27, 38, 0.8);
    border: 1px solid var(--border-color);
    padding: 25px 20px;
    border-radius: 4px;
    backdrop-filter: blur(10px);
}

.sidebar-sticky h3 {
    color: var(--text-white);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--accent-red);
    padding-bottom: 15px;
}

.toc-list {
    list-style: none;
}

.toc-list li {
    margin-bottom: 0;
}

.toc-list a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    font-size: 13px;
    padding: 10px 0;
    border-left: 2px solid transparent;
    padding-left: 12px;
    transition: all 0.3s ease;
}

.toc-list a:hover {
    color: var(--accent-orange);
    border-left-color: var(--accent-red);
    padding-left: 18px;
}

/* ============================================
   HERO PRODUCT SECTION - Two Column
   ============================================ */

.hero-product-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: flex-start;
}

/* ============================================
   GALLERY COLUMN - Left Side
   ============================================ */

.gallery-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-gallery {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-lg);
    max-height: 450px;
}

.main-gallery img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 450px;
    object-fit: cover;
}

/* ============================================
   THUMBNAILS - Horizontal Scroll
   ============================================ */

.thumbnails-section {
    width: 100%;
}

.thumbnails-list {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 5px 0;
}

.thumbnails-list::-webkit-scrollbar {
    height: 6px;
}

.thumbnails-list::-webkit-scrollbar-track {
    background: rgba(212, 175, 55, 0.1);
    border-radius: 3px;
}

.thumbnails-list::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 3px;
}

.thumbnail {
    min-width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.thumbnail:hover {
    border-color: var(--accent-gold);
    transform: scale(1.05);
}

.thumbnail.active {
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================
   INFO COLUMN - Right Side
   ============================================ */

.info-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ============================================
   DETAILS ROW SECTION - Full Width Below
   ============================================ */

.details-row-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background:
        repeating-linear-gradient(
            45deg,
            rgba(212, 175, 55, 0.08) 0px,
            rgba(212, 175, 55, 0.08) 1px,
            transparent 1px,
            transparent 2px
        ),
        rgba(20, 27, 38, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
}

.details-row-section .detail-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

/* ============================================
   WORKSHOP TITLE
   ============================================ */

.workshop-title {
    font-size: 32px;
    color: var(--text-white);
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

/* ============================================
   PRICING SECTION - TWO COLUMN LAYOUT
   ============================================ */

.pricing-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.pricing-inclusions {
    display: flex;
    flex-direction: column;
}

.pricing-inclusions h3 {
    font-size: 24px;
    color: var(--text-white);
    margin-bottom: 20px;
    font-weight: 700;
}

.inclusions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inclusions-list li {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 14px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
}

.inclusions-list li:last-child {
    margin-bottom: 0;
}

/* ============================================
   PRICING SELECTOR
   ============================================ */

.pricing-selector {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.pricing-selector h3 {
    font-size: 24px;
    color: var(--text-white);
    margin-bottom: 10px;
    font-weight: 700;
}

.room-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.room-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    background:
        repeating-linear-gradient(
            -45deg,
            rgba(212, 175, 55, 0.08) 0px,
            rgba(212, 175, 55, 0.08) 1px,
            transparent 1px,
            transparent 2px
        ),
        rgba(20, 27, 38, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.room-option:hover {
    border-color: var(--accent-gold);
    background:
        repeating-linear-gradient(
            -45deg,
            rgba(212, 175, 55, 0.1) 0px,
            rgba(212, 175, 55, 0.1) 1px,
            transparent 1px,
            transparent 2px
        ),
        rgba(20, 27, 38, 0.6);
}

.room-option input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--accent-gold);
    flex-shrink: 0;
}

.option-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.option-title {
    color: var(--text-white);
    font-size: 16px;
    font-weight: 600;
}

.option-price {
    color: var(--accent-gold);
    font-size: 18px;
    font-weight: 700;
}

.price-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.option-price.original {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 15px;
    font-weight: 600;
}

.option-price.current {
    color: var(--accent-gold);
    font-size: 18px;
    font-weight: 700;
}

.discount-badge {
    background: rgba(212, 175, 55, 0.2);
    color: var(--accent-gold);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.room-option input[type="radio"]:checked + .option-content .option-title {
    color: var(--accent-platinum);
}

/* ============================================
   PRICE SUMMARY
   ============================================ */

.price-summary {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    background:
        repeating-linear-gradient(
            45deg,
            rgba(212, 175, 55, 0.1) 0px,
            rgba(212, 175, 55, 0.1) 1px,
            transparent 1px,
            transparent 2px
        ),
        rgba(20, 27, 38, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 8px;
}

.summary-label {
    color: var(--text-light);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.summary-price {
    color: var(--accent-gold);
    font-size: 28px;
    font-weight: 700;
}

.price-note {
    color: var(--text-light);
    font-size: 12px;
    margin: 0;
}

/* ============================================
   POLICY SECTION (Cancellation & What's Not Included)
   ============================================ */

.policy-section {
    margin-bottom: 40px;
}

.policy-title {
    font-size: 24px;
    color: var(--text-white);
    margin-bottom: 15px;
    font-weight: 700;
}

.policy-text {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

.exclusions-list {
    list-style: disc;
    padding-left: 25px;
    margin: 15px 0 0 0;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}

.exclusions-list li {
    margin-bottom: 10px;
}

/* ============================================
   ARTIST CARD
   ============================================ */

.artist-card {
    background:
        repeating-linear-gradient(
            90deg,
            rgba(212, 175, 55, 0.06) 0px,
            rgba(212, 175, 55, 0.06) 1px,
            transparent 1px,
            transparent 2px
        ),
        rgba(20, 27, 38, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    max-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.artist-card:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-md);
}

.artist-img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.artist-card:hover .artist-img {
    border-color: var(--accent-gold);
}

.artist-card h3 {
    font-size: 18px;
    color: var(--text-white);
    margin-bottom: 5px;
}

.artist-title {
    color: var(--accent-gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 12px;
}

.artist-bio {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.artist-awards {
    font-size: 11px;
    color: var(--accent-gold);
    line-height: 2;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 12px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

/* ============================================
   QUICK DETAILS
   ============================================ */

.quick-details {
    background:
        repeating-linear-gradient(
            45deg,
            rgba(212, 175, 55, 0.04) 0px,
            rgba(212, 175, 55, 0.04) 1px,
            transparent 1px,
            transparent 2px
        ),
        rgba(20, 27, 38, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

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

.detail-label {
    font-size: 12px;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.detail-value {
    font-size: 14px;
    color: var(--text-white);
    font-weight: 600;
}

/* ============================================
   PRICING SIDEBAR
   ============================================ */

.pricing-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-option {
    background:
        repeating-linear-gradient(
            -45deg,
            rgba(212, 175, 55, 0.05) 0px,
            rgba(212, 175, 55, 0.05) 1px,
            transparent 1px,
            transparent 2px
        ),
        rgba(20, 27, 38, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-option:hover {
    border-color: var(--accent-gold);
    background:
        repeating-linear-gradient(
            -45deg,
            rgba(212, 175, 55, 0.08) 0px,
            rgba(212, 175, 55, 0.08) 1px,
            transparent 1px,
            transparent 2px
        ),
        rgba(20, 27, 38, 0.6);
}

.pricing-option h4 {
    font-size: 13px;
    color: var(--text-white);
    font-weight: 700;
    margin-bottom: 6px;
}

.pricing-option .price {
    font-size: 20px;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-option .btn-book {
    width: 100%;
    padding: 8px;
    font-size: 11px;
}

/* ============================================
   URGENCY BOX
   ============================================ */

.urgency-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08));
    border: 1px solid var(--accent-gold);
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.urgency-icon {
    font-size: 20px;
    display: block;
    margin-bottom: 8px;
}

.urgency-box p {
    font-size: 13px;
    color: var(--accent-gold);
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.hero-gallery {
    position: relative;
    margin-bottom: 50px;
}

.gallery-carousel {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
    background:
        repeating-linear-gradient(
            45deg,
            rgba(212, 175, 55, 0.12) 0px,
            rgba(212, 175, 55, 0.12) 1px,
            transparent 1px,
            transparent 3px
        ),
        linear-gradient(135deg, #1a2a3a 0%, #0f1419 100%);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.gallery-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-prev, .gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.9);
    color: var(--primary-dark);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 20px;
    z-index: 100;
    transition: all 0.3s ease;
    font-weight: bold;
    box-shadow: var(--shadow-md);
}

.gallery-prev:hover, .gallery-next:hover {
    background: var(--accent-platinum);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

/* ============================================
   QUICK INFO CARDS (Below Gallery)
   ============================================ */

/* ============================================
   QUICK INFO (Compact Linear with Dividers)
   ============================================ */

.quick-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0 40px 0;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 10px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 180px;
}

.info-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-label {
    color: var(--accent-orange);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
}

.info-value {
    color: var(--text-white);
    font-size: 14px;
    font-weight: 600;
}

.info-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--border-color), transparent);
    margin: 0 15px;
}

@media (max-width: 1024px) {
    .quick-info {
        flex-direction: column;
        gap: 0;
    }

    .info-item {
        width: 100%;
        min-width: unset;
    }

    .info-divider {
        width: 100%;
        height: 1px;
        margin: 10px 0;
    }
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    margin-bottom: 40px;
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
}

.section:last-child {
    border-bottom: none;
}

#workshop-description,
#what-to-bring,
#testimonials {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    text-transform: capitalize;
    position: relative;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-gold);
    display: inline-block;
    letter-spacing: -1px;
}

.section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 15px;
}

/* ============================================
   INFO CARDS
   ============================================ */

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.info-card {
    background:
        repeating-linear-gradient(
            90deg,
            rgba(212, 175, 55, 0.08) 0px,
            rgba(212, 175, 55, 0.08) 1px,
            transparent 1px,
            transparent 2px
        ),
        rgba(20, 27, 38, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.info-card:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-md);
}

.info-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.info-card h3 {
    color: var(--text-white);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.info-card p {
    font-size: 14px;
    margin: 0;
}

/* ============================================
   BENEFITS LIST
   ============================================ */

.benefits-list {
    list-style: none;
    margin-top: 25px;
}

.benefits-list li {
    color: var(--text-light);
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: bold;
}

.star-mark {
    color: var(--accent-red);
    font-weight: bold;
    margin-right: 4px;
}

/* ============================================
   PHOTOGRAPHER PROFILE
   ============================================ */

.photographer-profile {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: flex-start;
    margin-top: 30px;
}

.photographer-image {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.4);
    box-shadow: var(--shadow-lg);
}

.photographer-image img {
    width: 100%;
    height: auto;
    display: block;
}

.photographer-info h3 {
    color: var(--text-white);
    font-size: 24px;
    margin-bottom: 5px;
}

.photographer-info .title {
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.photographer-info p {
    margin-bottom: 15px;
}

.btn-link {
    display: inline-block;
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 700;
    margin-top: 15px;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
}

.btn-link:hover {
    color: var(--accent-platinum);
    border-bottom-color: var(--accent-gold);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.testimonial-card {
    background:
        repeating-linear-gradient(
            90deg,
            rgba(212, 175, 55, 0.08) 0px,
            rgba(212, 175, 55, 0.08) 1px,
            transparent 1px,
            transparent 2px
        ),
        rgba(20, 27, 38, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 35px;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.08);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.stars {
    color: var(--accent-gold);
    font-size: 16px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 13px;
    margin: 0;
}

/* ============================================
   INSTAGRAM SECTION
   ============================================ */

.instagram-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.instagram-embed {
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.instagram-embed iframe {
    border-radius: 8px;
    max-width: 100%;
}

@media (max-width: 768px) {
    .instagram-embed iframe {
        height: 700px !important;
    }
}

@media (max-width: 480px) {
    .instagram-embed iframe {
        height: 450px !important;
    }
}

/* ============================================
   VALUE PROPOSITION
   ============================================ */

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.value-card {
    background:
        repeating-linear-gradient(
            -45deg,
            rgba(212, 175, 55, 0.08) 0px,
            rgba(212, 175, 55, 0.08) 1px,
            transparent 1px,
            transparent 2px
        ),
        rgba(20, 27, 38, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.value-card:hover {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.08);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    font-size: 36px;
    margin-bottom: 10px;
    display: inline-block;
}

.value-card h3 {
    color: var(--text-white);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.value-card p {
    color: var(--text-light);
    font-size: 12px;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   ITINERARY (Collapsible)
   ============================================ */

.itinerary-days {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.day {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 0;
    border-radius: 0;
    overflow: visible;
    transition: all 0.3s ease;
    position: relative;
    padding: 0;
    box-shadow: none;
}

.day:last-child {
    border-bottom: none;
}

.day:hover {
    border-bottom-color: rgba(212, 175, 55, 0.4);
}

.day-toggle {
    width: 100%;
    padding: 20px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.day-toggle:hover {
    background: transparent;
}

.day-header {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.day-number {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-platinum));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 60px;
    font-family: 'Poppins', sans-serif;
}

.day-toggle h3 {
    color: var(--text-white);
    font-size: 20px;
    margin: 0;
    text-align: left;
    flex: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.day:hover .day-toggle h3 {
    color: var(--accent-orange);
}

.toggle-icon {
    color: var(--text-light);
    font-size: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 20px;
    flex-shrink: 0;
    font-weight: 300;
}

.day.active .toggle-icon {
    transform: rotate(180deg);
    color: var(--accent-red);
}

.day-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    opacity: 0;
}

.day.active .day-content {
    max-height: 800px;
    padding: 0 0 30px 100px;
    opacity: 1;
}

.day-activity {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 18px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    border-left: none;
    transition: all 0.3s ease;
}

.day-activity:last-child {
    margin-bottom: 0;
}

.day-activity:hover {
    background: transparent;
    transform: none;
}

.activity-time {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: capitalize;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.activity-details {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    margin-top: 4px;
}

.activity-details:hover {
    color: var(--text-white);
}

/* ============================================
   GETTING READY
   ============================================ */

.getting-ready-content {
    margin-top: 30px;
}

.getting-ready-content h3 {
    color: var(--text-white);
    font-size: 18px;
    margin-bottom: 20px;
}

/* ============================================
   HOW TO REACH
   ============================================ */

.reach-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.reach-card {
    background: rgba(20, 27, 38, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 30px;
    border-radius: 8px;
    border-top: 3px solid var(--accent-gold);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.reach-card:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-md);
}

.reach-card h3 {
    color: var(--text-white);
    font-size: 16px;
    margin-bottom: 15px;
}

.reach-card p {
    font-size: 14px;
    margin-bottom: 10px;
}

/* ============================================
   PRICING URGENCY
   ============================================ */

.pricing-urgency {
    background: linear-gradient(135deg, rgba(235, 85, 100, 0.1), rgba(238, 121, 97, 0.05));
    border: 1px solid var(--accent-red);
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.urgency-badge {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-platinum));
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.pricing-urgency p {
    margin: 0;
    color: var(--text-light);
    font-size: 14px;
}

/* ============================================
   PRICING TABLE
   ============================================ */

/* ============================================
   PRICING CARDS (Industry Standard 2-Column)
   ============================================ */

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 25px 0 35px 0;
}

.pricing-card {
    position: relative;
    background:
        repeating-linear-gradient(
            45deg,
            rgba(212, 175, 55, 0.07) 0px,
            rgba(212, 175, 55, 0.07) 1px,
            transparent 1px,
            transparent 2px
        ),
        rgba(20, 27, 38, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.08);
    box-shadow: var(--shadow-md);
}

.pricing-card.premium-tier {
    border: 2px solid var(--accent-gold);
    background: rgba(212, 175, 55, 0.12);
}

.pricing-card.premium-tier:hover {
    box-shadow: var(--shadow-lg);
    background: rgba(212, 175, 55, 0.15);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-platinum));
    color: var(--primary-dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
}

.card-title {
    color: var(--text-white);
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.price-display {
    display: flex;
    align-items: baseline;
    margin: 6px 0 1px 0;
}

.currency {
    color: var(--accent-orange);
    font-size: 14px;
    font-weight: 700;
    margin-right: 1px;
}

.price-amount {
    color: var(--accent-red);
    font-size: 32px;
    font-weight: 800;
}

.price-note {
    color: var(--text-light);
    font-size: 11px;
    margin-bottom: 12px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 12px 0;
    flex: 1;
    border-top: 1px solid rgba(235, 85, 100, 0.1);
    border-bottom: 1px solid rgba(235, 85, 100, 0.1);
    padding-top: 10px;
    padding-bottom: 10px;
}

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

.features-list li:last-child {
    margin-bottom: 0;
}

.early-bird-offer {
    background: transparent;
    color: var(--accent-orange);
    padding: 8px 0;
    font-size: 11px;
    margin-bottom: 12px;
    text-align: center;
}

/* Buttons */
.btn-book {
    width: 100%;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-top: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-platinum));
    color: var(--primary-dark);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.booking-notice {
    font-size: 12px;
    color: var(--accent-gold);
    text-align: center;
    margin-top: 15px;
    line-height: 1.6;
    font-weight: 500;
}

.btn-secondary {
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   CANCELLATION POLICY (Simple Text)
   ============================================ */

.cancellation-policy-section {
    margin: 35px 0 40px 0;
}

.policy-title {
    color: var(--text-white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.policy-text {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.8;
}

/* ============================================
   BOOKING OPTIONS
   ============================================ */

.booking-options {
    margin-bottom: 40px;
}

.booking-intro {
    color: var(--text-white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.booking-methods {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
}

.booking-method {
    background: rgba(20, 27, 38, 0.6);
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.booking-method.whatsapp-method {
    border-color: #25d366;
}

.booking-method.whatsapp-method:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: #25d366;
    transform: translateY(-4px);
}

.booking-method.form-method {
    border-color: var(--accent-red);
    cursor: default;
}

.booking-method.form-method:hover {
    background: rgba(20, 27, 38, 0.8);
}

.method-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.method-content h4 {
    color: var(--text-white);
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 4px 0;
}

.method-content p {
    color: var(--text-light);
    font-size: 12px;
    margin: 0;
}

.booking-divider {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

@media (max-width: 768px) {
    .booking-methods {
        grid-template-columns: 1fr;
    }

    .booking-divider {
        display: none;
    }
}

/* ============================================
   BOOKING FORM
   ============================================ */

.booking-form-wrapper {
    background:
        repeating-linear-gradient(
            90deg,
            rgba(212, 175, 55, 0.06) 0px,
            rgba(212, 175, 55, 0.06) 1px,
            transparent 1px,
            transparent 2px
        ),
        rgba(20, 27, 38, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 40px;
    border-radius: 8px;
    margin-top: 40px;
    box-shadow: var(--shadow-sm);
}

.booking-form-wrapper h3 {
    color: var(--text-white);
    font-size: 20px;
    margin-bottom: 30px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    background: rgba(15, 20, 25, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-white);
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(195, 195, 195, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    background: rgba(235, 85, 100, 0.05);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-platinum));
    color: var(--primary-dark);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 20px;
    box-shadow: var(--shadow-md);
}

.btn-submit:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.policy-content {
    margin-top: 30px;
}

/* ============================================
   INCLUSIONS & EXCLUSIONS
   ============================================ */

.inclusions-exclusions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.included-card,
.excluded-card {
    background: rgba(20, 27, 38, 0.6);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 4px;
}

.included-card {
    border-left: 4px solid #4caf50;
}

.excluded-card {
    border-left: 4px solid var(--accent-red);
}

.included-card h3,
.excluded-card h3 {
    color: var(--text-white);
    font-size: 18px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .inclusions-exclusions-grid {
        grid-template-columns: 1fr;
    }

    .pricing-comparison {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .pricing-middle {
        padding: 20px;
    }

    .option-title {
        font-size: 16px;
    }

    .amount {
        font-size: 24px;
    }

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

    .timeline-day {
        padding-left: 30px;
    }

    .day-marker {
        left: -15px;
        width: 50px;
        height: 50px;
    }

    .day-number {
        font-size: 9px;
    }

    .day-title {
        font-size: 10px;
    }

    .itinerary-timeline::before {
        left: 10px;
    }

    .activity-time {
        font-size: 14px !important;
    }

    .activity-details {
        font-size: 12px !important;
    }

    .day.active .day-content {
        padding: 0 0 25px 50px !important;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-container {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.faq-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding-left: 20px;
    padding-right: 20px;
}

.faq-item:hover {
    border-bottom-color: rgba(212, 175, 55, 0.5);
}

.faq-toggle {
    width: 100%;
    padding: 20px 25px;
    background: rgba(20, 27, 38, 0.6);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    text-align: left;
}

.faq-toggle:hover {
    background: rgba(20, 27, 38, 0.8);
}

.faq-toggle h3 {
    color: var(--text-white);
    font-size: 16px;
    margin: 0;
    font-weight: 700;
    flex: 1;
}

.faq-toggle span {
    color: var(--accent-gold);
    font-size: 20px;
    font-weight: bold;
    margin-left: 15px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle span {
    transform: rotate(45deg);
    color: var(--accent-platinum);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
    background: rgba(235, 85, 100, 0.05);
}

.faq-item.active .faq-content {
    max-height: 500px;
    padding: 20px 25px;
}

.faq-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.8;
}

/* ============================================
   CONTACT
   ============================================ */

.contact-info {
    margin-top: 30px;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 15px;
}

.contact-info a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    color: var(--accent-platinum);
    border-bottom: 2px solid var(--accent-gold);
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
    z-index: 500;
    color: white;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1400px) {
    .main-wrapper {
        max-width: 75%;
    }
}

@media (max-width: 1024px) {
    .main-wrapper {
        max-width: 85%;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sidebar-sticky {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        position: static;
    }

    .photographer-profile {
        grid-template-columns: 1fr;
    }

    .pricing-cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 15px;
    }

    .nav-container {
        padding: 0 5px;
    }

    .logo {
        font-size: 16px;
    }

    .hamburger {
        display: none !important;
    }

    .main-wrapper {
        max-width: none;
        width: 100%;
        padding: 8px 6px;
        margin: 0;
        gap: 10px;
    }

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

    .reach-options {
        grid-template-columns: 1fr;
    }

    .info-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gallery-carousel {
        height: 350px;
    }

    .section {
        padding: 20px 0;
        margin-bottom: 30px;
    }

    .section h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .photographer-profile {
        display: block;
    }

    .photographer-image {
        margin-bottom: 20px;
        width: 100%;
    }

    .hero-product-section {
        gap: 15px;
        padding: 0;
    }

    .pricing-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .details-row-section {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 10px 0;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background:
        repeating-linear-gradient(
            90deg,
            rgba(212, 175, 55, 0.06) 0px,
            rgba(212, 175, 55, 0.06) 1px,
            transparent 1px,
            transparent 2px
        ),
        rgba(20, 27, 38, 0.6);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding: 30px 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 4px;
}

.footer-link:hover {
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
}

@media (max-width: 480px) {
    .hamburger {
        display: none !important;
    }

    .main-wrapper {
        max-width: 100%;
        width: 100%;
        padding: 15px 10px;
        margin: 0;
        gap: 20px;
    }

    .footer-content {
        gap: 15px;
    }

    .footer-link {
        font-size: 12px;
        padding: 5px 6px;
    }

    .section {
        padding: 20px 0;
        margin-bottom: 30px;
    }

    .section h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .activity-time {
        font-size: 12px !important;
    }

    .activity-details {
        font-size: 11px !important;
    }

    .day.active .day-content {
        padding: 0 0 15px 15px !important;
    }

    .info-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gallery-carousel {
        height: 250px;
    }

    .booking-form-wrapper {
        padding: 20px;
    }

    .hero-product-section {
        gap: 15px;
        padding: 0;
    }

    .pricing-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-inclusions,
    .pricing-selector {
        padding: 0;
    }

    .details-row-section {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 10px 0;
    }

    .detail-box {
        padding: 12px;
    }

    .value-card {
        padding: 10px;
        gap: 6px;
    }

    .value-card h3 {
        font-size: 13px;
    }

    .value-card p {
        font-size: 11px;
    }

    .testimonial-card {
        padding: 15px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}
