/*
Theme Name: Meetra Theme Basic
Theme URI: https://meetraspace.id
Author: MEETRA meetraspace.id
Author URI: https://meetraspace.id
Description: Tema resmi MEETRA — Platform Booking Meeting Room & Dining Service Surakarta
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: meetra
Tags: woocommerce, booking, custom-menu, featured-images, responsive-layout
*/

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 15px;
    color: #333;
    background: #fff;
    line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
    --green:       #2D7A3A;
    --green-dark:  #1f5628;
    --green-light: #E0F5E5;
    --navy:        #1a2e4a;
    --navy-light:  #253d5f;
    --orange:      #D4622A;
    --orange-light:#FFE8D6;
    --gold:        #C8962A;
    --white:       #ffffff;
    --gray-50:     #f8f9fa;
    --gray-100:    #f0f0f0;
    --gray-200:    #e0e0e0;
    --gray-400:    #999;
    --gray-600:    #666;
    --gray-800:    #333;
    --radius-sm:   6px;
    --radius-md:   10px;
    --radius-lg:   16px;
    --shadow-sm:   0 1px 4px rgba(0,0,0,.08);
    --shadow-md:   0 4px 16px rgba(0,0,0,.10);
    --shadow-lg:   0 8px 32px rgba(0,0,0,.14);
    --transition:  all .2s ease;
    --container:   1160px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.25; color: var(--gray-800); }
h1 { font-size: clamp(28px, 4vw, 44px); }
h2 { font-size: clamp(22px, 3vw, 32px); }
h3 { font-size: clamp(18px, 2.5vw, 22px); }
h4 { font-size: 16px; }
p  { color: var(--gray-600); line-height: 1.75; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header p { margin-top: 10px; font-size: 16px; color: var(--gray-600); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 28px; border-radius: var(--radius-sm);
    font-size: 14px; font-weight: 600; letter-spacing: .02em;
    border: 2px solid transparent; transition: var(--transition);
    white-space: nowrap;
}
.btn-primary   { background: var(--green); color: #fff; border-color: var(--green); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); }
.btn-secondary { background: transparent; color: var(--green); border-color: var(--green); }
.btn-secondary:hover { background: var(--green); color: #fff; }
.btn-navy      { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-light); }
.btn-white     { background: #fff; color: var(--green); border-color: #fff; }
.btn-white:hover { background: var(--green-light); }
.btn-gold      { background: var(--gold); color: #fff; border-color: var(--gold); font-weight: 700; letter-spacing: .06em; }
.btn-gold:hover { background: #a87820; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-sm  { padding: 8px 18px; font-size: 13px; }
.btn-lg  { padding: 16px 36px; font-size: 16px; }
.btn-block { width: 100%; }

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
#meetra-header {
    position: sticky; top: 0; z-index: 1000;
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 70px; gap: 24px;
}
.header-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-logo img { height: 48px; width: auto; }
.header-logo .logo-text { font-size: 20px; font-weight: 800; color: var(--navy); letter-spacing: -.02em; }
.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a {
    padding: 8px 14px; border-radius: var(--radius-sm);
    font-size: 14px; font-weight: 500; color: var(--gray-800);
    transition: var(--transition);
}
.header-nav a:hover, .header-nav a.active { color: var(--green); background: var(--green-light); }
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.cart-icon {
    position: relative; display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: var(--radius-sm);
    color: var(--gray-800); font-size: 20px; transition: var(--transition);
    border: 1px solid var(--gray-200);
}
.cart-icon:hover { color: var(--green); border-color: var(--green); }
.cart-count {
    position: absolute; top: -6px; right: -6px;
    background: var(--orange); color: #fff;
    font-size: 10px; font-weight: 700;
    width: 18px; height: 18px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.mobile-menu-btn {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; padding: 6px;
}
.mobile-menu-btn span { display: block; width: 24px; height: 2px; background: var(--gray-800); border-radius: 2px; transition: var(--transition); }
.mobile-nav { display: none; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    background: var(--green);
    padding: 64px 0 0;
    position: relative; overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(255,255,255,.06) 0%, transparent 70%);
    pointer-events: none;
}
.hero-content { text-align: center; position: relative; z-index: 1; }
.hero-title {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800; color: #fff;
    margin-bottom: 14px; line-height: 1.15;
}
.hero-sub { font-size: 17px; color: rgba(255,255,255,.85); margin-bottom: 28px; }
.hero-tabs { display: flex; justify-content: center; gap: 0; margin-bottom: 32px; }
.hero-tab {
    padding: 10px 32px; font-size: 14px; font-weight: 700;
    letter-spacing: .06em; border: 2px solid rgba(255,255,255,.5);
    background: transparent; color: rgba(255,255,255,.75);
    transition: var(--transition); cursor: pointer;
}
.hero-tab:first-child { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.hero-tab:last-child  { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; border-left: none; }
.hero-tab.active { background: #fff; color: var(--green); border-color: #fff; }

/* SEARCH BOX */
.search-box {
    background: #fff; border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 32px 32px 40px; margin-top: 8px;
    box-shadow: var(--shadow-lg);
}
.search-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-bottom: 20px; }
.search-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 20px; }
.search-field label {
    display: block; font-size: 11px; font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase; color: var(--green); margin-bottom: 8px;
}
.search-field input, .search-field select {
    width: 100%; padding: 10px 0; font-size: 15px; color: var(--gray-800);
    border: none; border-bottom: 1.5px solid var(--gray-200);
    background: transparent; outline: none; transition: var(--transition);
}
.search-field input:focus, .search-field select:focus { border-bottom-color: var(--green); }
.search-range-label {
    display: flex; justify-content: space-between;
    font-size: 11px; font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase; color: var(--green); margin-bottom: 8px;
}
.search-range-values { display: flex; justify-content: space-between; font-size: 13px; color: var(--gray-600); margin-top: 6px; }
input[type="range"] {
    width: 100%; height: 4px; border-radius: 2px;
    background: var(--gray-200); outline: none; cursor: pointer;
    accent-color: var(--green);
}
.fasilitas-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.chip {
    padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 500;
    border: 1.5px solid var(--gray-200); color: var(--gray-600);
    cursor: pointer; transition: var(--transition); background: #fff;
}
.chip:hover, .chip.active { border-color: var(--green); color: var(--green); background: var(--green-light); }
.search-submit { margin-top: 24px; }

/* ============================================================
   WHY MEETRA SECTION
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
    background: #fff; border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200); padding: 32px 24px;
    text-align: center; transition: var(--transition);
}
.why-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-icon {
    width: 64px; height: 64px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; margin: 0 auto 18px;
}
.why-card h3 { font-size: 17px; margin-bottom: 10px; color: var(--navy); }
.why-card p  { font-size: 14px; color: var(--gray-600); line-height: 1.7; }

/* ============================================================
   VENUE GRID
   ============================================================ */
.venue-section { background: var(--gray-50); }
.venue-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 36px; }
.venue-card {
    background: #fff; border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200); overflow: hidden;
    transition: var(--transition); box-shadow: var(--shadow-sm);
}
.venue-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.venue-img {
    height: 200px; background: var(--gray-100);
    position: relative; overflow: hidden;
}
.venue-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.venue-card:hover .venue-img img { transform: scale(1.05); }
.venue-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 40px; color: rgba(255,255,255,.8);
}
.venue-type-badge {
    position: absolute; top: 12px; left: 12px;
    padding: 4px 12px; border-radius: 20px;
    font-size: 12px; font-weight: 600;
}
.badge-mr      { background: var(--green-light); color: var(--green); }
.badge-dining  { background: var(--orange-light); color: var(--orange); }
.badge-combo   { background: #e8eef5; color: var(--navy); }
.venue-body { padding: 20px; }
.venue-name { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.venue-location { font-size: 13px; color: var(--gray-400); margin-bottom: 14px; display: flex; align-items: center; gap: 4px; }
.venue-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 14px; border-top: 1px solid var(--gray-100);
}
.venue-price { font-size: 15px; font-weight: 700; color: var(--green); }
.venue-price span { font-size: 12px; font-weight: 400; color: var(--gray-400); }
.venue-center { text-align: center; }

/* ============================================================
   HOW TO BOOK
   ============================================================ */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.step-item { padding: 20px; }
.step-number {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--green); color: #fff;
    font-size: 20px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}
.step-item h4 { font-size: 15px; color: var(--navy); margin-bottom: 8px; }
.step-item p  { font-size: 13px; color: var(--gray-600); line-height: 1.7; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
    background: #fff; border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200); padding: 28px 24px;
    transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--green-light); box-shadow: var(--shadow-md); }
.stars { color: #f5a623; font-size: 18px; margin-bottom: 14px; }
.testimonial-text { font-size: 14px; color: var(--gray-600); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--navy); color: #fff;
    font-size: 14px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.author-name  { font-size: 14px; font-weight: 700; color: var(--navy); }
.author-role  { font-size: 12px; color: var(--gray-400); }

/* ============================================================
   CTA JOIN
   ============================================================ */
.cta-join { background: var(--navy); padding: 72px 0; text-align: center; }
.cta-join h2 { color: var(--gold); margin-bottom: 12px; }
.cta-join p  { color: rgba(255,255,255,.75); font-size: 16px; margin-bottom: 32px; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
#meetra-footer { background: #111827; color: rgba(255,255,255,.75); padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo-text { color: #fff; font-size: 22px; font-weight: 800; margin-bottom: 12px; display: block; }
.footer-brand p { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,.6); margin-bottom: 18px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 36px; height: 36px; border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.6);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; transition: var(--transition);
}
.footer-social a:hover { border-color: var(--green); color: var(--green); }
.footer-col h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.6); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--green); }
.footer-col p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.8; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 24px; text-align: center;
    font-size: 13px; color: rgba(255,255,255,.4);
}

/* ============================================================
   SINGLE PRODUCT (VENUE DETAIL)
   ============================================================ */
.product-hero { background: var(--gray-50); padding: 40px 0; border-bottom: 1px solid var(--gray-200); }
.product-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.product-gallery { border-radius: var(--radius-lg); overflow: hidden; }
.product-gallery-main { height: 360px; background: var(--gray-100); }
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-sidebar {
    background: #fff; border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200); padding: 28px;
    position: sticky; top: 90px;
}
.product-type-badge { margin-bottom: 12px; }
.product-title { font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.product-location { font-size: 14px; color: var(--gray-400); margin-bottom: 20px; }
.product-price-big { font-size: 26px; font-weight: 800; color: var(--green); margin-bottom: 20px; }
.product-price-big span { font-size: 14px; font-weight: 400; color: var(--gray-400); }
.product-capacity { display: flex; align-items: center; gap: 6px; font-size: 14px; color: var(--gray-600); margin-bottom: 20px; }
.booking-form-box { border-top: 1px solid var(--gray-100); padding-top: 20px; }
.booking-form-box label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--green); margin-bottom: 6px; }
.booking-form-box input, .booking-form-box select {
    width: 100%; padding: 10px 12px; border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm); font-size: 14px; margin-bottom: 14px;
    outline: none; transition: var(--transition);
}
.booking-form-box input:focus, .booking-form-box select:focus { border-color: var(--green); }
.booking-total { background: var(--green-light); border-radius: var(--radius-sm); padding: 14px; margin-bottom: 16px; }
.booking-total-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--gray-600); }
.booking-total-row.total { font-weight: 700; color: var(--green); font-size: 16px; margin-top: 8px; padding-top: 8px; border-top: 1px solid rgba(45,122,58,.2); }
.product-desc-section { padding: 40px 0; }
.product-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--gray-200); margin-bottom: 28px; }
.product-tab {
    padding: 12px 24px; font-size: 14px; font-weight: 600;
    color: var(--gray-400); cursor: pointer; border-bottom: 3px solid transparent;
    margin-bottom: -2px; transition: var(--transition);
}
.product-tab.active { color: var(--green); border-bottom-color: var(--green); }
.facilities-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.facility-tag {
    padding: 6px 16px; border-radius: 20px;
    background: var(--green-light); color: var(--green);
    font-size: 13px; font-weight: 500;
}

/* ============================================================
   CALENDAR
   ============================================================ */
.calendar-box { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--gray-200); padding: 24px; }
.calendar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.calendar-nav { background: none; border: 1px solid var(--gray-200); width: 32px; height: 32px; border-radius: var(--radius-sm); font-size: 16px; transition: var(--transition); }
.calendar-nav:hover { background: var(--green-light); border-color: var(--green); color: var(--green); }
.calendar-title { font-size: 15px; font-weight: 700; color: var(--navy); }
.calendar-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; text-align: center; }
.calendar-day-name { font-size: 11px; font-weight: 700; color: var(--gray-400); padding: 6px 0; text-transform: uppercase; }
.calendar-day {
    padding: 8px 4px; border-radius: var(--radius-sm); font-size: 13px;
    cursor: pointer; transition: var(--transition);
}
.calendar-day:hover { background: var(--green-light); color: var(--green); }
.calendar-day.today { background: var(--green); color: #fff; font-weight: 700; }
.calendar-day.available { color: var(--gray-800); }
.calendar-day.booked { background: #fee; color: #c00; cursor: not-allowed; text-decoration: line-through; }
.calendar-day.selected { background: var(--navy); color: #fff; }
.calendar-day.empty { cursor: default; }
.calendar-legend { display: flex; gap: 16px; margin-top: 16px; font-size: 12px; }
.calendar-legend-item { display: flex; align-items: center; gap: 6px; }
.calendar-legend-dot { width: 12px; height: 12px; border-radius: 3px; }

/* ============================================================
   WOOCOMMERCE OVERRIDES
   ============================================================ */
.woocommerce-cart .wc-block-cart,
.woocommerce-checkout .wc-block-checkout { max-width: var(--container); margin: 0 auto; padding: 40px 24px; }
.wc-block-components-product-badge { background: var(--green-light); color: var(--green); }
.wc-block-components-button { background: var(--green); border: none; border-radius: var(--radius-sm); }
.wc-block-components-button:hover { background: var(--green-dark); }
.wp-block-woocommerce-checkout-order-summary-block { border-radius: var(--radius-lg); }

/* ============================================================
   ARCHIVE PRODUCTS
   ============================================================ */
.archive-header { background: var(--navy); padding: 48px 0; text-align: center; }
.archive-header h1 { color: #fff; }
.archive-header p { color: rgba(255,255,255,.7); margin-top: 8px; }
.filter-sidebar { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--gray-200); padding: 24px; position: sticky; top: 90px; }
.filter-sidebar h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.filter-group { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--gray-100); }
.filter-group:last-child { border-bottom: none; margin-bottom: 0; }
.filter-group label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--green); margin-bottom: 10px; }
.filter-group input, .filter-group select { width: 100%; padding: 9px 12px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); font-size: 14px; outline: none; transition: var(--transition); }
.filter-group input:focus, .filter-group select:focus { border-color: var(--green); }
.archive-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; padding: 48px 0; }
.archive-results { }
.results-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.results-count { font-size: 14px; color: var(--gray-600); }
.results-sort select { padding: 8px 12px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); font-size: 14px; outline: none; }
.archive-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

/* ============================================================
   CART & CHECKOUT PAGES
   ============================================================ */
.page-cart, .page-checkout { padding: 48px 0; }
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; padding: 12px 16px; border-bottom: 2px solid var(--gray-200); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-400); }
.cart-table td { padding: 16px; border-bottom: 1px solid var(--gray-100); vertical-align: middle; }
.cart-summary { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--gray-200); padding: 24px; position: sticky; top: 90px; }
.cart-summary h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.cart-summary-row { display: flex; justify-content: space-between; font-size: 14px; padding: 8px 0; border-bottom: 1px solid var(--gray-100); }
.cart-summary-row.total { font-weight: 700; font-size: 16px; color: var(--navy); border-bottom: none; padding-top: 12px; }

/* ============================================================
   MY ACCOUNT
   ============================================================ */
.account-layout { display: grid; grid-template-columns: 240px 1fr; gap: 32px; padding: 48px 0; }
.account-sidebar { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--gray-200); padding: 24px; }
.account-nav a { display: block; padding: 10px 14px; border-radius: var(--radius-sm); font-size: 14px; color: var(--gray-800); transition: var(--transition); margin-bottom: 4px; }
.account-nav a:hover, .account-nav a.active { background: var(--green-light); color: var(--green); font-weight: 600; }
.account-content { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--gray-200); padding: 32px; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center  { text-align: center; }
.text-green   { color: var(--green); }
.text-navy    { color: var(--navy); }
.text-orange  { color: var(--orange); }
.text-muted   { color: var(--gray-400); }
.bg-gray      { background: var(--gray-50); }
.bg-navy      { background: var(--navy); }
.bg-green     { background: var(--green); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.hidden { display: none !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .venue-grid, .why-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .product-layout { grid-template-columns: 1fr; }
    .archive-layout { grid-template-columns: 1fr; }
    .filter-sidebar { position: static; }
    .cart-layout { grid-template-columns: 1fr; }
    .account-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .header-nav, .header-actions .btn { display: none; }
    .mobile-menu-btn { display: flex; }
    .mobile-nav { display: block; background: #fff; border-top: 1px solid var(--gray-200); padding: 16px; }
    .mobile-nav a { display: block; padding: 12px 16px; font-size: 15px; border-radius: var(--radius-sm); }
    .mobile-nav a:hover { background: var(--green-light); color: var(--green); }
    .venue-grid, .why-grid, .testimonial-grid, .steps-grid { grid-template-columns: 1fr; }
    .archive-grid { grid-template-columns: 1fr; }
    .search-row, .search-row-2 { grid-template-columns: 1fr; }
    .search-box { padding: 20px 16px 28px; border-radius: var(--radius-md) var(--radius-md) 0 0; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; align-items: center; }
}
