/* Shuttermart San Diego - Styles */
:root {
  --navy: #1a365d;
  --navy-light: #2a4a7f;
  --gold: #d69e2e;
  --gold-light: #ecc94b;
  --white: #ffffff;
  --gray-light: #f7f7f7;
  --gray: #e2e8f0;
  --gray-dark: #4a5568;
  --text: #2d3748;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); line-height: 1.6; }

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold); }

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* Header */
.header { background: var(--navy); color: var(--white); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.15); }
.header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 0; padding-bottom: 0; }
.logo { font-size: 1.5rem; font-weight: 700; color: var(--white); padding: 1rem 0; }
.logo span { color: var(--gold); }

.nav { display: flex; align-items: center; gap: 0; }
.nav a { color: var(--white); padding: 1.25rem 1rem; font-size: 0.95rem; transition: background 0.2s; }
.nav a:hover, .nav a.active { background: var(--navy-light); color: var(--gold); }
.nav .dropdown { position: relative; }
.nav .dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: var(--navy); min-width: 200px; box-shadow: 0 4px 12px rgba(0,0,0,0.2); border-radius: 0 0 0.5rem 0.5rem; }
.nav .dropdown:hover .dropdown-menu { display: block; }
.nav .dropdown-menu a { display: block; padding: 0.75rem 1.25rem; white-space: nowrap; }

.mobile-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; padding: 0.5rem; }

/* Hero */
.hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); color: var(--white); padding: 5rem 0; text-align: center; }
.hero h1 { font-size: 2.75rem; margin-bottom: 1.25rem; line-height: 1.2; }
.hero h1 span { color: var(--gold); }
.hero p { font-size: 1.25rem; max-width: 700px; margin: 0 auto 2rem; opacity: 0.9; }

/* Buttons */
.btn { display: inline-block; padding: 0.875rem 2rem; border-radius: 0.5rem; font-weight: 600; font-size: 1rem; transition: all 0.2s; cursor: pointer; border: none; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); color: var(--navy); transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--gray-light); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); color: var(--white); }
.btn-outline { background: transparent; border: 2px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--navy); }

/* Sections */
.section { padding: 5rem 0; }
.section-gray { background: var(--gray-light); }
.section-navy { background: var(--navy); color: var(--white); }
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 { font-size: 2.25rem; color: var(--navy); margin-bottom: 0.75rem; }
.section-navy .section-title h2 { color: var(--white); }
.section-title p { font-size: 1.1rem; color: var(--gray-dark); max-width: 600px; margin: 0 auto; }
.section-navy .section-title p { color: rgba(255,255,255,0.8); }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.card { background: var(--white); border-radius: 0.75rem; padding: 2.5rem 2rem; box-shadow: 0 2px 12px rgba(0,0,0,0.08); transition: transform 0.2s, box-shadow 0.2s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.card h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 1rem; }
.card p { color: var(--gray-dark); margin-bottom: 1.25rem; }
.card .icon { font-size: 2.5rem; margin-bottom: 1rem; }

/* Features grid */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.feature { text-align: center; padding: 2rem 1.5rem; }
.feature .icon { font-size: 2.5rem; margin-bottom: 1rem; }
.feature h3 { color: var(--navy); margin-bottom: 0.5rem; }

/* CTA Banner */
.cta-banner { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); color: var(--white); padding: 4rem 0; text-align: center; }
.cta-banner h2 { font-size: 2rem; margin-bottom: 1rem; }
.cta-banner p { font-size: 1.15rem; margin-bottom: 2rem; opacity: 0.9; }
.cta-banner .btn + .btn { margin-left: 1rem; }

/* Page header */
.page-header { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); color: var(--white); padding: 3.5rem 0; text-align: center; }
.page-header h1 { font-size: 2.5rem; margin-bottom: 0.75rem; }
.page-header p { font-size: 1.15rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }

/* Content */
.content { padding: 4rem 0; }
.content h2 { font-size: 1.75rem; color: var(--navy); margin: 2rem 0 1rem; }
.content h3 { font-size: 1.35rem; color: var(--navy); margin: 1.5rem 0 0.75rem; }
.content p { margin-bottom: 1rem; }
.content ul, .content ol { margin: 1rem 0 1rem 2rem; }
.content li { margin-bottom: 0.5rem; }

/* Two column */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }

/* Product page */
.product-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.product-feature { background: var(--gray-light); padding: 1.5rem; border-radius: 0.5rem; border-left: 4px solid var(--gold); }
.product-feature h4 { color: var(--navy); margin-bottom: 0.5rem; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.gallery-item { aspect-ratio: 4/3; border-radius: 0.75rem; overflow: hidden; position: relative; }
.gallery-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--white); font-weight: 600; text-shadow: 0 1px 3px rgba(0,0,0,0.3); }

/* Contact form */
.contact-form { max-width: 600px; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.375rem; color: var(--navy); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--gray); border-radius: 0.5rem; font-size: 1rem; font-family: var(--font); transition: border-color 0.2s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(214,158,46,0.15); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* Contact info */
.contact-info { background: var(--gray-light); padding: 2rem; border-radius: 0.75rem; }
.contact-info h3 { color: var(--navy); margin-bottom: 1rem; }
.contact-info p { margin-bottom: 0.75rem; }
.contact-info a { color: var(--gold); font-weight: 600; }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; counter-reset: step; }
.step { text-align: center; padding: 2rem 1.5rem; position: relative; }
.step::before { counter-increment: step; content: counter(step); display: flex; align-items: center; justify-content: center; width: 3rem; height: 3rem; background: var(--gold); color: var(--navy); font-weight: 700; font-size: 1.25rem; border-radius: 50%; margin: 0 auto 1rem; }
.step h3 { color: var(--navy); margin-bottom: 0.5rem; }

/* Footer */
.footer { background: var(--navy); color: rgba(255,255,255,0.8); padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer h4 { color: var(--white); margin-bottom: 1rem; font-size: 1.1rem; }
.footer a { color: rgba(255,255,255,0.7); }
.footer a:hover { color: var(--gold); }
.footer ul { list-style: none; }
.footer li { margin-bottom: 0.5rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; text-align: center; font-size: 0.9rem; }
.footer .phone { color: var(--gold); font-size: 1.2rem; font-weight: 700; }

/* Map */
.map-container { border-radius: 0.75rem; overflow: hidden; margin-top: 2rem; }

/* Legal pages */
.legal { max-width: 800px; margin: 0 auto; }
.legal h2 { font-size: 1.5rem; margin-top: 2.5rem; }

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1.05rem; }
  .nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); }
  .nav.open { display: flex; }
  .nav a { padding: 1rem 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); }
  .nav .dropdown-menu { position: static; box-shadow: none; }
  .nav .dropdown:hover .dropdown-menu { display: flex; flex-direction: column; }
  .mobile-toggle { display: block; }
  .two-col { grid-template-columns: 1fr; }
  .cta-banner .btn + .btn { margin-left: 0; margin-top: 1rem; }
  .cta-banner .btn { display: block; width: fit-content; margin: 0 auto; }
  .page-header h1 { font-size: 1.75rem; }
  .cards { grid-template-columns: 1fr; }
}
