/* ============================================================
   Shepherd's Auto WordPress Theme – Main Stylesheet
   Colors: #0A1628 (navy), #1A3A6B (blue), #C8102E (red)
   ============================================================ */

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

:root {
  --navy:      #0A1628;
  --blue:      #1A3A6B;
  --blue-mid:  #1E4D9B;
  --blue-light:#2563EB;
  --red:       #C8102E;
  --red-dark:  #A00D25;
  --white:     #FFFFFF;
  --off-white: #F4F6FA;
  --gray:      #6B7280;
  --gray-light:#E5E7EB;
  --text:      #1F2937;
  --shadow:    0 4px 24px rgba(10,22,40,0.13);
  --radius:    10px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; color: var(--text); background: var(--white); line-height: 1.65; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 6px; font-weight: 700; font-size: 0.95rem; cursor: pointer; border: 2px solid transparent; transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.18); }
.btn-primary   { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-secondary { background: transparent; color: var(--white); border-color: var(--white); }
.btn-secondary:hover { background: var(--white); color: var(--navy); }
.btn-blue      { background: var(--blue-mid); color: var(--white); border-color: var(--blue-mid); }
.btn-blue:hover { background: var(--blue); border-color: var(--blue); }
.btn-outline-red { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline-red:hover { background: var(--red); color: var(--white); }

/* ---------- Section Labels & Titles ---------- */
.section-label { display: inline-block; background: var(--red); color: var(--white); font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 14px; border-radius: 20px; margin-bottom: 12px; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 14px; }
.section-subtitle { font-size: 1.05rem; color: var(--gray); max-width: 600px; }
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }
section { padding: 80px 0; }

/* ---------- Top Bar ---------- */
.top-bar { background: var(--navy); color: var(--white); padding: 8px 0; font-size: 0.85rem; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar a { color: var(--white); transition: color var(--transition); }
.top-bar a:hover { color: var(--red); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar-item { display: flex; align-items: center; gap: 6px; }

/* ---------- Header / Nav ---------- */
header.site-header { background: var(--blue); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 12px rgba(0,0,0,0.25); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 0 20px; max-width: 1200px; margin: 0 auto; height: 72px; }
.site-logo { display: flex; align-items: center; gap: 12px; color: var(--white); }
.logo-icon { width: 44px; height: 44px; background: var(--red); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-text { line-height: 1.1; }
.logo-name { font-size: 1.15rem; font-weight: 800; letter-spacing: 0.5px; display: block; margin-bottom: 5px; color: var(--white); }
.logo-sub  { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; opacity: 0.8; display: block; color: var(--white); }
.site-logo:hover { opacity: 0.9; }

/* Primary Nav */
.primary-nav ul { display: flex; align-items: center; gap: 4px; }
.primary-nav ul li a { color: var(--white); font-weight: 600; font-size: 0.9rem; padding: 8px 16px; border-radius: 6px; transition: background var(--transition); }
.primary-nav ul li a:hover,
.primary-nav ul li.current-menu-item > a,
.primary-nav ul li.current_page_item > a { background: rgba(255,255,255,0.15); }
.nav-book-btn a { background: var(--red) !important; padding: 9px 20px !important; border-radius: 6px !important; font-weight: 700 !important; }
.nav-book-btn a:hover { background: var(--red-dark) !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { display: block; width: 26px; height: 3px; background: var(--white); border-radius: 3px; transition: all var(--transition); }

/* ---------- Page Hero ---------- */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); color: var(--white); padding: 80px 0 60px; text-align: center; }
.page-hero.red-hero { background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-bottom: 14px; }
.page-hero p  { font-size: 1.1rem; opacity: 0.85; max-width: 600px; margin: 0 auto; }

/* ---------- Home Hero ---------- */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden; background: var(--navy); }
.hero-bg { position: absolute; inset: 0; background-image: url('../images/hero-handshake.jpg'); background-size: cover; background-position: center 30%; filter: brightness(0.35); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(110deg, rgba(10,22,40,0.85) 40%, rgba(26,58,107,0.5) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 700px; color: var(--white); padding: 60px 20px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(200,16,46,0.25); border: 1px solid rgba(200,16,46,0.6); color: #FCA5A5; font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 6px 16px; border-radius: 20px; margin-bottom: 20px; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
.hero h1 span { color: var(--red); }
.hero p { font-size: 1.15rem; opacity: 0.9; margin-bottom: 36px; max-width: 560px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; background: rgba(10,22,40,0.85); backdrop-filter: blur(8px); border-top: 1px solid rgba(255,255,255,0.1); }
.hero-stats .container { display: flex; justify-content: space-around; padding: 20px; flex-wrap: wrap; gap: 16px; }
.stat-item { text-align: center; color: var(--white); }
.stat-num  { font-size: 1.8rem; font-weight: 900; color: var(--red); line-height: 1; }
.stat-lbl  { font-size: 0.78rem; opacity: 0.75; letter-spacing: 0.5px; margin-top: 4px; }

/* ---------- Trust Bar ---------- */
.trust-bar { background: var(--off-white); padding: 28px 0; border-bottom: 1px solid var(--gray-light); }
.trust-bar .container { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.trust-icon { width: 40px; height: 40px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ---------- Owner Section ---------- */
.owner-section { background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%); padding: 48px 0; border-bottom: 1px solid var(--gray-light); }
.owner-profile { display: flex; align-items: center; gap: 40px; max-width: 860px; margin: 0 auto; background: var(--white); border-radius: 20px; padding: 40px 48px; box-shadow: 0 8px 32px rgba(10,22,40,0.12); border: 1px solid rgba(26,58,107,0.1); }
.owner-avatar-wrap { position: relative; flex-shrink: 0; }
.owner-avatar { width: 140px; height: 140px; border-radius: 50%; overflow: hidden; border: 5px solid var(--blue); box-shadow: 0 6px 24px rgba(26,58,107,0.25); background: var(--blue); cursor: pointer; }
.owner-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.owner-upload-overlay { position: absolute; inset: 0; background: rgba(10,22,40,0.55); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; opacity: 0; transition: opacity 0.25s ease; pointer-events: none; }
.owner-upload-overlay span { font-size: 0.7rem; font-weight: 700; color: white; letter-spacing: 0.5px; text-transform: uppercase; }
.owner-avatar:hover .owner-upload-overlay { opacity: 1; }
.owner-badge { position: absolute; bottom: 4px; right: 4px; width: 34px; height: 34px; background: var(--red); border-radius: 50%; border: 3px solid var(--white); display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(200,16,46,0.4); }
.owner-info { flex: 1; }
.owner-name  { font-size: 1.6rem; font-weight: 900; color: var(--navy); margin-bottom: 4px; line-height: 1.1; }
.owner-title { font-size: 0.85rem; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.owner-quote { font-size: 0.97rem; color: var(--gray); line-height: 1.7; font-style: italic; border-left: 3px solid var(--blue); padding-left: 14px; margin: 0; }

/* ---------- Service Cards ---------- */
.services-home { background: var(--white); }
.service-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 24px; }
.service-card { background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(10,22,40,0.18); }
.service-card-img { height: 180px; overflow: hidden; position: relative; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-card:hover .service-card-img img { transform: scale(1.07); }
.service-card-icon { position: absolute; bottom: -18px; left: 20px; width: 44px; height: 44px; background: var(--red); border-radius: 10px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(200,16,46,0.4); }
.service-card-body { padding: 28px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.service-card-body h3 { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.service-card-body p  { font-size: 0.88rem; color: var(--gray); flex: 1; margin-bottom: 14px; }
.service-tag { display: inline-block; background: var(--off-white); color: var(--blue-mid); font-size: 0.75rem; font-weight: 700; padding: 4px 10px; border-radius: 20px; margin-bottom: 12px; }
.service-card-link { display: flex; align-items: center; gap: 6px; color: var(--red); font-weight: 700; font-size: 0.85rem; transition: gap var(--transition); }
.service-card:hover .service-card-link { gap: 10px; }

/* ---------- Why Us ---------- */
.why-us { background: var(--navy); color: var(--white); }
.why-us .section-title { color: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.why-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 32px 24px; transition: background var(--transition), border-color var(--transition); }
.why-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(200,16,46,0.5); }
.why-card-icon { width: 52px; height: 52px; background: var(--red); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.why-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.why-card p  { font-size: 0.9rem; opacity: 0.75; line-height: 1.6; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--off-white); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); position: relative; }
.testimonial-card::before { content: '"'; position: absolute; top: 16px; right: 24px; font-size: 5rem; color: var(--red); opacity: 0.15; font-family: Georgia, serif; line-height: 1; }
.stars { color: #F59E0B; font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.93rem; color: var(--text); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar { width: 44px; height: 44px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.reviewer-name  { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.reviewer-label { font-size: 0.78rem; color: var(--gray); }

/* ---------- CTA Banner ---------- */
.cta-banner { background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); color: var(--white); padding: 60px 0; text-align: center; }
.cta-banner h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; margin-bottom: 12px; }
.cta-banner p  { font-size: 1.05rem; opacity: 0.9; margin-bottom: 32px; }
.cta-buttons   { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---------- Services Page ---------- */
.services-list { background: var(--white); }
.service-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 60px 0; border-bottom: 1px solid var(--gray-light); }
.service-row:last-child { border-bottom: none; }
.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }
.service-row-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); height: 320px; }
.service-row-img img { width: 100%; height: 100%; object-fit: cover; }
.service-row-content h2 { font-size: 1.6rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.service-meta { display: flex; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.meta-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--off-white); color: var(--blue-mid); font-size: 0.8rem; font-weight: 700; padding: 5px 12px; border-radius: 20px; }
.service-row-content p { color: var(--gray); margin-bottom: 16px; line-height: 1.7; }
.service-includes { margin-bottom: 20px; }
.service-includes li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--text); padding: 5px 0; }
.service-includes li::before { content: '✓'; color: var(--red); font-weight: 900; flex-shrink: 0; margin-top: 1px; }
.oem-badge { display: inline-flex; align-items: center; gap: 8px; background: #EFF6FF; border: 1px solid #BFDBFE; color: var(--blue-mid); font-size: 0.82rem; font-weight: 700; padding: 8px 16px; border-radius: 8px; margin-top: 8px; }

/* ---------- About Page ---------- */
.about-story { background: var(--white); }
.about-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img   { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); height: 420px; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-content h2 { font-size: 1.8rem; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.about-content p  { color: var(--gray); margin-bottom: 16px; line-height: 1.75; }
.about-content .highlight { background: var(--off-white); border-left: 4px solid var(--red); padding: 16px 20px; border-radius: 0 8px 8px 0; margin: 20px 0; font-style: italic; color: var(--text); font-size: 0.95rem; }
.warranty-section { background: var(--navy); color: var(--white); }
.warranty-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.warranty-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 32px 24px; text-align: center; }
.warranty-card .big-num { font-size: 2.8rem; font-weight: 900; color: var(--red); line-height: 1; margin-bottom: 8px; }
.warranty-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.warranty-card p  { font-size: 0.88rem; opacity: 0.7; line-height: 1.6; }
.certifications { background: var(--off-white); }
.cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.cert-card { background: var(--white); border-radius: var(--radius); padding: 28px 20px; text-align: center; box-shadow: var(--shadow); }
.cert-icon { width: 60px; height: 60px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.cert-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.cert-card p  { font-size: 0.83rem; color: var(--gray); }

/* ---------- Specials Page ---------- */
.coupons-section { background: var(--white); }
.coupons-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.coupon-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 2px dashed var(--gray-light); transition: transform var(--transition), box-shadow var(--transition); position: relative; }
.coupon-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(10,22,40,0.15); }
.coupon-header { background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%); color: var(--white); padding: 24px; text-align: center; }
.coupon-header.red-bg { background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); }
.coupon-discount { font-size: 2.8rem; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.coupon-service { font-size: 0.9rem; opacity: 0.85; letter-spacing: 0.5px; }
.coupon-body { padding: 24px; }
.coupon-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.coupon-body p  { font-size: 0.88rem; color: var(--gray); margin-bottom: 16px; line-height: 1.6; }
.coupon-terms { font-size: 0.75rem; color: var(--gray); border-top: 1px solid var(--gray-light); padding-top: 12px; margin-top: 12px; }
.coupon-badge { position: absolute; top: 16px; right: 16px; background: #F59E0B; color: var(--navy); font-size: 0.7rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; }
.monthly-special { background: var(--off-white); padding: 60px 0; }
.monthly-card { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); border-radius: 16px; padding: 48px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; color: var(--white); }
.monthly-card h2 { font-size: 1.8rem; font-weight: 900; margin-bottom: 10px; }
.monthly-card p  { opacity: 0.85; margin-bottom: 20px; }
.monthly-price { text-align: center; background: rgba(255,255,255,0.1); border-radius: 12px; padding: 24px 36px; border: 1px solid rgba(255,255,255,0.2); }
.monthly-price .price { font-size: 3.5rem; font-weight: 900; color: var(--red); line-height: 1; }
.monthly-price .price-label { font-size: 0.85rem; opacity: 0.75; margin-top: 4px; }

/* ---------- Contact Page ---------- */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: 1.6rem; font-weight: 800; color: var(--navy); margin-bottom: 24px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contact-item-icon { width: 48px; height: 48px; background: var(--blue); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-text h4 { font-size: 0.85rem; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.contact-item-text p, .contact-item-text a { font-size: 1rem; color: var(--navy); font-weight: 600; }
.contact-item-text a:hover { color: var(--red); }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.hours-table tr { border-bottom: 1px solid var(--gray-light); }
.hours-table td { padding: 8px 12px 8px 0; font-size: 0.9rem; }
.hours-table td:last-child { padding-left: 20px; }
.hours-table td:first-child { color: var(--gray); font-weight: 600; }
.hours-table td:last-child  { color: var(--navy); font-weight: 700; text-align: right; }
.tow-btn { display: flex; align-items: center; gap: 12px; background: var(--red); color: var(--white); padding: 16px 24px; border-radius: 10px; font-weight: 800; font-size: 1.05rem; margin-top: 24px; transition: background var(--transition), transform var(--transition); width: fit-content; }
.tow-btn:hover { background: var(--red-dark); transform: translateY(-2px); }
.map-container { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); height: 420px; background: var(--gray-light); position: relative; }
.map-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%); color: var(--blue-mid); text-align: center; padding: 24px; }
.map-placeholder h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.map-placeholder p  { font-size: 0.9rem; opacity: 0.7; }
.contact-form-section { background: var(--off-white); }
.contact-form { max-width: 700px; margin: 0 auto; background: var(--white); border-radius: 16px; padding: 48px; box-shadow: var(--shadow); }
.contact-form h2 { font-size: 1.6rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.contact-form > p { color: var(--gray); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: 0.85rem; font-weight: 700; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea { padding: 12px 16px; border: 2px solid var(--gray-light); border-radius: 8px; font-size: 0.95rem; color: var(--text); transition: border-color var(--transition); font-family: inherit; background: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--blue-mid); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--navy); color: var(--white); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand p { font-size: 0.88rem; opacity: 0.7; margin: 16px 0 24px; line-height: 1.7; }
.social-links { display: flex; gap: 10px; }
.social-link { width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.social-link:hover { background: var(--red); }
.footer-col h4 { font-size: 0.9rem; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 16px; color: var(--white); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.88rem; opacity: 0.7; transition: opacity var(--transition), color var(--transition); }
.footer-col ul li a:hover { opacity: 1; color: var(--red); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.88rem; opacity: 0.75; }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; opacity: 0.6; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .primary-nav ul { position: fixed; top: 72px; left: 0; right: 0; background: var(--blue); flex-direction: column; padding: 20px; gap: 8px; transform: translateY(-120%); transition: transform var(--transition); box-shadow: 0 8px 24px rgba(0,0,0,0.3); z-index: 999; }
  .primary-nav ul.open { transform: translateY(0); }
  .primary-nav ul li a { display: block; padding: 12px 16px; }
  .hamburger { display: flex; }
  .nav-book-btn { display: none; }
  .service-row { grid-template-columns: 1fr; gap: 30px; }
  .service-row.reverse { direction: ltr; }
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .monthly-card { grid-template-columns: 1fr; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
}
@media (max-width: 640px) {
  .owner-profile { flex-direction: column; text-align: center; padding: 32px 24px; gap: 24px; }
  .owner-quote { border-left: none; padding-left: 0; border-top: 3px solid var(--blue); padding-top: 14px; }
  .hero-stats .container { justify-content: center; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-bar .container { gap: 20px; }
  .hero-buttons { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
  section { padding: 56px 0; }
}
