/*
Theme Name: General Auto Repair
Theme URI: https://gar-upgrade-pro.lovable.app
Author: ConnectWeb SD
Author URI: https://connectwebsd.com
Description: A professional WordPress theme for General Auto Repair — a trusted auto repair shop in San Ysidro, CA. Features honest service, warranty-backed repairs, and a full range of automotive maintenance services.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: general-auto-repair
Tags: auto-repair, business, one-page, custom-logo, custom-menu, responsive
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --background: hsl(213 24% 97%);
  --foreground: hsl(214 32% 17%);
  --card: hsl(0 0% 100%);
  --card-foreground: hsl(214 32% 17%);
  --primary-foreground: hsl(45 79% 95%);
  --secondary: hsl(214 26% 95%);
  --secondary-foreground: hsl(214 32% 17%);
  --muted: hsl(210 21% 94%);
  --muted-foreground: hsl(214 14% 49%);
  --border: hsl(213 21% 90%);
  --input: hsl(214 24% 88%);
  --navy: hsl(218 47% 22%);
  --navy-light: hsl(213 42% 30%);
  --navy-dark: hsl(221 52% 16%);
  --gold: hsl(42 65% 51%);
  --gold-light: hsl(44 68% 62%);
  --gold-muted: hsl(43 33% 65%);
  --off-white: hsl(213 24% 97%);
  --warm-gray: hsl(210 9% 96%);
  --radius: 0.625rem;
  --shadow-sm: 0 1px 3px 0 rgba(30,50,84,0.04), 0 1px 2px -1px rgba(30,50,84,0.04);
  --shadow-md: 0 4px 6px -1px rgba(30,50,84,0.06), 0 2px 4px -2px rgba(30,50,84,0.04);
  --shadow-lg: 0 10px 25px -3px rgba(30,50,84,0.08), 0 4px 10px -4px rgba(30,50,84,0.04);
  --shadow-card: 0 1px 3px rgba(30,50,84,0.05), 0 10px 30px -8px rgba(30,50,84,0.06);
  --font-heading: 'DM Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== LAYOUT ===== */
.section-container { max-width: 80rem; margin: 0 auto; }
.section-padding { padding-left: 1rem; padding-right: 1rem; }
@media (min-width: 640px) { .section-padding { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .section-padding { padding-left: 2rem; padding-right: 2rem; } }

/* ===== GRADIENT ===== */
.gradient-navy {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy), var(--navy-light));
}

/* ===== CARD ===== */
.card-premium {
  background: var(--card);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.card-premium:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.75rem 1.5rem; border-radius: 0.5rem;
  font-weight: 600; font-size: 0.875rem;
  background: var(--gold); color: var(--navy-dark);
  transition: all 0.2s; border: none; cursor: pointer;
}
.btn-primary:hover { background: hsl(42 67% 45%); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.75rem 1.5rem; border-radius: 0.5rem;
  font-weight: 600; font-size: 0.875rem;
  border: 2px solid var(--gold); color: var(--gold); background: transparent;
  transition: all 0.2s; cursor: pointer;
}
.btn-secondary:hover { background: rgba(212,162,46,0.1); }

.btn-navy {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.75rem 1.5rem; border-radius: 0.5rem;
  font-weight: 600; font-size: 0.875rem;
  background: var(--navy); color: var(--primary-foreground);
  transition: all 0.2s; border: none; cursor: pointer;
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* ===== TOP BAR ===== */
.top-bar {
  display: none;
}
@media (min-width: 768px) {
  .top-bar {
    display: block;
  }
}
.top-bar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.5rem 0; font-size: 0.875rem;
}
.top-bar-inner svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }
.top-bar-item { display: flex; align-items: center; gap: 0.5rem; color: rgba(253,248,232,0.8); }
.top-bar-right { display: flex; align-items: center; gap: 1.5rem; }
.top-bar-phone { font-weight: 600; color: var(--primary-foreground); transition: color 0.2s; }
.top-bar-phone:hover { color: var(--gold); }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--card); border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}
.header-desktop {
  display: none;
}
@media (min-width: 1024px) {
  .header-desktop {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 7rem;
  }
}
@media (min-width: 1280px) {
  .header-desktop { height: 8rem; }
}
.header-left-nav { display: flex; align-items: center; gap: 0.25rem; justify-content: flex-end; padding-right: 1.5rem; }
@media (min-width: 1280px) { .header-left-nav { padding-right: 2rem; } }
.header-right { display: flex; align-items: center; gap: 0.375rem; justify-content: flex-start; padding-left: 1.5rem; }
@media (min-width: 1280px) { .header-right { padding-left: 2rem; } }
.header-logo { display: flex; align-items: center; justify-content: center; height: 100%; }
.header-logo img { height: 100%; width: auto; object-fit: contain; transform: scale(1.1); }

.nav-link {
  padding: 0.5rem 0.75rem; border-radius: 0.375rem;
  font-size: 0.875rem; font-weight: 500; white-space: nowrap;
  color: var(--muted-foreground); transition: all 0.2s;
}
.nav-link:hover { color: var(--foreground); background: rgba(238,241,245,0.5); }
.nav-link.active { color: var(--navy); background: var(--secondary); font-weight: 600; }

.header-divider { width: 1px; height: 1.5rem; background: var(--border); margin: 0 0.5rem; }
.header-phone { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 600; white-space: nowrap; }
.header-phone svg { width: 16px; height: 16px; color: var(--gold); }
.header-cta { margin-left: 0.5rem; white-space: nowrap; }

/* Mobile header */
.header-mobile { display: flex; align-items: center; justify-content: space-between; height: 5rem; position: relative; }
@media (min-width: 640px) { .header-mobile { height: 6rem; } }
@media (min-width: 1024px) { .header-mobile { display: none; } }
.mobile-menu-btn {
  padding: 0.5rem; border-radius: 0.375rem; background: none; border: none; cursor: pointer;
  transition: background 0.2s; z-index: 10;
}
.mobile-menu-btn:hover { background: var(--secondary); }
.mobile-menu-btn svg { width: 24px; height: 24px; }
.header-mobile .header-logo {
  position: absolute; left: 50%; transform: translateX(-50%); height: 100%;
}

.mobile-nav {
  display: none; padding-bottom: 1rem; border-top: 1px solid var(--border); margin-top: 0.5rem; padding-top: 1rem;
}
.mobile-nav.open { display: block; }
@media (min-width: 1024px) { .mobile-nav { display: none !important; } }
.mobile-nav-link {
  display: block; padding: 0.75rem 1rem; border-radius: 0.375rem;
  font-size: 0.875rem; font-weight: 500; color: var(--muted-foreground); transition: all 0.2s;
}
.mobile-nav-link:hover { color: var(--foreground); background: rgba(238,241,245,0.5); }
.mobile-nav-link.active { color: var(--navy); background: var(--secondary); font-weight: 600; }
.mobile-nav-buttons { margin-top: 1rem; padding: 0 1rem; display: flex; flex-direction: column; gap: 0.75rem; }

/* ===== FOOTER ===== */
.site-footer { color: var(--primary-foreground); }
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-heading {
  font-family: var(--font-heading); font-weight: 600; font-size: 0.875rem;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--gold); margin-bottom: 1rem;
}
.footer-link { display: block; font-size: 0.875rem; color: rgba(253,248,232,0.7); transition: color 0.2s; margin-bottom: 0.5rem; }
.footer-link:hover { color: var(--gold); }
.footer-info-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.footer-info-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 0.125rem; }
.footer-info-item span, .footer-info-item div { font-size: 0.875rem; color: rgba(253,248,232,0.7); }
.footer-bottom {
  border-top: 1px solid rgba(253,248,232,0.1); padding: 1.25rem 0;
  display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 0.75rem;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }
.footer-bottom p { font-size: 0.75rem; color: rgba(253,248,232,0.5); }

/* ===== HERO ===== */
.hero-section { position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(20,34,64,0.95), rgba(30,50,84,0.85), rgba(30,50,84,0.6)); }
.hero-content { position: relative; max-width: 42rem; }
.hero-label { color: var(--gold); font-weight: 600; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; }
.hero-title { font-family: var(--font-heading); font-size: 2.25rem; font-weight: 700; color: var(--primary-foreground); line-height: 1.1; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 3.75rem; } }
.hero-desc { color: rgba(253,248,232,0.8); font-size: 1.125rem; line-height: 1.75; margin-bottom: 2rem; max-width: 36rem; }
@media (min-width: 640px) { .hero-desc { font-size: 1.25rem; } }
.hero-buttons { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .hero-buttons { flex-direction: row; } }
.hero-buttons .btn-primary, .hero-buttons .btn-secondary { font-size: 1rem; padding: 1rem 2rem; }
.hero-buttons .btn-secondary { border-color: rgba(253,248,232,0.3); color: var(--primary-foreground); }
.hero-buttons .btn-secondary:hover { background: rgba(253,248,232,0.1); }

.trust-badges {
  position: relative; border-top: 1px solid rgba(253,248,232,0.1);
  background: rgba(20,34,64,0.6); backdrop-filter: blur(8px);
}
.trust-badges-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem 2rem; padding: 1.25rem 0; }
.trust-badge { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: rgba(253,248,232,0.8); }
.trust-badge svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* ===== CREDENTIAL STRIP ===== */
.credential-strip { background: var(--card); border-bottom: 1px solid var(--border); }
.credential-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
@media (min-width: 768px) { .credential-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .credential-grid { grid-template-columns: repeat(5, 1fr); } }
.credential-item { text-align: center; }
.credential-icon { width: 3rem; height: 3rem; border-radius: 0.75rem; background: var(--secondary); display: flex; align-items: center; justify-content: center; margin: 0 auto 0.75rem; }
.credential-icon svg { width: 20px; height: 20px; color: var(--navy); }
.credential-title { font-family: var(--font-heading); font-weight: 600; font-size: 0.875rem; color: var(--foreground); margin-bottom: 0.25rem; }
.credential-desc { font-size: 0.75rem; color: var(--muted-foreground); line-height: 1.5; }

/* ===== SECTION HEADINGS ===== */
.section-label { color: var(--gold); font-weight: 600; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.section-title { font-family: var(--font-heading); font-size: 1.875rem; font-weight: 700; color: var(--foreground); margin-bottom: 1rem; }
@media (min-width: 640px) { .section-title { font-size: 2.25rem; } }
.section-desc { color: var(--muted-foreground); max-width: 42rem; margin: 0 auto; }

/* ===== SERVICES GRID ===== */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
.service-card { overflow: hidden; }
.service-card-image { aspect-ratio: 4/3; overflow: hidden; }
.service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.service-card:hover .service-card-image img { transform: scale(1.05); }
.service-card-content { padding: 1rem; text-align: center; }
.service-card-content h3 { font-family: var(--font-heading); font-weight: 600; color: var(--foreground); margin-bottom: 0.25rem; font-size: 0.9375rem; }
.service-card-content p { font-size: 0.875rem; color: var(--muted-foreground); }

/* ===== WHY CHOOSE US ===== */
.why-grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .why-grid { grid-template-columns: 1fr 1fr; align-items: center; } }
.why-item { display: flex; gap: 1rem; margin-bottom: 1.25rem; }
.why-item svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 0.125rem; }
.why-item h4 { font-family: var(--font-heading); font-weight: 600; color: var(--foreground); margin-bottom: 0.25rem; }
.why-item p { font-size: 0.875rem; color: var(--muted-foreground); }
.why-image { position: relative; border-radius: 1rem; overflow: hidden; }
.why-image img { width: 100%; object-fit: cover; aspect-ratio: 4/3; border-radius: 1rem; }
.why-image-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; background: linear-gradient(to top, rgba(20,34,64,0.8), transparent); }
.why-image-overlay p { color: var(--primary-foreground); font-family: var(--font-heading); font-weight: 600; }

/* ===== ABOUT ===== */
.about-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-image { border-radius: 1rem; overflow: hidden; }
.about-image img { width: 100%; object-fit: cover; aspect-ratio: 4/3; border-radius: 1rem; }

/* ===== REVIEWS ===== */
.reviews-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(4, 1fr); } }
.review-card {
  background: rgba(253,248,232,0.05); border: 1px solid rgba(253,248,232,0.1);
  border-radius: 0.75rem; padding: 1.5rem; backdrop-filter: blur(8px);
}
.review-stars { display: flex; gap: 2px; margin-bottom: 0.75rem; }
.review-stars svg { width: 14px; height: 14px; color: var(--gold); fill: var(--gold); }
.review-text { font-size: 0.875rem; color: rgba(253,248,232,0.85); line-height: 1.6; margin-bottom: 1rem; }
.review-name { color: var(--gold); font-weight: 600; font-size: 0.875rem; }

/* Card-style reviews (reviews page) */
.review-card-white { padding: 2rem; position: relative; }
.review-card-white .review-text { color: var(--foreground); }
.review-card-white .review-name { color: var(--navy); }
.review-card-sm { padding: 1.5rem; }
.review-card-sm .review-text { font-size: 0.875rem; color: rgba(30,42,58,0.8); }

/* ===== SPECIALS ===== */
.specials-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .specials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .specials-grid { grid-template-columns: repeat(3, 1fr); } }
.special-card { text-align: center; }
.special-price { font-size: 1.875rem; font-family: var(--font-heading); font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.special-title { font-family: var(--font-heading); font-weight: 600; color: var(--foreground); margin-bottom: 0.5rem; }
.special-note { font-size: 0.75rem; color: var(--muted-foreground); }

/* Full specials page card */
.special-card-full {
  display: flex; flex-direction: column; gap: 1.5rem; padding: 2rem;
}
@media (min-width: 640px) { .special-card-full { flex-direction: row; align-items: flex-start; } }
.special-badge { display: inline-flex; align-items: center; gap: 0.375rem; padding: 0.25rem 0.75rem; border-radius: 9999px; background: rgba(212,162,46,0.1); color: var(--gold); font-size: 0.75rem; font-weight: 600; margin-bottom: 0.5rem; }
.special-price-lg { font-size: 2.25rem; font-family: var(--font-heading); font-weight: 700; color: var(--navy); }
.special-desc { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; margin-bottom: 0.5rem; }
.special-disclaimer { font-size: 0.75rem; color: rgba(107,122,141,0.7); font-style: italic; }

/* ===== VEHICLES ===== */
.vehicles-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .vehicles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .vehicles-grid { grid-template-columns: repeat(3, 1fr); } }
.vehicle-card-image { height: 10rem; background: white; display: flex; align-items: center; justify-content: center; padding: 0.75rem; border-bottom: 1px solid var(--border); }
.vehicle-card-image img { max-height: 100%; max-width: 100%; object-fit: contain; }
.vehicle-card-body { padding: 1.25rem; }
.vehicle-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 0.75rem; }
.vehicle-title { font-family: var(--font-heading); font-weight: 700; font-size: 1.125rem; color: var(--foreground); }
.vehicle-meta { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.25rem; font-size: 0.75rem; color: var(--muted-foreground); }
.vehicle-meta svg { width: 12px; height: 12px; }
.vehicle-meta span { display: flex; align-items: center; gap: 0.25rem; }
.vehicle-stars { display: flex; gap: 2px; }
.vehicle-stars svg { width: 14px; height: 14px; color: var(--gold); fill: var(--gold); }
.vehicle-services-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted-foreground); margin-bottom: 0.5rem; }
.vehicle-services li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: var(--foreground); margin-bottom: 0.375rem; }
.vehicle-services li svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; margin-top: 0.125rem; }
.vehicle-review { padding-top: 1rem; border-top: 1px solid var(--border); margin-top: 1rem; }
.vehicle-review p { font-size: 0.875rem; color: var(--muted-foreground); font-style: italic; }

/* ===== PAGE HEROES ===== */
.page-hero { padding: 4rem 0 5rem; text-align: center; }
@media (min-width: 768px) { .page-hero { padding: 4rem 0 5rem; } }
.page-hero .section-label { color: var(--gold); }
.page-hero h1 { font-family: var(--font-heading); font-size: 2.25rem; font-weight: 700; color: var(--primary-foreground); margin-bottom: 1rem; }
@media (min-width: 640px) { .page-hero h1 { font-size: 3rem; } }
.page-hero p { color: rgba(253,248,232,0.7); font-size: 1.125rem; max-width: 42rem; margin: 0 auto; }

/* ===== SERVICE CATEGORY ===== */
.service-category { margin-bottom: 4rem; }
.service-category:last-child { margin-bottom: 0; }
.category-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.category-icon { width: 2.5rem; height: 2.5rem; border-radius: 0.5rem; background: rgba(30,50,84,0.05); display: flex; align-items: center; justify-content: center; }
.category-icon svg { width: 20px; height: 20px; color: var(--navy); }
.category-title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--foreground); }
.category-intro { color: var(--muted-foreground); max-width: 48rem; margin-bottom: 1.5rem; }
.category-services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 1024px) { .category-services-grid { grid-template-columns: repeat(3, 1fr); } }
.category-service-card { border-radius: 0.5rem; overflow: hidden; background: rgba(238,241,245,0.5); border: 1px solid var(--border); }
.category-service-card .service-card-image img { transition: transform 0.3s; }
.category-service-card:hover .service-card-image img { transform: scale(1.05); }
.category-service-card .service-card-content { padding: 0.75rem; }
.category-service-card .service-card-content span { font-size: 0.875rem; font-weight: 500; color: var(--foreground); }
.category-divider { border-bottom: 1px solid var(--border); margin-top: 4rem; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--foreground); margin-bottom: 0.375rem; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.75rem 1rem; border-radius: 0.5rem;
  border: 1px solid var(--input); background: var(--background);
  color: var(--foreground); font-size: 0.875rem; font-family: var(--font-body);
  transition: all 0.2s; outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 2px rgba(212,162,46,0.25);
}
.form-textarea { resize: none; }
.form-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .form-grid-2 { grid-template-columns: repeat(2, 1fr); } }
.form-full { grid-column: 1 / -1; }

/* ===== AMENITIES ===== */
.amenities-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 2.5rem; }
.amenity-item { display: flex; align-items: center; gap: 0.75rem; }
.amenity-icon { width: 2.5rem; height: 2.5rem; border-radius: 0.5rem; background: rgba(30,50,84,0.05); display: flex; align-items: center; justify-content: center; }
.amenity-icon svg { width: 20px; height: 20px; color: var(--navy); }
.amenity-text { text-align: left; }
.amenity-text p:first-child { font-family: var(--font-heading); font-weight: 600; font-size: 0.875rem; color: var(--foreground); }
.amenity-text p:last-child { font-size: 0.75rem; color: var(--muted-foreground); }

/* ===== LOCATION ===== */
.location-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .location-grid { grid-template-columns: 1fr 1fr; } }
.location-info-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.location-info-item svg { width: 20px; height: 20px; color: var(--gold); margin-top: 0.125rem; flex-shrink: 0; }
.location-info-item .info-label { font-weight: 600; color: var(--foreground); }
.location-info-item .info-text { color: var(--muted-foreground); }
.map-container { border-radius: 1rem; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
.map-container iframe { display: block; }

/* ===== CTA SECTION ===== */
.cta-section { text-align: center; }
.cta-section h2 { font-family: var(--font-heading); font-size: 1.875rem; font-weight: 700; color: var(--primary-foreground); margin-bottom: 1rem; }
@media (min-width: 640px) { .cta-section h2 { font-size: 2.25rem; } }
.cta-section p { color: rgba(253,248,232,0.7); margin-bottom: 2rem; max-width: 36rem; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
@media (min-width: 640px) { .cta-buttons { flex-direction: row; } }

/* ===== CONTACT ===== */
.contact-grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info-card { padding: 2rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-icon { width: 2.5rem; height: 2.5rem; border-radius: 0.5rem; background: rgba(30,50,84,0.05); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon svg { width: 20px; height: 20px; color: var(--navy); }

/* ===== SUMMARY STRIP ===== */
.summary-strip { background: var(--card); border-bottom: 1px solid var(--border); }
.summary-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; padding: 1.5rem 0; font-size: 0.875rem; }
.summary-item { display: flex; align-items: center; gap: 0.5rem; color: var(--muted-foreground); }
.summary-item svg { width: 16px; height: 16px; }
.summary-item strong { font-weight: 600; color: var(--foreground); }

/* ===== STAR RATING DISPLAY ===== */
.stars { display: flex; gap: 2px; }
.stars svg { color: var(--gold); fill: var(--gold); }
.stars-lg svg { width: 24px; height: 24px; }
.stars-md svg { width: 20px; height: 20px; }
.stars-sm svg { width: 14px; height: 14px; }

/* ===== SUCCESS MESSAGE ===== */
.success-message { text-align: center; padding: 3rem; }
.success-icon { width: 4rem; height: 4rem; color: var(--gold); margin: 0 auto 1rem; }
.success-title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--foreground); margin-bottom: 0.5rem; }
.success-text { color: var(--muted-foreground); }
.success-text a { font-weight: 600; color: var(--navy); transition: color 0.2s; }
.success-text a:hover { color: var(--gold); }

/* ===== MOBILE CALL BUTTON ===== */
.mobile-call-btn {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); transition: transform 0.2s; border: none;
}
.mobile-call-btn:hover { transform: scale(1.05); }
.mobile-call-btn svg { width: 24px; height: 24px; color: var(--navy-dark); }
@media (min-width: 1024px) { .mobile-call-btn { display: none; } }

/* ===== 404 ===== */
.not-found { display: flex; align-items: center; justify-content: center; min-height: 60vh; text-align: center; }
.not-found h1 { font-size: 6rem; font-family: var(--font-heading); font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.not-found p { font-size: 1.25rem; color: var(--muted-foreground); margin-bottom: 2rem; }

/* ===== QUOTE ICON ===== */
.quote-icon { position: absolute; top: 1.5rem; right: 1.5rem; width: 2rem; height: 2rem; color: rgba(212,162,46,0.2); }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.gap-4 { gap: 1rem; }
.w-full { width: 100%; }

/* SVG icon base */
.icon { display: inline-block; vertical-align: middle; }
