/* ============================================
   MOD GARAGE OF NOVA — Shared Stylesheet
   Colors: Primary #164A7D | Accent #3E83C7 | Dark #161616
   Fonts: Montserrat (headings) | Source Sans Pro (body)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Source+Sans+Pro:wght@400;600&display=swap');

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 16px;
  color: #161616;
  background: #fff;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
}

a { color: #164A7D; text-decoration: none; }
a:hover { color: #3E83C7; }

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

/* ============ HEADER / NAV ============ */
header {
  background: #164A7D;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}

.logo span { color: #3E83C7; }

nav ul {
  list-style: none;
  display: flex;
  gap: 8px;
  align-items: center;
}

nav ul li a {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.2s;
  letter-spacing: 0.3px;
}

nav ul li a:hover { background: rgba(255,255,255,0.15); color: #fff; }
nav ul li a.active { background: #3E83C7; }

.nav-cta {
  background: #fff !important;
  color: #164A7D !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: #e3e5e8 !important; }

/* ============ HERO ============ */
.hero {
  background: linear-gradient(rgba(22,74,125,0.75), rgba(22,22,22,0.85)),
              url('https://img1.wsimg.com/isteam/ip/7ee251ec-3732-496c-84e1-b943a4ad663d/20250917_182025425_iOS.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 24px;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-inner { max-width: 760px; }

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.hero h1 span { color: #3E83C7; }

.hero-tagline {
  font-size: 1.15rem;
  color: #cde;
  margin-bottom: 28px;
  font-style: italic;
}

.hero-sub {
  font-size: 1.05rem;
  color: #dde;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: #3E83C7;
  color: #fff;
}
.btn-primary:hover { background: #2d6fad; color: #fff; }

.btn-white {
  background: #fff;
  color: #164A7D;
}
.btn-white:hover { background: #e3e5e8; color: #164A7D; }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline:hover { background: #fff; color: #164A7D; }

/* ============ TRUST BAR ============ */
.trust-bar {
  background: #161616;
  color: #fff;
  padding: 16px 24px;
}

.trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}

.trust-icon { font-size: 1.2rem; color: #3E83C7; }

/* ============ SECTIONS ============ */
.section { padding: 72px 24px; }
.section-light { background: #fff; }
.section-gray { background: #E3E5E8; }
.section-dark { background: #161616; color: #fff; }
.section-blue { background: #164A7D; color: #fff; }

.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #3E83C7;
  margin-bottom: 8px;
}

.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}

.section-dark h2, .section-blue h2 { color: #fff; }
.section-dark .section-label { color: #3E83C7; }
.section-blue .section-label { color: #9cc8f0; }

.section-intro {
  font-size: 1.05rem;
  max-width: 680px;
  margin-bottom: 48px;
  color: #444;
}

.section-dark .section-intro { color: #ccc; }
.section-blue .section-intro { color: #cde; }

/* ============ FEATURE GRID ============ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.feature-card {
  background: #fff;
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  border-top: 3px solid #3E83C7;
}

.section-gray .feature-card { background: #fff; }
.section-dark .feature-card { background: #232323; }
.section-blue .feature-card { background: rgba(255,255,255,0.1); border-top-color: #9cc8f0; }

.feature-icon { font-size: 2rem; margin-bottom: 14px; }

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: #164A7D;
}

.section-dark .feature-card h3 { color: #9cc8f0; }
.section-blue .feature-card h3 { color: #fff; }

.feature-card p { font-size: 0.93rem; color: #555; line-height: 1.6; }
.section-dark .feature-card p { color: #bbb; }
.section-blue .feature-card p { color: #cde; }

/* ============ TWO COLUMN ============ */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.two-col-grid.reverse { direction: rtl; }
.two-col-grid.reverse > * { direction: ltr; }

.two-col-text h2 { margin-bottom: 16px; }
.two-col-text p { margin-bottom: 16px; color: #444; font-size: 1rem; }
.two-col-text ul { padding-left: 20px; margin-bottom: 20px; }
.two-col-text ul li { margin-bottom: 8px; color: #444; font-size: 0.95rem; }

.two-col-img { border-radius: 8px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.12); }
.two-col-img img { width: 100%; height: 340px; object-fit: cover; display: block; }

/* ============ PORTFOLIO CAROUSEL ============ */
.carousel-wrapper {
  position: relative;
  margin-top: 40px;
  padding: 0 36px;
}

.carousel {
  overflow: hidden;
  border-radius: 10px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  flex: 0 0 33.333%;
  padding: 0 8px;
  box-sizing: border-box;
}

.carousel-slide-inner {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
}

.carousel-slide img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.carousel-caption {
  background: #164A7D;
  color: #fff;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(22,74,125,0.9);
  color: #fff;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 3px 14px rgba(0,0,0,0.3);
}

.carousel-btn:hover { background: rgba(22,74,125,1); transform: translateY(-50%) scale(1.1); }
.carousel-btn.prev { left: -24px; }
.carousel-btn.next { right: -24px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 20px 0 0;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.carousel-dot.active { background: #164A7D; }

@media (max-width: 900px) {
  .carousel-slide { flex: 0 0 50%; }
  .carousel-wrapper { padding: 0 30px; }
}

@media (max-width: 600px) {
  .carousel-slide { flex: 0 0 100%; }
  .carousel-slide img { height: 260px; }
  .carousel-btn { width: 48px; height: 48px; font-size: 1.4rem; }
  .carousel-btn.prev { left: -18px; }
  .carousel-btn.next { right: -18px; }
  .carousel-wrapper { padding: 0 24px; }
}

/* ============ FAQ ============ */
.faq-list { max-width: 800px; margin-top: 32px; }

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

.faq-item:first-child { border-top: 1px solid #ddd; }

.faq-question {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #164A7D;
  margin-bottom: 10px;
  cursor: pointer;
}

.faq-answer { font-size: 0.95rem; color: #444; line-height: 1.7; }
.faq-answer p { margin-bottom: 8px; }

/* ============ CTA BANNER ============ */
.cta-banner {
  background: linear-gradient(135deg, #164A7D, #3E83C7);
  color: #fff;
  text-align: center;
  padding: 64px 24px;
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.cta-banner p { font-size: 1.1rem; color: #cde; margin-bottom: 28px; }
.cta-banner .btn { margin: 0 8px; }

/* ============ CONTACT FORM ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.2rem;
  color: #164A7D;
  margin-bottom: 8px;
  margin-top: 24px;
}

.contact-info h3:first-child { margin-top: 0; }

.contact-info p, .contact-info a {
  font-size: 0.95rem;
  color: #444;
}

.contact-info a:hover { color: #164A7D; }

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.95rem;
  color: #161616;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3E83C7;
  box-shadow: 0 0 0 3px rgba(62,131,199,0.15);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #555;
  margin-bottom: 18px;
}

.form-checkbox input { width: auto; margin-top: 3px; }

.form-legal { font-size: 0.78rem; color: #888; margin-top: 8px; }

/* ============ LOCATION PAGES ============ */
.location-hero {
  background: linear-gradient(rgba(22,74,125,0.8), rgba(22,22,22,0.9)),
              url('https://img1.wsimg.com/isteam/ip/7ee251ec-3732-496c-84e1-b943a4ad663d/20250917_182025425_iOS.jpg') center/cover no-repeat;
  color: #fff;
  padding: 80px 24px;
  text-align: center;
}

.location-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; }
.location-hero p { font-size: 1.05rem; color: #cde; max-width: 600px; margin: 0 auto 28px; }

.breadcrumb {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 32px;
}
.breadcrumb a { color: #3E83C7; }

/* ============ FOOTER ============ */
footer {
  background: #161616;
  color: #aaa;
  padding: 48px 24px 24px;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #333;
}

.footer-brand .logo { font-size: 1.1rem; color: #fff; display: block; margin-bottom: 12px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; }

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #aaa; font-size: 0.88rem; }
.footer-col ul li a:hover { color: #3E83C7; }

.footer-contact p { font-size: 0.88rem; margin-bottom: 6px; }
.footer-contact a { color: #3E83C7; }

.footer-social { display: flex; gap: 12px; margin-top: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  background: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  transition: background 0.2s;
}
.footer-social a:hover { background: #3E83C7; color: #fff; }

.footer-bottom {
  max-width: 1100px;
  margin: 20px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom a { color: #aaa; }
.footer-bottom a:hover { color: #3E83C7; }

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .two-col-grid { grid-template-columns: 1fr; gap: 32px; }
  .two-col-grid.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  nav ul { display: none; }
  .trust-bar-inner { gap: 20px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 72px 20px; }
  .section { padding: 48px 20px; }
}

@media print {
  header, footer, .cta-banner { display: none; }
}
