/*
Theme Name: Bintang Tour
Theme URI: https://bintangtour.id
Description: Custom Premium theme for Bintang Tour, travel agency from Jogja to Pekalongan. Fully integrated with Tripay payment gateway, advanced SEO, and mobile-friendly layouts.
Author: buatwebsaja.com
Author URI: https://buatwebsaja.com
Text Domain: bintangtour
*/

/* ==========================================================================
   Design Tokens & Variables
   ========================================================================== */
:root {
    --primary: #0b1e36;        /* Deep Javanese Batik Navy */
    --primary-dark: #061222;   /* Royal Navy */
    --primary-light: #f3f4f6;  /* Soft grey-blue */
    --secondary: #d4af37;      /* Javanese Gold / Bronze */
    --secondary-dark: #b5942b; /* Antique Gold */
    --accent: #c29738;         /* Golden accents */
    --danger: #ef4444;         /* Red */
    --bg-main: #f8f6f0;        /* Soft Heritage Cream/Parchment background */
    --bg-card: #ffffff;        /* White card */
    --text-dark: #111827;      /* Dark Slate */
    --text-muted: #6b7280;     /* Muted Grey */
    --text-light: #ffffff;     /* White text */
    --border-color: #e5e7eb;   /* Light grey border */
    --font-sans: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    --shadow-premium: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1200px;
}

/* ==========================================================================
   CSS Reset
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    outline: none;
}

ul {
    list-style: none;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-dark);
    margin-bottom: 0.5em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(2, 132, 199, 0.3);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.3);
}

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

.btn-outline:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.section-padding {
    padding: 5rem 0;
}

.section-title {
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.25rem;
    position: relative;
    padding-bottom: 0.75rem;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='8' viewBox='0 0 16 8'%3E%3Cpath d='M0 0l4 4-4 4h4l4-4-4-4H0zm8 0l4 4-4 4h4l4-4-4-4H8z' fill='%23d4af37'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
}

/* ==========================================================================
   Header & Navbar Styling
   ========================================================================== */
.site-header {
    background-color: var(--bg-card);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
}

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

.site-logo a {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-logo span {
    color: var(--secondary);
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 0.25rem 0;
}

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

.nav-link:hover::after,
.nav-menu li.current-menu-item .nav-link::after {
    width: 100%;
}

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

.nav-hotline {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-hotline:hover {
    background-color: var(--primary);
    color: var(--text-light);
}

/* Mobile Menu Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.75rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    background: linear-gradient(135deg, #091a2e 0%, #102e52 100%);
    color: var(--text-light);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.18) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M30 0l30 30-30 30L0 30z' stroke='rgba(212,175,55,0.06)' fill='none' stroke-width='1.25'/%3E%3Ccircle cx='30' cy='30' r='5' fill='none' stroke='rgba(212,175,55,0.09)' stroke-width='0.75'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--text-light);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-content h1 span {
    color: var(--secondary);
}

.hero-content p {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ==========================================================================
   Booking Widget Section (The Core Feature)
   ========================================================================== */
.booking-section {
    margin-top: 1.5rem;
    position: relative;
    z-index: 10;
}

.booking-widget-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.booking-widget-header {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 1.5rem 2rem;
    color: var(--text-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-widget-header h3 {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 1.25rem;
}

.step-indicator {
    font-size: 0.875rem;
    background-color: rgba(255,255,255,0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
}

.booking-form {
    padding: 2.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    background-color: var(--bg-main);
    color: var(--text-dark);
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.1);
}

/* Payment Channel Selector */
.payment-channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.payment-method-item {
    position: relative;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem 0.75rem 2.2rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    background-color: #ffffff;
    min-height: 45px;
}

.payment-method-item:hover {
    border-color: var(--primary);
    background-color: var(--primary-light);
}

.payment-method-item input[type="radio"] {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    accent-color: var(--primary);
}

.payment-method-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.payment-method-item.selected {
    border-color: var(--primary);
    background-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.booking-summary-box {
    background-color: var(--bg-main);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
    border: 1px dashed var(--border-color);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.summary-row:last-child {
    margin-bottom: 0;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
    font-weight: 700;
    font-size: 1.15rem;
}

/* Submit Section loading state */
.submit-btn-wrapper {
    display: flex;
    justify-content: flex-end;
}

.btn-submit {
    min-width: 200px;
}

.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 1.75rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   Schedules Section
   ========================================================================== */
.schedule-section {
    background-color: var(--bg-card);
}

.schedule-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.schedule-card {
    background-color: var(--bg-main);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.schedule-card h3 {
    color: var(--primary);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.schedule-list li {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.schedule-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.schedule-time {
    font-weight: 700;
    color: var(--text-dark);
}

.schedule-desc {
    color: var(--text-muted);
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing-wrapper {
    max-width: var(--container-width, 1200px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.price-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    padding: 2.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.price-card.popular {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-premium);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: var(--secondary);
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 2.5rem;
    transform: rotate(45deg);
}

.price-header h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin: 1.5rem 0;
}

.price-amount span {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.price-features {
    text-align: left;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.price-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
}

/* ==========================================================================
   FAQ Section (Accordion)
   ========================================================================== */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-header {
    padding: 1.25rem 1.5rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.faq-icon {
    font-size: 1.25rem;
    transition: var(--transition);
    color: var(--primary);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: rgba(248, 250, 252, 0.5);
}

.faq-content {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   Blog Section
   ========================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.blog-thumb {
    height: 200px;
    overflow: hidden;
}

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

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

.blog-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.blog-info h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-info h3 a:hover {
    color: var(--primary);
}

.blog-excerpt {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.blog-more {
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.9rem;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    text-align: center;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M30 0l30 30-30 30L0 30z' stroke='rgba(255,255,255,0.05)' fill='none' stroke-width='1'/%3E%3Ccircle cx='30' cy='30' r='5' fill='none' stroke='rgba(255,255,255,0.07)' stroke-width='0.75'/%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-content h2 {
    color: var(--text-light);
    font-size: 2.25rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cta-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.site-footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 4rem 0 2rem 0;
    border-top: 1px solid #1e293b;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-widget h4 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-widget p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
}

.footer-links a:hover {
    color: var(--text-light);
    padding-left: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

/* ==========================================================================
   Mobile Sticky Footer Nav
   ========================================================================== */
.mobile-sticky-footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-card);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 99;
    border-top: 1px solid var(--border-color);
}

.mobile-footer-nav {
    display: flex;
    justify-content: space-around;
    padding: 0.5rem 0;
}

.mobile-footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 500;
}

.mobile-footer-item svg {
    width: 24px;
    height: 24px;
    margin-bottom: 0.25rem;
    color: var(--text-muted);
}

.mobile-footer-item:hover,
.mobile-footer-item.active {
    color: var(--primary);
}

.mobile-footer-item:hover svg,
.mobile-footer-item.active svg {
    color: var(--primary);
}

/* ==========================================================================
   Booking Status Page / Invoice Receipt
   ========================================================================== */
.status-container {
    max-width: 750px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.status-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.status-header {
    padding: 2.5rem;
    text-align: center;
    color: var(--text-light);
    position: relative;
}

.status-header.unpaid {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
}

.status-header.paid {
    background: linear-gradient(135deg, var(--accent) 0%, #059669 100%);
}

.status-header.expired {
    background: linear-gradient(135deg, var(--text-muted) 0%, #475569 100%);
}

.status-header h2 {
    color: var(--text-light);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    background-color: rgba(255,255,255,0.25);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

.status-body {
    padding: 2.5rem;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.info-item {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.info-value {
    font-weight: 600;
    color: var(--text-dark);
}

.payment-details-box {
    background-color: var(--bg-main);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px dashed var(--border-color);
    margin-bottom: 2rem;
    text-align: center;
}

.payment-instructions-title {
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: left;
}

.instructions-list {
    text-align: left;
    list-style: decimal;
    padding-left: 1.25rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.instructions-list li {
    margin-bottom: 0.5rem;
}

.qr-code-img {
    max-width: 250px;
    margin: 1.5rem auto;
    border: 4px solid white;
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   Responsive Design Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
    .pricing-wrapper {
        gap: 1.5rem;
    }
    .price-card.popular {
        transform: none;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .section-padding {
        padding: 3.5rem 0;
    }
    
    .navbar-container {
        position: relative;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: -1.5rem;
        right: -1.5rem;
        background-color: var(--bg-card);
        padding: 1.5rem;
        box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
        border-top: 1px solid var(--border-color);
        gap: 1rem;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .booking-section {
        margin-top: -2rem;
    }
    
    .booking-form {
        padding: 1.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .mobile-sticky-footer {
        display: block;
    }
    
    body {
        padding-bottom: 60px; /* offset for sticky mobile bar */
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ==========================================================================
   Homepage Compact & High-Density Styles
   ========================================================================== */
.home .section-padding {
    padding: 2rem 0;
}

.home .hero-section {
    padding: 3.5rem 0;
}

.home .section-title {
    margin-bottom: 1.75rem;
}

.home .features-grid {
    gap: 1.25rem;
}

.home .feature-card {
    padding: 1.5rem;
}

.home .blog-grid {
    gap: 1.25rem;
}

.home .cta-section {
    padding: 3rem 0;
}

.home .hero-grid {
    gap: 2rem;
}

