/* ───────────────────────────────
   AutoLocks.ca — Main Stylesheet
   Cohesive layout + responsive header
──────────────────────────────────*/

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

html { scroll-behavior: smooth; }

body {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  background: #fff;
  color: #1c1c1c;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- Brand Colors ---- */
:root {
  --navy: #003b60;
  --gold: #d6a436;
  --light: #f5f7fa;
  --shadow: rgba(0,0,0,0.08);
}

/* ---- Header ---- */
.site-header {
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 4px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Brand section */
.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-text h1 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand-text p {
  font-size: 0.95rem;
  color: #555;
  font-weight: 500;
  line-height: 1.2;
}

.logo-link img {
  height: 55px;
}

/* Navigation */
.site-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.site-nav a {
  text-decoration: none;
  font-weight: 600;
  color: var(--navy);
  transition: 0.3s;
}

.site-nav a:hover {
  color: var(--gold);
}

/* ---- Hero Section ---- */
.hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 5rem 1rem;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 59, 96, 0.55);
  z-index: 0;
}

.hero h1,
.hero p {
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 6px rgba(0,0,0,0.35);
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.hero p {
  margin-top: 1rem;
  font-size: 1.2rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;
}

.btn.primary {
  background: var(--navy);
  color: #fff;
}

.btn.primary:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn.outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
}

.btn.outline:hover {
  background: var(--navy);
  color: #fff;
}

/* ---- Containers ---- */
.container {
  max-width: 1100px;
  margin: 3rem auto;
  padding: 0 1.2rem;
}

.center { text-align: center; }

.lead {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 2rem;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 3rem;
  font-size: 0.95rem;
}

/* ---- Floating Call Button ---- */
.call-now {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: 1.5rem;
  padding: 0.9rem 1.1rem;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: 0.3s;
  z-index: 2000;
}
.call-now:hover {
  background: var(--navy);
  color: #fff;
}

/* ---- Responsive Layout ---- */
@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem;
  }

  .brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }

  .brand-text h1 { font-size: 1.3rem; }
  .brand-text p { font-size: 0.9rem; }

  .site-nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .hero h1 { font-size: 2rem; }
  .btn { padding: 0.7rem 1.4rem; }
}
/* ==== Contact Page Styling ==== */
.contact-page {
  margin-top: 2rem;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem;
  background: #f7f9fb;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-form {
  flex: 1 1 400px;
  max-width: 500px;
}

.contact-info {
  flex: 1 1 250px;
  text-align: center;
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.05);
}

.contact-info h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.contact-info p {
  color: #555;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

/* Form Layout */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group.full {
  grid-column: 1 / 3;
}

label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 600;
  color: #003b60;
}

input, textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s ease-in-out;
}

input:focus, textarea:focus {
  border-color: var(--navy);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0,59,96,0.1);
}

/* Buttons */
.btn.large {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .contact-wrapper {
    padding: 1rem;
  }
  .btn.large {
    width: 100%;
  }
  .contact-info {
    margin-top: 1.5rem;
  }
}/* ==== Locations Page Styling ==== */
.locations-intro {
  margin-top: 2rem;
  text-align: center;
  padding: 0 1rem;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  padding: 1rem 0 3rem;
  text-align: center;
}

.locations-grid a {
  display: block;
  background: #f7f9fb;
  color: var(--navy);
  font-weight: 600;
  padding: 1rem;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid #e0e5e9;
  transition: all 0.25s ease;
}

.locations-grid a:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* Responsive */
@media (max-width: 768px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}.city-content {
  padding: 2rem 1rem 4rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.city-content h2, .city-content h3 {
  color: var(--navy);
  margin-bottom: 1rem;
}

.service-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.service-list li {
  background: #f7f9fb;
  border: 1px solid #e0e5e9;
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  border-radius: 6px;
}

.cta-box {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}