/* ═══════════════════════════════════
   Cold Air 4 GC — Main Stylesheet
   Professional HVAC site — blue palette
   ═══════════════════════════════════ */

/* ── CSS Variables ── */
:root {
    --blue-900: #0a1628;
    --blue-800: #0f2440;
    --blue-700: #163660;
    --blue-600: #1d4e89;
    --blue-500: #2563a8;
    --blue-400: #3b82c4;
    --blue-300: #60a5e0;
    --blue-200: #93c5f7;
    --blue-100: #dbeafe;
    --blue-50:  #eff6ff;

    --navy:     #0a1628;
    --primary:  #1d4e89;
    --primary-dark: #163660;
    --primary-light: #3b82c4;
    --accent:   #f59e0b;
    --accent-dark: #d97706;

    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50:  #f9fafb;

    --white:    #ffffff;
    --success:  #059669;
    --warning:  #d97706;
    --danger:   #dc2626;
    --info:     #2563eb;

    --font-heading: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
    --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: 0.2s ease;
    --max-width: 1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
p { margin-bottom: 1rem; }

/* ── Utility ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--gray-500); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.hidden { display: none !important; }

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 28px; font-family: var(--font-heading); font-size: 0.95rem; font-weight: 600;
    border: none; border-radius: var(--radius-sm); cursor: pointer;
    transition: all var(--transition); text-decoration: none; line-height: 1;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-accent { background: var(--accent); color: var(--navy); }
.btn-accent:hover { background: var(--accent-dark); color: var(--white); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { background: var(--blue-50); color: var(--primary-dark); }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.btn-danger { background: var(--danger); color: var(--white); }
.btn-danger:hover { background: #b91c1c; color: var(--white); }
.btn-success { background: var(--success); color: var(--white); }
.btn-success:hover { background: #047857; color: var(--white); }
.btn-block { display: flex; width: 100%; }

/* ── Top Promo Bar ── */
.promo-bar {
    background: var(--navy);
    color: var(--blue-200);
    text-align: center;
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 500;
}
.promo-bar a { color: var(--accent); font-weight: 700; }
.promo-bar a:hover { color: var(--accent-dark); }

/* ── Header / Nav ── */
.site-header {
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
    position: sticky; top: 0; z-index: 1000;
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: var(--max-width); margin: 0 auto; padding: 0 24px; height: 72px;
}
.header-logo img { height: 48px; width: auto; }
.header-nav { display: flex; align-items: center; gap: 2px; }
.header-nav a, .nav-dropdown > .nav-link {
    padding: 8px 14px; font-size: 0.85rem; font-weight: 600; color: var(--gray-600);
    border-radius: var(--radius-sm); transition: all var(--transition); white-space: nowrap;
    letter-spacing: 0.01em; text-decoration: none;
}
.header-nav a:hover, .header-nav a.active,
.nav-dropdown:hover > .nav-link { background: var(--blue-50); color: var(--primary); }

.nav-dropdown { position: relative; }
.nav-dropdown .dropdown-menu {
    position: absolute; top: 100%; left: 0; min-width: 220px;
    background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
    padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: all 0.2s ease; z-index: 100; border: 1px solid var(--gray-100);
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
    display: block; padding: 10px 16px; font-size: 0.85rem; font-weight: 500;
    color: var(--gray-700); border-radius: var(--radius-sm);
}
.dropdown-menu a:hover { background: var(--blue-50); color: var(--primary); }
.dropdown-menu a i { width: 20px; margin-right: 6px; opacity: 0.7; }

.header-cta { display: flex; align-items: center; gap: 12px; margin-left: 8px; padding-left: 20px; border-left: 1px solid var(--gray-200); }
.header-phone { font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem; color: var(--primary); text-decoration: none; white-space: nowrap; }
.header-phone i { margin-right: 4px; font-size: 0.85rem; }
.header-phone:hover { color: var(--primary-dark); }

/* Mobile Nav */
.mobile-toggle {
    display: none; background: none; border: none; cursor: pointer;
    width: 36px; height: 36px; position: relative;
}
.mobile-toggle span {
    display: block; width: 24px; height: 2px; background: var(--gray-700);
    position: absolute; left: 6px; transition: all 0.3s ease;
}
.mobile-toggle span:nth-child(1) { top: 10px; }
.mobile-toggle span:nth-child(2) { top: 17px; }
.mobile-toggle span:nth-child(3) { top: 24px; }
.mobile-toggle.open span:nth-child(1) { transform: rotate(45deg); top: 17px; }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg); top: 17px; }

.mobile-nav {
    display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--white); z-index: 999; padding: 24px; overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
    display: block; padding: 14px 16px; font-size: 1rem; font-weight: 600;
    color: var(--gray-700); border-bottom: 1px solid var(--gray-100);
}
.mobile-nav a:hover { color: var(--primary); background: var(--blue-50); }
.mobile-nav .btn { margin-top: 16px; }

@media (max-width: 960px) {
    .header-nav, .header-cta .btn { display: none; }
    .mobile-toggle { display: block; }
}

/* ── Hero Section ── */
.hero {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue-700) 100%);
    background-size: cover; background-position: center;
    color: var(--white); padding: 100px 0 120px; text-align: center;
}
.hero::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(10,25,60,0.75) 0%, rgba(15,40,80,0.65) 100%);
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); margin-bottom: 20px; color: var(--white); }
.hero p { font-size: 1.2rem; color: var(--blue-200); margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Section Styles ── */
.section { padding: 80px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-gray { background: var(--gray-50); }
.section-blue { background: var(--blue-600); color: var(--white); }
.section-blue h2 { color: var(--white); }
.section-label {
    display: inline-block; font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px; color: var(--primary);
    margin-bottom: 12px;
}
.section-dark .section-label { color: var(--accent); }
.section-title { margin-bottom: 16px; }
.section-subtitle { color: var(--gray-500); font-size: 1.1rem; max-width: 600px; margin: 0 auto 48px; }
.section-dark .section-subtitle { color: var(--blue-300); }

/* ── Service Cards ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.service-card {
    background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px;
    box-shadow: var(--shadow-md); transition: all 0.3s ease; text-align: center;
    border: 1px solid var(--gray-100);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: var(--blue-200); }
.service-card .icon {
    width: 64px; height: 64px; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; margin: 0 auto 20px;
    background: var(--blue-50); color: var(--primary); font-size: 1.5rem;
}
.service-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.service-card p { color: var(--gray-600); font-size: 0.925rem; margin-bottom: 20px; }

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card {
    background: var(--white); border-radius: var(--radius-lg); padding: 32px;
    box-shadow: var(--shadow-md); border: 1px solid var(--gray-100);
}
.testimonial-card .star-rating { color: var(--accent); font-size: 1.2rem; display: block; margin-bottom: 16px; }
.testimonial-card blockquote { font-style: italic; color: var(--gray-700); margin-bottom: 16px; font-size: 0.95rem; line-height: 1.7; }
.testimonial-card .author { font-weight: 700; color: var(--navy); font-size: 0.9rem; }
.testimonial-card .source { color: var(--gray-400); font-size: 0.8rem; }

/* ── Contact CTA Block ── */
.contact-cta-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.contact-cta-card {
    text-align: center; padding: 40px 24px; border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.08); backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.1);
}
.contact-cta-card .icon { font-size: 2rem; margin-bottom: 16px; color: var(--accent); }
.contact-cta-card h3 { color: var(--white); margin-bottom: 8px; }
.contact-cta-card p { color: var(--blue-200); margin-bottom: 20px; font-size: 0.925rem; }

/* ── Service Areas ── */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
.area-tag {
    padding: 12px 20px; background: var(--blue-50); border-radius: var(--radius-sm);
    font-weight: 600; color: var(--primary); text-align: center; font-size: 0.9rem;
    transition: all var(--transition); border: 1px solid var(--blue-100);
}
.area-tag:hover { background: var(--primary); color: var(--white); }

/* ── Trust Badges ── */
.trust-strip {
    display: flex; align-items: center; justify-content: center; gap: 40px;
    padding: 40px 0; flex-wrap: wrap;
}
.trust-strip img { height: 48px; width: auto; opacity: 0.7; transition: opacity var(--transition); filter: grayscale(0.3); }
.trust-strip img:hover { opacity: 1; filter: grayscale(0); }
.trust-badge {
    display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px;
    background: var(--blue-50); border-radius: var(--radius-sm);
    font-size: 0.8rem; font-weight: 600; color: var(--primary);
    border: 1px solid var(--blue-100);
}

/* ── Footer ── */
.site-footer {
    background: var(--navy); color: var(--blue-300); padding: 60px 0 0;
}
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
    padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 50px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.footer-brand .phone-link { font-size: 1.2rem; font-weight: 700; color: var(--white); }
.footer-brand .email-link { color: var(--blue-300); font-size: 0.9rem; }
.footer-col h4 { color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; }
.footer-col a { display: block; color: var(--blue-300); padding: 4px 0; font-size: 0.9rem; transition: all var(--transition); }
.footer-col a:hover { color: var(--white); padding-left: 4px; }
.footer-hours { font-size: 0.85rem; line-height: 1.8; }
.footer-hours strong { color: var(--white); }
.footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding: 24px 0; font-size: 0.8rem; color: var(--gray-500); flex-wrap: wrap; gap: 12px;
}
.footer-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; background: rgba(255,255,255,0.08); color: var(--blue-300); font-size: 0.9rem;
    transition: all var(--transition);
}
.footer-social a:hover { background: var(--primary); color: var(--white); }

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* ── Forms ── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 0.875rem; color: var(--gray-700); margin-bottom: 6px; }
/* ── form-control class (used outside .form-group wrappers) ── */
.form-control {
    width: 100%; padding: 10px 12px; font-size: 0.95rem; font-family: var(--font-body);
    border: 1px solid var(--gray-200); border-radius: var(--radius-sm); background: var(--white);
    transition: all var(--transition); color: var(--gray-800); box-sizing: border-box;
}
.form-control:focus {
    outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(29,78,137,0.1);
}
textarea.form-control { resize: vertical; min-height: 80px; }

.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; font-size: 0.95rem; font-family: var(--font-body);
    border: 2px solid var(--gray-200); border-radius: var(--radius-sm); background: var(--white);
    transition: all var(--transition); color: var(--gray-800);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(29,78,137,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-error { color: var(--danger); font-size: 0.8rem; margin-top: 4px; }
.form-card {
    background: var(--white); border-radius: var(--radius-lg); padding: 40px;
    box-shadow: var(--shadow-lg); border: 1px solid var(--gray-100); max-width: 500px; margin: 0 auto;
}

/* ── Alerts / Flash ── */
.alert {
    padding: 14px 20px; border-radius: var(--radius-sm); margin-bottom: 20px;
    font-size: 0.9rem; font-weight: 500; display: flex; align-items: center;
    justify-content: flex-start; gap: 10px; flex-wrap: wrap;
}
.alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.alert-warning { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }
.alert-info { background: var(--blue-50); color: var(--primary-dark); border: 1px solid var(--blue-200); }
.alert-close { margin-left: auto; background: none; border: none; cursor: pointer; font-size: 1.2rem; padding: 0 4px; color: inherit; opacity: 0.5; }
.alert-close:hover { opacity: 1; }

/* ── Page Header (inner pages) ── */
.page-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue-700) 100%);
    padding: 60px 0; text-align: center; color: var(--white);
}
.page-header h1 { color: var(--white); margin-bottom: 10px; }
.page-header p { color: var(--blue-200); font-size: 1.1rem; }
.breadcrumb { font-size: 0.85rem; color: var(--blue-300); margin-bottom: 10px; }
.breadcrumb a { color: var(--blue-300); }
.breadcrumb a:hover { color: var(--white); }

/* ── Blog ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; }
.blog-card {
    background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-md); transition: all 0.3s ease; border: 1px solid var(--gray-100);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.blog-card-img { height: 200px; background: var(--blue-100); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-card-body .category { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--primary); margin-bottom: 8px; }
.blog-card-body h3 { margin-bottom: 10px; font-size: 1.15rem; }
.blog-card-body h3 a { color: var(--navy); }
.blog-card-body h3 a:hover { color: var(--primary); }
.blog-card-body .excerpt { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 16px; }
.blog-card-body .meta { font-size: 0.8rem; color: var(--gray-400); }
.blog-post-content { max-width: 780px; margin: 0 auto; font-size: 1.05rem; line-height: 1.85; }
.blog-post-content h2 { margin: 40px 0 16px; }
.blog-post-content h3 { margin: 32px 0 12px; }
.blog-post-content p { margin-bottom: 20px; }
.blog-sidebar { }
.blog-sidebar .widget { background: var(--gray-50); border-radius: var(--radius-md); padding: 24px; margin-bottom: 24px; }
.blog-sidebar .widget h4 { font-size: 0.95rem; margin-bottom: 16px; }
.blog-sidebar .widget a { display: block; padding: 8px 0; font-size: 0.9rem; color: var(--gray-700); border-bottom: 1px solid var(--gray-200); }
.blog-sidebar .widget a:last-child { border-bottom: none; }
.blog-sidebar .widget a:hover { color: var(--primary); }

/* ── Pagination ── */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 40px; }
.page-link {
    padding: 8px 14px; border-radius: var(--radius-sm); font-size: 0.875rem; font-weight: 600;
    color: var(--gray-600); background: var(--gray-100); transition: all var(--transition);
}
.page-link:hover, .page-link.active { background: var(--primary); color: var(--white); }

/* ── Gallery ── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }
.gallery-item {
    border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3;
    cursor: pointer; position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.gallery-item:hover img { transform: scale(1.05); }

/* ── Coupon Cards ── */
.coupon-card {
    background: linear-gradient(135deg, var(--blue-50) 0%, var(--white) 100%);
    border: 2px dashed var(--primary); border-radius: var(--radius-lg); padding: 28px;
    text-align: center; position: relative; overflow: hidden;
}
.coupon-card::before {
    content: ''; position: absolute; top: -20px; right: -20px; width: 80px; height: 80px;
    background: var(--accent); border-radius: 50%; opacity: 0.1;
}
.coupon-card .discount { font-size: 2rem; font-weight: 800; color: var(--primary); font-family: var(--font-heading); }
.coupon-card .code { display: inline-block; background: var(--navy); color: var(--accent); padding: 8px 20px; border-radius: var(--radius-sm); font-weight: 700; letter-spacing: 2px; margin: 12px 0; font-size: 1.1rem; }
.coupon-card .terms { font-size: 0.8rem; color: var(--gray-500); }

/* ── Membership Card ── */
.membership-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue-700) 100%);
    border-radius: var(--radius-xl); padding: 48px; color: var(--white); text-align: center;
    max-width: 600px; margin: 0 auto; box-shadow: var(--shadow-xl);
}
.membership-card .price { font-size: 3rem; font-weight: 800; }
.membership-card .price span { font-size: 1rem; font-weight: 400; color: var(--blue-300); }
.membership-card .benefits-list { text-align: left; margin: 32px 0; }
.membership-card .benefits-list li {
    padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.95rem; color: var(--blue-100); display: flex; align-items: center; gap: 12px;
    list-style: none;
}
.membership-card .benefits-list li::before { content: '✓'; color: var(--accent); font-weight: 700; font-size: 1.1rem; }

/* ── Status Badges ── */
.badge {
    display: inline-flex; align-items: center; padding: 4px 12px; border-radius: 999px;
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.badge-success { background: #ecfdf5; color: #065f46; }
.badge-warning { background: #fffbeb; color: #92400e; }
.badge-danger { background: #fef2f2; color: #991b1b; }
.badge-info { background: var(--blue-50); color: var(--primary); }
.badge-gray { background: var(--gray-100); color: var(--gray-600); }

/* ── Star Rating ── */
.star-rating { color: var(--accent); font-size: 1.1rem; letter-spacing: 2px; }

/* ── Map Container ── */
.map-container { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.map-container iframe { width: 100%; height: 400px; border: none; display: block; }

/* ── Booking Steps ── */
.booking-steps { display: flex; justify-content: center; gap: 8px; margin-bottom: 40px; }
.booking-step {
    display: flex; align-items: center; gap: 8px; padding: 10px 20px;
    background: var(--gray-100); border-radius: 999px; font-size: 0.85rem; font-weight: 600; color: var(--gray-500);
}
.booking-step.active { background: var(--primary); color: var(--white); }
.booking-step.completed { background: var(--success); color: var(--white); }
.booking-step .step-num { width: 24px; height: 24px; border-radius: 50%; background: rgba(0,0,0,0.1); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; }

@media (max-width: 600px) {
    .booking-steps { flex-direction: column; align-items: stretch; }
}

/* ── Tables ── */
.table-wrap { overflow-x: auto; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
table { width: 100%; border-collapse: collapse; }
th { background: var(--gray-50); padding: 12px 16px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray-500); text-align: left; border-bottom: 2px solid var(--gray-200); }
td { padding: 14px 16px; border-bottom: 1px solid var(--gray-100); font-size: 0.9rem; }
tr:hover td { background: var(--gray-50); }

/* ── Chat Widget ── */
.chat-bubble {
    position: fixed; bottom: 24px; right: 24px; z-index: 9999;
    width: 60px; height: 60px; border-radius: 50%; background: var(--primary);
    color: var(--white); display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; cursor: pointer; box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
}
.chat-bubble:hover { background: var(--primary-dark); transform: scale(1.08); }
.chat-window {
    position: fixed; bottom: 96px; right: 24px; z-index: 9998;
    width: 380px; height: 480px; background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl); display: none; flex-direction: column; overflow: hidden;
    border: 1px solid var(--gray-200);
}
.chat-window.open { display: flex; }
.chat-header {
    background: var(--primary); color: var(--white); padding: 16px 20px;
    display: flex; align-items: center; justify-content: space-between;
}
.chat-header h4 { font-size: 0.95rem; color: var(--white); }
.chat-messages { flex: 1; overflow-y: auto; padding: 16px; min-height: 0; }
.chat-msg { margin-bottom: 12px; display: flex; flex-direction: column; }
.chat-msg.incoming .msg-bubble { background: var(--gray-100); color: var(--gray-800); border-radius: 4px 16px 16px 16px; align-self: flex-start; }
.chat-msg.outgoing .msg-bubble { background: var(--primary); color: var(--white); border-radius: 16px 4px 16px 16px; align-self: flex-end; }
.msg-bubble { padding: 10px 16px; max-width: 85%; font-size: 0.9rem; line-height: 1.5; }
.chat-input { display: flex; border-top: 1px solid var(--gray-200); }
.chat-input input { flex: 1; padding: 14px 16px; border: none; font-size: 0.9rem; font-family: var(--font-body); }
.chat-input input:focus { outline: none; }
.chat-input button { padding: 14px 20px; background: var(--primary); color: var(--white); border: none; cursor: pointer; font-weight: 600; }
.chat-input button:hover { background: var(--primary-dark); }

@media (max-width: 480px) {
    .chat-window { right: 0; left: 0; bottom: 0; width: 100%; max-height: 100vh; border-radius: 0; }
    .chat-bubble { bottom: 16px; right: 16px; }
}

/* ── Loading Spinner ── */
.spinner { display: inline-block; width: 20px; height: 20px; border: 2px solid var(--gray-300); border-top-color: var(--primary); border-radius: 50%; animation: spin 0.6s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Print ── */
@media print {
    .site-header, .promo-bar, .site-footer, .chat-bubble, .chat-window, .btn { display: none !important; }
    body { font-size: 12pt; }
}

/* ── reCAPTCHA badge hidden per Google policy (attribution text shown inline) ── */
.grecaptcha-badge { visibility: hidden !important; }
