/* ===== BASIN GARAGE DOOR CO. ===== */
:root {
  --navy: #1C1C1C;
  --blue: #2B4C2B;
  --orange: #C8490A;
  --orange-dark: #A33A08;
  --gray-50: #F8F7F4;
  --gray-100: #F1EDE8;
  --gray-200: #E0D8D0;
  --gray-500: #7A6E65;
  --gray-600: #5C5248;
  --gray-700: #3D352E;
  --gray-900: #1A1410;
  --white: #FFFFFF;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--gray-700); line-height: 1.65; background: #fff; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { line-height: 1.2; color: var(--navy); font-weight: 700; }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: 1.1rem; }
p { margin-bottom: 0; }
ul { list-style: none; }

.header { background: var(--navy); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 16px; }
.logo-wrap { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-size: 1.1rem; font-weight: 800; color: white; letter-spacing: -0.3px; }
.logo-tag { font-size: 0.58rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.8px; margin-top: 2px; }
.nav { display: flex; gap: 4px; }
.nav a { color: rgba(255,255,255,0.75); font-size: 0.87rem; font-weight: 500; padding: 6px 12px; border-radius: 6px; transition: background 0.2s, color 0.2s; }
.nav a:hover { background: rgba(255,255,255,0.1); color: white; }
.header-phone { background: var(--orange); color: white; font-weight: 700; font-size: 0.92rem; padding: 9px 18px; border-radius: 8px; white-space: nowrap; transition: background 0.2s; flex-shrink: 0; }
.header-phone:hover { background: var(--orange-dark); }

.hero { background: linear-gradient(135deg, #1C1C1C 0%, #2B2B2B 100%); color: white; padding: 60px 20px; }
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 400px; gap: 48px; align-items: start; }
.badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(200,73,10,0.2); border: 1px solid rgba(200,73,10,0.4); color: #F4A87A; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; padding: 6px 14px; border-radius: 20px; margin-bottom: 18px; }
.hero h1 { color: white; margin-bottom: 16px; }
.hero-sub { font-size: 1rem; color: rgba(255,255,255,0.75); margin-bottom: 24px; max-width: 560px; line-height: 1.65; }
.hero-checks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.hero-checks li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: rgba(255,255,255,0.88); }
.hero-checks li span { color: #6EE7A0; font-size: 1rem; font-weight: 700; flex-shrink: 0; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-orange { background: var(--orange); color: white; font-weight: 700; font-size: 1rem; padding: 14px 28px; border-radius: 8px; display: inline-flex; align-items: center; gap: 8px; transition: background 0.2s; box-shadow: 0 4px 14px rgba(200,73,10,0.35); }
.btn-orange:hover { background: var(--orange-dark); }
.btn-outline { background: rgba(255,255,255,0.08); color: white; border: 1.5px solid rgba(255,255,255,0.25); font-weight: 700; font-size: 1rem; padding: 14px 28px; border-radius: 8px; display: inline-flex; align-items: center; gap: 8px; transition: background 0.2s; }
.btn-outline:hover { background: rgba(255,255,255,0.15); }

.booking-card { background: white; border-radius: 14px; padding: 28px 24px; box-shadow: var(--shadow-lg); }
.booking-card h3 { color: var(--navy); font-size: 1.05rem; margin-bottom: 6px; }
.booking-card > p { font-size: 0.82rem; color: var(--gray-500); margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-group label { font-size: 0.75rem; font-weight: 700; color: var(--gray-700); text-transform: uppercase; letter-spacing: 0.4px; }
.form-group input, .form-group textarea, .form-group select { border: 1.5px solid var(--gray-200); border-radius: 8px; padding: 10px 12px; font-size: 0.9rem; color: var(--gray-700); transition: border-color 0.2s; width: 100%; background: white; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--orange); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-submit { width: 100%; background: var(--orange); color: white; border: none; border-radius: 8px; font-size: 1rem; font-weight: 700; padding: 14px; cursor: pointer; transition: background 0.2s; }
.btn-submit:hover { background: var(--orange-dark); }
.form-note { text-align: center; font-size: 0.78rem; color: var(--gray-500); margin-top: 10px; }
.form-note a { color: var(--orange); font-weight: 700; }

.trust-bar { background: var(--orange); padding: 12px 20px; }
.trust-items { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 20px; }
.trust-item { color: white; font-size: 0.8rem; font-weight: 700; display: flex; align-items: center; gap: 6px; }

.section { padding: 72px 20px; }
.container { max-width: 1200px; margin: 0 auto; }
.sec-head { text-align: center; max-width: 640px; margin: 0 auto; }
.eyebrow { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--orange); margin-bottom: 10px; }
.sec-head h2 { margin-bottom: 14px; }
.sec-head p { color: var(--gray-500); font-size: 0.95rem; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; margin-top: 48px; }
.svc-card { background: white; border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: 22px 16px; text-align: center; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.svc-card:hover { border-color: var(--orange); box-shadow: var(--shadow); transform: translateY(-2px); }
.svc-icon { font-size: 1.8rem; }
.svc-card h4 { font-size: 0.85rem; color: var(--navy); line-height: 1.3; }

.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; margin-top: 48px; }
.why-card { background: white; border-radius: var(--radius); padding: 26px 22px; border: 1.5px solid var(--gray-200); transition: box-shadow 0.2s; }
.why-card:hover { box-shadow: var(--shadow); }
.why-icon { font-size: 1.8rem; margin-bottom: 12px; }
.why-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 0.98rem; }
.why-card p { font-size: 0.87rem; color: var(--gray-600); line-height: 1.65; }

.areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px; margin-top: 48px; }
.area-card { border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: 20px 18px; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; background: white; }
.area-card:hover { border-color: var(--orange); box-shadow: var(--shadow); transform: translateY(-2px); }
.area-card h3 { color: var(--navy); font-size: 0.98rem; margin-bottom: 5px; }
.area-card p { font-size: 0.78rem; color: var(--gray-500); }
.area-link { color: var(--orange); font-size: 0.78rem; font-weight: 700; margin-top: 10px; display: block; }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 48px; }
.step { text-align: center; padding: 24px 18px; }
.step-num { width: 52px; height: 52px; background: var(--orange); color: white; font-size: 1.3rem; font-weight: 800; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.step h4 { color: var(--navy); margin-bottom: 10px; font-size: 0.95rem; }
.step p { font-size: 0.87rem; color: var(--gray-600); line-height: 1.6; }

/* DANGER BANNER */
.danger-banner { background: #7B1414; border-left: 5px solid #C8490A; border-radius: 10px; padding: 22px 26px; margin: 32px 0; }
.danger-banner h4 { color: #F4A87A; font-size: 1rem; margin-bottom: 8px; }
.danger-banner p { color: rgba(255,255,255,0.85); font-size: 0.88rem; line-height: 1.65; }

.reviews-section { background: var(--gray-50); padding: 72px 20px; overflow: hidden; }
.reviews-track { overflow: hidden; margin-top: 48px; }
.reviews-slides { display: flex; gap: 20px; transition: transform 0.5s ease; }
.review-slide { min-width: 340px; max-width: 380px; flex-shrink: 0; }
.review-card { background: white; border-radius: var(--radius); padding: 24px; border: 1.5px solid var(--gray-200); height: 100%; display: flex; flex-direction: column; gap: 12px; }
.review-meta { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: white; font-size: 0.82rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.review-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.review-stars { color: #F59E0B; font-size: 0.85rem; }
.review-service { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--orange); }
.review-city { font-size: 0.76rem; color: var(--gray-500); }
.review-text { font-size: 0.87rem; color: var(--gray-600); line-height: 1.65; flex: 1; font-style: italic; }
.reviews-nav { display: flex; gap: 10px; justify-content: center; margin-top: 24px; }
.r-nav-btn { width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--gray-200); background: white; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.r-nav-btn:hover { background: var(--navy); border-color: var(--navy); color: white; }
.reviews-dots { display: flex; gap: 8px; justify-content: center; margin-top: 14px; }
.r-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gray-200); border: none; cursor: pointer; transition: background 0.2s, transform 0.2s; }
.r-dot.active { background: var(--orange); transform: scale(1.3); }

.faq-wrap { max-width: 760px; margin: 44px auto 0; display: flex; flex-direction: column; gap: 12px; }
details { border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: 18px 20px; transition: border-color 0.2s; }
details[open] { border-color: var(--orange); }
summary { font-weight: 700; font-size: 0.95rem; color: var(--navy); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
summary::after { content: '+'; font-size: 1.2rem; color: var(--orange); flex-shrink: 0; }
details[open] summary::after { content: '−'; }
details p { margin-top: 12px; font-size: 0.9rem; color: var(--gray-600); line-height: 1.65; }

.cta-banner { background: var(--navy); padding: 64px 20px; text-align: center; }
.cta-banner h2 { color: white; margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.65); margin-bottom: 32px; font-size: 1rem; }

.page-hero { background: linear-gradient(135deg, #1C1C1C, #2B2B2B); padding: 48px 20px; }
.page-hero-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.page-hero h1 { color: white; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1rem; }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 48px; }
.blog-card { border: 1.5px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; background: white; transition: box-shadow 0.2s, transform 0.2s; }
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.blog-card-body { padding: 20px; }
.blog-cat { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--orange); margin-bottom: 8px; }
.blog-card h3 { font-size: 0.98rem; color: var(--navy); margin-bottom: 10px; line-height: 1.35; }
.blog-card p { font-size: 0.84rem; color: var(--gray-600); line-height: 1.6; }
.blog-read { font-size: 0.8rem; color: var(--orange); font-weight: 700; margin-top: 12px; display: block; }
.blog-header { border-bottom: 3px solid var(--orange); padding-bottom: 6px; margin-bottom: 32px; }
.blog-header .eyebrow { font-size: 0.7rem; }
article h2 { color: var(--navy); margin: 28px 0 12px; font-size: 1.25rem; }
article h3 { color: var(--navy); margin: 22px 0 10px; font-size: 1.05rem; }
article p { color: var(--gray-600); font-size: 0.95rem; line-height: 1.75; margin-bottom: 16px; }
article ul, article ol { padding-left: 22px; margin-bottom: 16px; }
article li { font-size: 0.95rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 6px; }
.article-meta { font-size: 0.8rem; color: var(--gray-500); margin-bottom: 28px; }

/* CONTACT */
.contact-layout { max-width: 1100px; margin: 0 auto; padding: 56px 24px; display: flex; flex-direction: column; gap: 28px; }
.contact-phone-card { background: var(--navy); color: white; border-radius: 12px; padding: 22px 26px; display: flex; align-items: center; gap: 18px; }
.contact-phone-card a { color: white; font-size: 1.5rem; font-weight: 800; text-decoration: none; display: block; }
.contact-icon { font-size: 2rem; flex-shrink: 0; }
.contact-hours { font-size: 0.78rem; opacity: 0.6; margin-top: 4px; }
.contact-info-card { border: 1.5px solid var(--gray-200); border-radius: 12px; padding: 20px 26px; background: var(--gray-50); }
.contact-info-card h4 { color: var(--navy); margin-bottom: 12px; font-size: 0.92rem; }
.contact-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.contact-pill { background: white; border: 1px solid var(--gray-200); border-radius: 20px; padding: 5px 13px; font-size: 0.79rem; font-weight: 600; color: var(--gray-600); }

.footer { background: var(--gray-900); color: rgba(255,255,255,0.65); padding: 56px 20px 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-brand .f-logo { font-size: 1.05rem; font-weight: 800; color: white; display: block; margin-bottom: 12px; }
.footer-brand p { font-size: 0.84rem; line-height: 1.7; max-width: 280px; }
.footer-col h5 { color: white; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 0.84rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul li a:hover { color: white; }
.footer-address { margin-top: 14px; background: rgba(255,255,255,0.05); padding: 14px 16px; border-radius: 10px; font-size: 0.81rem; line-height: 1.7; border: 1px solid rgba(255,255,255,0.08); }
.footer-address a { color: var(--orange); font-weight: 700; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 18px 0; display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; font-size: 0.76rem; color: rgba(255,255,255,0.3); }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
}
@media (max-width: 600px) {
  .hero { padding: 36px 16px; }
  .section { padding: 48px 16px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .cta-row { flex-direction: column; }
  .contact-layout { padding: 32px 16px; }
}
@media (min-width: 768px) {
  .contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
  .contact-form-col { grid-column: 1; grid-row: 1; }
  .contact-side { grid-column: 2; display: flex; flex-direction: column; gap: 20px; }
}
