:root{
  --blue-bg:#e6f3ff;
  --blue-hero1:#0b3e9b;
  --blue-hero2:#0b56c0;
  --accent-yellow:#ffd200;
  --accent-green:#19b45a;
  --dark:#000000;
  --text:#0b2348;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:var(--blue-bg);
}
a{color:inherit;text-decoration:none}

/* CONTAINER */
.container{
  max-width:1160px;
  margin:0 auto;
  padding:0 20px;
}

/* HEADER (BLACK) */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:#000000ee;
  color:#fff;
  backdrop-filter:saturate(180%) blur(5px);
}
.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:.04em;
}
.brand img{height:38px;width:auto}
.nav{display:flex;gap:18px}
.nav a{
  padding:8px 10px;
  border-radius:10px;
  font-weight:600;
  color:#f5f5f5;
}
.nav a:hover{background:#202531}
.menu-btn{
  display:none;
  background:#202531;
  color:#fff;
  border:1px solid #353b4b;
  padding:6px 10px;
  border-radius:8px;

  /* ✅ helps tap/click reliability */
  cursor:pointer;
}

/* HERO (HOME) */
.hero{
  background:linear-gradient(135deg,var(--blue-hero1),var(--blue-hero2));
  color:#fff;
  padding:60px 0 40px;
}

/* text on top, car below */
.hero-main{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.hero-text{
  text-align:left;
}
.hero-text h1{
  margin:0 0 8px;
  font-size:40px;
  line-height:1.1;
}
.hero-text p{
  margin:0 0 10px;
  opacity:.96;
}
.hero-tag{
  font-size:14px;
  margin-bottom:6px;
  opacity:.9;
}
.hero-actions{
  margin-top:14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* BUTTONS */
.btn-yellow{
  display:inline-block;
  padding:10px 18px;
  border-radius:999px;
  background:var(--accent-yellow);
  color:#222;
  font-weight:700;
}
.btn-book-big{
  display:inline-block;
  padding:14px 26px;
  background:var(--accent-green);
  color:#fff;
  border-radius:999px;
  font-size:18px;
  font-weight:800;
  box-shadow:0 12px 26px rgba(0,0,0,.25);
}
.btn-book-big:hover{filter:brightness(1.06)}

/* CAR IMAGE */
.hero-car{
  text-align:center;
  margin-top:10px;
}
.hero-car img{
  width:68%;
  max-width:720px;
  min-width:320px;
  height:auto;
  filter:drop-shadow(0 10px 18px rgba(0,0,0,.35));
}

/* GENERAL SECTIONS */
.section{
  padding:40px 0;
}
.section h2{
  margin:0 0 10px;
  color:#0b2a5a;
}

/* CARDS & LISTS */
.card{
  background:#fff;
  border-radius:18px;
  border:1px solid #dde6f7;
  box-shadow:0 12px 30px rgba(0,0,0,.06);
  padding:20px;
}
.list{
  margin:0;
  line-height:1.8;
}
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.cards .card h3{
  margin:4px 0 8px;
  color:#0b326f;
}
.price{
  font-weight:800;
  color:#0b56c0;
}

/* CHIPS / QUICK LINKS */
.chips{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:14px 0 6px;
}
.chip{
  background:#fff;
  border-radius:999px;
  padding:10px 16px;
  border:1px solid #dde6f7;
  font-weight:700;
}
.chip:hover{box-shadow:0 8px 20px rgba(20,60,120,.12)}

/* SUB HERO (SERVICES / CONTACT / REVIEWS) */
.sub-hero{
  background:linear-gradient(135deg,#0b3e9b,#0b56c0);
  color:#fff;
  padding:44px 0;
  text-align:center;
}
.sub-hero h1{margin:0 0 6px}
.sub-hero p{margin:0}

/* ORANGE BOOK PAGE */
.book-orange{
  background:#417af5;
  color:#fff;
  text-align:center;
  padding:60px 0 80px;
}
.book-orange h1{
  margin:0 0 8px;
  font-size:32px;
  letter-spacing:.06em;
}
.book-subtitle{
  margin:0 0 24px;
  font-size:14px;
  text-transform:uppercase;
}
.book-form-wrapper{
  max-width:520px;
  margin:0 auto;
}
.book-form-wrapper form{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.book-form-wrapper select,
.book-form-wrapper input,
.book-form-wrapper textarea{
  width:100%;
  padding:12px;
  border-radius:4px;
  border:1px solid #d3dff5;
  font-size:15px;
}
.book-submit{
  margin-top:4px;
  background:#19b45a;
  color:#fff;
  border:0;
  padding:12px 16px;
  border-radius:4px;
  font-weight:700;
  cursor:pointer;
}
.book-submit:hover{filter:brightness(1.05)}

/* FORMS (CONTACT SHARED) */
.form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.form .full{grid-column:1/-1;}
input,select,textarea{
  font-family:inherit;
}

/* CONTACT PAGE (UPDATED TO MATCH OTHER HERO SECTIONS) */
.contact-hero{
  background: linear-gradient(135deg,var(--blue-hero1),var(--blue-hero2));
  color:#fff;
  padding:44px 0;
  text-align:center;
}
.contact-hero h1{
  margin:0 0 6px;
  color:#fff;
}
.contact-hero p{
  margin:0;
  color:#eaf2ff;
}

/* Info cards */
.contact-info-section{
  padding:10px 0 30px;
}
.info-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.info-card{
  background:#ffffff;
  border-radius:18px;
  padding:18px 16px;
  box-shadow:0 10px 20px rgba(0,0,0,.06);
  text-align:center;
}
.info-card h3{
  margin:10px 0 4px;
  font-size:15px;
  color:#e63939;
}
.info-card p{
  margin:0;
  font-size:14px;
}
.info-icon{
  width:42px;
  height:42px;
  border-radius:50%;
  display:grid;
  place-items:center;
  margin:0 auto;
  background:#ffe3e3;
  color:#e63939;
  font-size:22px;
}

/* Form + map */
.contact-main-section{
  padding:0 0 40px;
}
.contact-grid{
  display:grid;
  grid-template-columns:1.1fr 1.1fr;
  gap:20px;
}
.contact-form-card h2,
.contact-map-card h2{
  margin-top:0;
  margin-bottom:12px;
}
.contact-form{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.contact-form label span{
  display:block;
  font-size:13px;
  margin-bottom:3px;
}
.contact-form input,
.contact-form textarea{
  width:100%;
  padding:10px 12px;
  border-radius:8px;
  border:1px solid #d3dff5;
  font-size:14px;
}
.contact-form .two-inputs{
  display:flex;
  gap:10px;
}
.contact-submit{
  margin-top:6px;
  align-self:flex-start;
}
.contact-map-card{
  display:flex;
  flex-direction:column;
}
.map-wrapper{
  flex:1;
  min-height:260px;
  border-radius:12px;
  overflow:hidden;
}

/* FOOTER (BLACK) */
footer{
  background:#000;
  color:#f1f1f1;
  margin-top:40px;
}
.footer-main{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:16px;
  padding:18px 20px;
}
.footer-col h4{
  margin:0 0 4px;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.footer-col p{margin:0;font-size:14px}
.footer-logos{
  display:flex;
  align-items:center;
  gap:18px;
}
.footer-logos img{
  height:36px;
  width:auto;
  object-fit:contain;
}
footer a{text-decoration:underline;color:#c8d4ff}
.footer-bottom{
  border-top:1px solid #1c2230;
  font-size:13px;
  text-align:center;
  padding:10px 0;
}

/* WHATSAPP FLOATING BUTTON */
.whatsapp{
  position:fixed;
  right:18px;
  bottom:18px;
  height:54px;
  width:54px;
  border-radius:50%;
  background:#25D366;
  display:grid;
  place-items:center;
  box-shadow:0 12px 26px rgba(0,0,0,.25);
  z-index:80;
}
.whatsapp svg{
  height:26px;
  width:26px;
  fill:#fff;
}

/* RESPONSIVE */
@media (max-width:900px){
  .hero-main{
    align-items:center;
    text-align:center;
  }
  .hero-text{text-align:center;}
  .hero-car img{
    width:90%;
    max-width:420px;
  }
  .cards{grid-template-columns:1fr}
  .form{grid-template-columns:1fr}
  .info-cards{grid-template-columns:1fr;}
  .contact-grid{grid-template-columns:1fr;}
  .contact-form .two-inputs{flex-direction:column;}

  /* show hamburger */
  .menu-btn{display:block}

  /* ✅ Mobile menu drawer */
  .nav{
    display:none;
    flex-direction:column;
    position:absolute;
    right:20px;
    top:60px;
    background:#000;
    border-radius:12px;
    padding:10px;

    /* ✅ MOBILE CLICK FIX: keep nav above content */
    z-index:100;
  }
  .nav.show{display:flex}

  /* ✅ MOBILE CLICK FIX: keep button above layers */
  .menu-btn{
    position:relative;
    z-index:101;
  }
}

/* === Footer Base === */
.site-footer {
  background: #000;
  color: #fff;
  padding: 45px 20px 15px;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

/* Each column */
.footer-column {
  flex: 1;
  min-width: 220px;
}

/* 1️⃣ Aqua logo + tagline */
.footer-left {
  text-align: left;
}
.footer-logo {
  max-width: 100px;
  margin-bottom: 10px;
}
.footer-school {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}
.footer-tagline {
  font-size: 15px;
  line-height: 1.4;
  color: #ddd;
}

/* 2️⃣ Address */
.footer-address h4 {
  color: #ffb100;
  margin-bottom: 10px;
}
.footer-address p {
  margin: 4px 0;
  font-size: 15px;
}

/* 3️⃣ Terms + Social */
.footer-terms {
  text-align: center;
}
.footer-link {
  color: #fff;
  text-decoration: underline;
  display: inline-block;
  margin-bottom: 12px;
}
.footer-link:hover {
  color: #ffb100;
}
.social-title {
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 500;
}
.footer-social a {
  font-size: 22px;
  margin-right: 12px;
  text-decoration: none;
}
.footer-social .fa-facebook-f {
  color: #1877F2;
}
.footer-social .fa-instagram {
  color: #E4405F;
}

/* 4️⃣ RSA / ADI logo column */
.footer-rsa {
  text-align: center;
}
.footer-rsa-logo {
  max-width: 110px;
  height: auto;
  filter: none;
  margin-top: 0;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #ccc;
  border-top: 1px solid #222;
  padding-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }
  .footer-left, .footer-address, .footer-terms, .footer-rsa {
    text-align: center;
  }
  .footer-social a {
    margin-right: 8px;
  }
}

/* Fix uneven vertical alignment of footer columns */
.footer-address h4 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #ffb100;
}

.footer-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* === Top Contact Bar under header === */
.top-contact-bar {
  background: #f2f2f2;
  border-bottom: 1px solid #ddd;
  font-size: 15px;
  color: #222;
}

.contact-bar-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 6px 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-item i {
  color: #007bff;
  font-size: 16px;
}

.contact-item a {
  color: #222;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-item a:hover {
  color: #007bff;
}
