/* Venue Page Layout Specific Styles */

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    background-color: darkolivegreen;
}

/* Content container - not affecting navbar */
.content-max {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom right, #0f172a, #365314, #0f172a);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 1024px) {
    .hero-content {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.hero-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 56rem;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

@media (min-width: 640px) {
    .hero-container {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}

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

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: white;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

/* Navbar color is unified globally in site.css; no venue-specific override needed */

@media (max-width: 480px) {
    .hero-title { font-size: 1.9rem; }
    .hero-subtitle { font-size: 1rem; line-height: 1.6rem; }
}

.hero-subtitle {
    margin-top: 1.5rem;
    font-size: 1.25rem;
    line-height: 2rem;
    color: white;
    opacity: 0.9;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 26px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 28px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 160px;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(107,142,35,.25);
}

.hero-btn.primary {
    background-color: white;
    color: #556B2F;
}

.hero-btn.primary:hover {
    background-color: #f8f9fa;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(255,255,255,.35);
}

.hero-btn.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.hero-btn.secondary:hover {
    background-color: white;
    color: #556B2F;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 255, 255, 0.35);
}

.hero-btn i {
    font-size: 1.1rem;
}

@media (max-width: 640px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-buttons { gap: 0.75rem; }
    .hero-btn { padding: 12px 20px; min-width: 0; }
}

/* Payment Process Section */
.payment-process-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 5rem 0;
}

.section-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #556B2F;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.step-icon {
    font-size: 2.5rem;
    color: #556B2F;
    margin: 1rem 0;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.step-description {
    color: #64748b;
    line-height: 1.6;
}

.payment-methods {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.payment-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.payment-method:hover {
    background-color: #f1f5f9;
}

.payment-method i {
    font-size: 2rem;
    color: #556B2F;
}

.payment-method span {
    font-weight: 600;
    color: #1e293b;
}

/* Venue Bundles Section */
.bundles-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding-top: 6rem;
    padding-bottom: 6rem;
    position: relative;
}

.bundles-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

@media (min-width: 640px) {
    .bundles-section {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}

.bundles-container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 1024px) {
    .bundles-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.bundles-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 72rem;
}

.bundles-header {
    text-align: center;
    margin-bottom: 4rem;
}

.bundles-title {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #111827;
}

@media (min-width: 640px) {
    .bundles-title {
        font-size: 2.25rem;
    }
}

.bundles-subtitle {
    margin-top: 1rem;
    font-size: 1.125rem;
    color: #4b5563;
}

.bundles-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

@media (min-width: 768px) {
    .bundles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .bundles-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.bundle-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08), 0 4px 10px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.8);
}

.bundle-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15), 0 10px 20px rgba(0,0,0,0.1);
    border-color: rgba(85, 107, 47, 0.2);
}

.bundle-image {
    height: 12rem;
    position: relative;
}

.elegant-gradient {
    background: linear-gradient(to bottom right, #365314, #1c2e05);
}

.corporate-gradient {
    background: linear-gradient(to bottom right, #4d7c0f, #365314);
}

.casual-gradient {
    background: linear-gradient(to bottom right, #65a30d, #4d7c0f);
}

.bundle-icon-container {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bundle-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: white;
    opacity: 0.8;
}

.bundle-content {
    padding: 25px;
}

.bundle-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #2C3E50;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bundle-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.bundle-price-container {
    margin-bottom: 20px;
}

.bundle-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6b8e23;
}

.bundle-price-suffix {
    color: #6b7280;
}

/* Pax badge below price */
.bundle-pax-badge {
    display: inline-block;
    background: #eef2ff;
    color: #374151;
    border: 1px solid #dbeafe;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}

.bundle-features {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 20px;
}

.bundle-feature {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.bundle-feature-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #6b8e23;
    border-radius: 50%;
    margin-right: 8px;
}

.bundle-button {
    width: 100%;
    background: darkolivegreen;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bundle-button:hover {
    background: #556B2F;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(85, 107, 47, 0.3);
}

/* Featured Venues Section */
.featured-section {
    background-color: #f9fafb;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

@media (min-width: 640px) {
    .featured-section {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}

.featured-container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 1024px) {
    .featured-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.featured-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 72rem;
}

.featured-header {
    text-align: center;
    margin-bottom: 4rem;
}

.featured-title {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #111827;
}

@media (min-width: 640px) {
    .featured-title {
        font-size: 2.25rem;
    }
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

@media (min-width: 768px) {
    .featured-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Venue Card */
.venue-card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s;
}

.venue-card:hover {
    transform: translateY(-0.25rem);
}

.venue-image {
    width: 100%;
    height: 16rem;
    object-fit: cover;
}

.venue-content {
    padding: 1.5rem;
}

.venue-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.venue-description {
    color: #6b7280;
    margin-bottom: 1rem;
}

.venue-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.venue-tag {
    background-color: #f3f4f6;
    color: #374151;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
}

.venue-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #4d7c0f;
}

/* Gallery Section */
.gallery-section {
    background: white;
    padding: 80px 0;
    color: #333;
}

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

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.gallery-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Panorama Viewer Styles */
.panorama-navigation {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.nav-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.nav-btn.active {
    background: linear-gradient(135deg, #556b2f 0%, #3c4f1f 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(85, 107, 47, 0.3);
}

/* Function Hall Sub-navigation Styles */
.function-hall-subnav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    padding: 15px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.function-hall-nav-btn {
    padding: 8px 16px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.2);
}

.function-hall-nav-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.function-hall-nav-btn.active {
    background: linear-gradient(135deg, #556b2f 0%, #3c4f1f 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(85, 107, 47, 0.3);
}

/* Bedroom Sub-navigation Styles */
.bedroom-subnav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    padding: 15px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.bedroom-nav-btn {
    padding: 8px 16px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.2);
}

.bedroom-nav-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.bedroom-nav-btn.active {
    background: linear-gradient(135deg, #556b2f 0%, #3c4f1f 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(85, 107, 47, 0.3);
}

/* Bahay Kubo Sub-navigation Styles */
.bahaykubo-subnav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    padding: 15px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.bahaykubo-nav-btn {
    padding: 8px 16px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(168, 179, 255, 0.3);
}

.bahaykubo-nav-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(168, 179, 255, 0.4);
}

.bahaykubo-nav-btn.active {
    background: linear-gradient(135deg, #556b2f 0%, #3c4f1f 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(85, 107, 47, 0.3);
}

/* Balcony Sub-navigation Styles */
.balcony-subnav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    padding: 15px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.balcony-nav-btn {
    padding: 8px 16px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.2);
}

.balcony-nav-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.balcony-nav-btn.active {
    background: linear-gradient(135deg, #556b2f 0%, #3c4f1f 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(85, 107, 47, 0.3);
}

/* Dining Sub-navigation Styles */
.dining-subnav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    padding: 15px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.dining-nav-btn {
    padding: 8px 16px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.2);
}

.dining-nav-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.dining-nav-btn.active {
    background: linear-gradient(135deg, #556b2f 0%, #3c4f1f 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(85, 107, 47, 0.3);
}

/* Garden Grounds Sub-navigation Styles */
.garden-subnav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    padding: 15px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

@media (max-width: 768px) {
    .panorama-navigation { justify-content: flex-start; overflow-x: auto; gap: 10px; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
    .function-hall-subnav,
    .bedroom-subnav,
    .bahaykubo-subnav,
    .balcony-subnav,
    .dining-subnav,
    .garden-subnav { justify-content: flex-start; overflow-x: auto; gap: 8px; -webkit-overflow-scrolling: touch; }
    .nav-btn { padding: 10px 18px; font-size: 14px; }
    .function-hall-nav-btn,
    .bedroom-nav-btn,
    .bahaykubo-nav-btn,
    .balcony-nav-btn,
    .dining-nav-btn,
    .garden-nav-btn { padding: 8px 14px; font-size: 13px; }
}

@media (max-width: 480px) {
    .nav-btn { padding: 8px 14px; font-size: 13px; }
}

.garden-nav-btn {
    padding: 8px 16px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.2);
}

.garden-nav-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.garden-nav-btn.active {
    background: linear-gradient(135deg, #556b2f 0%, #3c4f1f 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(85, 107, 47, 0.3);
}

.panorama-container {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    background: #000;
    margin-top: 40px;
}

.panorama-viewer {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    display: none;
}

.panorama-viewer.active {
    display: block;
}

.panorama-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.panorama-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.panorama-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.panorama-info {
    margin-left: 10px;
}

.panorama-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .panorama-container {
        height: 320px;
        border-radius: 15px;
    }
    
    .panorama-controls {
        bottom: 15px;
        padding: 10px 15px;
        gap: 10px;
    }
    
    .panorama-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .panorama-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .panorama-container { height: 260px; }
}

@media (max-width: 380px) {
    .panorama-container { height: 220px; }
}

/* CTA Section */
.cta-section {
    background-color: #65a30d;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (min-width: 640px) {
    .cta-section {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.cta-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 80rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 1024px) {
    .cta-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

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

.cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: white;
}

@media (min-width: 640px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

.cta-subtitle {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    line-height: 2rem;
    color: white;
    opacity: 0.9;
}

.cta-buttons {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

@media (max-width: 640px) {
    .cta-buttons { flex-direction: column; }
    .cta-button-primary, .cta-button-secondary { width: 100%; max-width: 320px; text-align: center; }
}

.cta-button-primary {
    border-radius: 0.375rem;
    background-color: white;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #65a30d;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
    transition: background-color 0.2s;
    text-decoration: none;
}

.cta-button-primary:hover {
    background-color: #f9fafb;
}

.cta-button-secondary {
    border-radius: 0.375rem;
    border: 1px solid white;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    transition: background-color 0.2s, color 0.2s;
    text-decoration: none;
}

.cta-button-secondary:hover {
    background-color: white;
    color: #65a30d;
}

/* Booking Modal Styles */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #e5e7eb;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 20px 20px 0 0;
}

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

.modal-icon {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.2));
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
}

.close-modal {
    background: none;
    border: none;
    font-size: 2rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.close-modal:hover {
    background: #f3f4f6;
    color: #374151;
}

.modal-body {
    padding: 30px;
}

.package-summary {
    margin-bottom: 30px;
}

.package-summary h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 10px 0;
}

.package-summary p {
    color: #6b7280;
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.package-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 25px;
}

.package-price span:first-child {
    font-size: 2rem;
    font-weight: 700;
    color: #10b981;
}

.price-suffix {
    color: #6b7280;
    font-size: 1rem;
}

.package-features h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 15px 0;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: #4b5563;
    line-height: 1.5;
}

.feature-check {
    color: #10b981;
    font-weight: 600;
    flex-shrink: 0;
}

.payment-section {
    border-top: 1px solid #e5e7eb;
    padding-top: 30px;
}

.payment-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 20px 0;
}

.qr-payment {
    display: flex;
    gap: 25px;
    align-items: center;
    padding: 25px;
    background: linear-gradient(135deg, #f9fafb, #f3f4f6);
    border-radius: 20px;
    margin-bottom: 25px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.qr-payment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20px 20px, rgba(16, 185, 129, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.qr-code-container {
    flex-shrink: 0;
}

.qr-code-wrapper {
    position: relative;
    display: inline-block;
}

.qr-code {
    width: 140px;
    height: 140px;
    border: 3px solid #e5e7eb;
    border-radius: 15px;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.qr-code:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.qr-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.qr-logo {
    font-size: 20px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.payment-info p {
    margin: 0 0 8px 0;
    color: #374151;
}

.payment-info p:first-child {
    font-weight: 600;
    font-size: 1.1rem;
}

.payment-note {
    color: #6b7280 !important;
    font-size: 0.9rem;
    font-style: italic;
}

.payment-actions {
    display: flex;
    justify-content: center;
}

.confirm-payment-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 15px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
}

.confirm-payment-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.confirm-payment-btn:hover::before {
    left: 100%;
}

.confirm-payment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.confirm-payment-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.confirm-payment-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.confirm-payment-btn:disabled::before {
    display: none;
}

@media (max-width: 768px) {
    .modal-content {
        margin: 10px;
        max-width: none;
    }
    
    .modal-header,
    .modal-body {
        padding: 20px;
    }
    
    .qr-payment {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .package-price span:first-child {
        font-size: 1.5rem;
    }
}

/* Booking Section - Modern UI */
.booking-section {
    border-top: 1px solid #e5e7eb;
    padding-top: 24px;
}

.booking-header {
    margin-bottom: 18px;
}

.booking-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.booking-title-icon i {
    color: #10b981;
}

.booking-subtitle {
    margin: 6px 0 0;
    color: #6b7280;
    font-size: 0.95rem;
}

.form-row {
    margin-bottom: 22px;
}

.form-row.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

@media (max-width: 640px) {
    .form-row.grid-2 {
        grid-template-columns: 1fr;
    }
}

.field {
    position: relative;
}

.field input {
    width: 100%;
    border: 1.5px solid #e5e7eb;
    background: #f8fafc;
    border-radius: 12px;
    padding: 22px 68px 20px 18px;
    font-size: 0.95rem;
    color: #1f2937;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field input::-webkit-calendar-picker-indicator {
    filter: hue-rotate(100deg) saturate(1.2);
}

.field label {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.95rem;
    color: #6b7280;
    pointer-events: none;
    transition: 0.15s ease;
    background: white;
    padding: 0 6px;
    border-radius: 6px;
}

.field input:focus {
    border-color: #10b981;
    background: white;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}

.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field input:valid + label {
    top: -9px;
    font-size: 0.75rem;
    color: #10b981;
}

.field-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #10b981;
    opacity: 0.75;
    font-size: 0.95rem;
    pointer-events: none;
}

.booking-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 14px;
}

.booking-actions .confirm-payment-btn {
    width: auto;
    padding: 15px 32px;
}

.booking-hint {
    display: none;
}

@media (max-width: 640px) { .booking-actions { flex-direction: row; align-items: center; justify-content: center; } .booking-card { grid-template-columns: 1fr; } .dashboard-payment { grid-column: 1; margin-top: 12px; } }

/* Bookings Dashboard */
.bookings-dashboard-section {
    border-top: 1px solid #e5e7eb;
    padding: 48px 0;
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
}
.bookings-dashboard-section .section-header { text-align: center; margin-bottom: 24px; }
.bookings-dashboard-section .section-title { font-size: 2rem; font-weight: 700; color: #1f2937; margin-bottom: 8px; }
.bookings-dashboard-section .section-subtitle { color: #6b7280; }

.status-filters { display:flex; gap:10px; flex-wrap:wrap; align-items:center; justify-content:center; padding:12px 14px; background:rgba(255,255,255,0.65); border:1px solid rgba(255,255,255,0.9); border-radius:14px; box-shadow:0 8px 24px rgba(0,0,0,0.06); backdrop-filter:blur(8px); margin:12px 0 10px; }
.filter-pill { display:inline-flex; align-items:center; gap:8px; padding:8px 12px; border-radius:9999px; border:1px solid #e5e7eb; background:#ffffff; color:#374151; cursor:pointer; font-weight:600; transition:all 0.2s ease; box-shadow:0 4px 10px rgba(0,0,0,0.04); }
.filter-pill:hover { border-color:#d1d5db; background:#f9fafb; }
.filter-pill.active { background:#22c55e; color:#ffffff; border-color:#22c55e; box-shadow:0 8px 18px rgba(34,197,94,0.25); }

.bookings-grid { display: flex; flex-wrap: wrap; gap: 20px; align-items: stretch; }

.booking-card { background: #ffffff; border: 1px solid #e5e7eb; border-radius: 16px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06); padding: 18px; transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; display: grid; grid-template-columns: 1.2fr 1fr; gap: 14px; align-items: start; flex: 1 1 520px; position: relative; height: 100%; min-height: 240px; }
.booking-card:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,0,0,0.08); border-color: #d1d5db; }

.booking-card-header { grid-column: 1; display: flex; align-items: flex-start; justify-content: flex-start; margin-bottom: 6px; padding-right: 120px; gap: 10px; }
.booking-card-title { margin: 0; font-size: 1.1rem; font-weight: 600; color: #1f2937; }
.booking-card-subtitle { margin: 0; color: #6b7280; font-size: 0.9rem; }

.status-badge { padding: 6px 10px; border-radius: 50px; font-weight: 600; font-size: 0.8rem; }
/* Place the booking status badge at the card's top-right */
.booking-card .booking-card-header .status-badge {
    position: absolute;
    top: 14px;
    right: 14px;
}
/* Do not affect payment status chips */
.booking-card .payment-status .status-badge {
    position: static !important;
}
.status-badge.pending { background: rgba(245, 158, 11, 0.12); color: #b45309; border: 1px solid rgba(245, 158, 11, 0.35); }
.status-badge.accepted { background: rgba(16, 185, 129, 0.12); color: #047857; border: 1px solid rgba(16, 185, 129, 0.35); }
.status-badge.declined { background: rgba(239, 68, 68, 0.12); color: #b91c1c; border: 1px solid rgba(239, 68, 68, 0.35); }
/* New: Cancelled status styling */
.status-badge.cancelled { background: rgba(107, 114, 128, 0.12); color: #374151; border: 1px solid rgba(107, 114, 128, 0.35); }

.booking-card-body { grid-column: 1; display: grid; gap: 6px; margin-top: 6px; align-content: start; }
.booking-detail { color: #374151; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; }

.dashboard-payment { grid-column: 2; margin-top: 0; align-self: start; }
.dashboard-payment h4 { margin: 0 0 10px 0; font-size: 1rem; color: #1f2937; font-weight: 600; }

.empty-state { display: flex; align-items: center; justify-content: center; gap: 12px; background: linear-gradient(135deg, #f9fafb, #f3f4f6); border: 1px solid #e5e7eb; border-radius: 14px; padding: 18px; color: #6b7280; }
.empty-state .empty-cta { display: inline-block; margin-top: 4px; padding: 8px 14px; border-radius: 9999px; background: linear-gradient(135deg, #10b981, #059669); color: #ffffff; text-decoration: none; font-weight: 600; box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3); transition: transform 0.2s ease; }
.empty-state .empty-cta:hover { transform: translateY(-1px); }

@media (max-width: 640px) { .bookings-dashboard-section { padding: 36px 0; } }

/* Ensure payment panel sits inside booking card visually */
.booking-card .qr-payment {
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 0;
    gap: 16px;
    align-items: start;
    flex-wrap: wrap;
}
.booking-card .qr-payment::before { display: none; }
.booking-card .dashboard-payment h4 { margin-bottom: 8px; }

/* Keep status and refund actions inside the booking card */
.booking-card .refund-actions { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 8px; }
.booking-card .pending-actions { width: 100%; display: flex; align-items: center; justify-content: flex-end; gap: 12px; margin-top: 12px; }
.booking-card .payment-status .status-badge { display: inline-block; }
.booking-card .payment-upload { flex: 1 1 320px; }

/* Make declined/pending cards single-column to avoid large empty space */
.booking-card[data-status="declined"],
.booking-card[data-status="pending"] {
    grid-template-columns: 1fr;
}

/* Ensure elements stay in the first column */
.booking-card[data-status="declined"] .booking-card-header,
.booking-card[data-status="declined"] .booking-card-body,
.booking-card[data-status="declined"] .decline-reason-box,
.booking-card[data-status="pending"] .booking-card-header,
.booking-card[data-status="pending"] .booking-card-body {
    grid-column: 1;
}

/* Hide payment section if it exists on non-accepted cards */
.booking-card[data-status="declined"] .dashboard-payment,
.booking-card[data-status="pending"] .dashboard-payment {
    display: none;
}

/* Tighten spacing for the decline reason on larger screens */
.booking-card[data-status="declined"] .decline-reason-box {
    margin: 8px 0 0 !important;
}

/* Subtle status-specific polish */
.booking-card[data-status="declined"] {
    border-color: #fee2e2;
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.06);
}
.booking-card[data-status="accepted"] {
    border-color: #d1fae5;
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.06);
}
/* New: Cancelled card subtle style */
.booking-card[data-status="cancelled"] {
    border-color: #e5e7eb;
    box-shadow: 0 6px 16px rgba(107, 114, 128, 0.06);
    opacity: 0.9;
}
.booking-card .status-badge {
    letter-spacing: 0.2px;
}
/* Navbar element sizing to match homepage */
.site-header .nav-right-user .inbox-icon { width: 40px; height: 40px; }
.site-header .nav-right-user .identifier-pill { padding: 14px 26px; font-weight: 800; letter-spacing: .5px; font-size: 16px; line-height: 1; }

@media (max-width: 640px) {
    .booking-card .pending-actions {
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 8px;
    }
    .booking-card .pending-actions .confirm-payment-btn {
        width: 100%;
    }
    .booking-card .refund-actions {
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 8px;
    }
    .booking-card .refund-actions .confirm-payment-btn {
        width: 100%;
    }
    .booking-card .payment-upload {
        flex: 1 1 100%;
    }
}