/* ============================================================
   Cannon Janitorial Service — Main Stylesheet
   Compatible: Dreamweaver CC / cPanel Static Hosting
   ============================================================ */

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

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --navy:     #0a1628;
  --blue:     #1a3a6b;
  --gold:     #c9951a;
  --gold-lt:  #e8b84b;
  --white:    #ffffff;
  --off-white:#f4f6fa;
  --gray:     #6b7280;
  --light-gray:#e5e8ef;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --shadow:   0 4px 24px rgba(10,22,40,0.13);
  --radius:   6px;
  --transition: 0.3s ease;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a  { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-lt); }

h1,h2,h3,h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.container {
  width: 90%;
  max-width: 1120px;
  margin: 0 auto;
}

/* ── Top Bar ──────────────────────────────────────────────── */
.top-bar {
  background: var(--navy);
  color: var(--off-white);
  font-size: 0.85rem;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: var(--gold-lt); }
.top-bar span { margin: 0 12px 0 0; }

/* ── Header / Nav ─────────────────────────────────────────── */
header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(10,22,40,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-icon {
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 32px; height: 32px; fill: var(--gold); }

.logo-text .brand {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: 0.04em;
}
.logo-text .tagline {
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 6px;
}
nav ul li a {
  display: block;
  padding: 8px 16px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--navy);
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
nav ul li a:hover,
nav ul li a.active {
  background: var(--navy);
  color: var(--gold);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 8px 20px !important;
}
.nav-cta:hover {
  background: var(--gold-lt) !important;
  color: var(--navy) !important;
}

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

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, #1e4d8c 100%);
  color: var(--white);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  color: var(--navy);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.stat-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  backdrop-filter: blur(4px);
}
.stat-card .number {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card .label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Trust Bar ────────────────────────────────────────────── */
.trust-bar {
  background: var(--navy);
  padding: 18px 0;
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-family: var(--font-head);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.trust-item svg { width: 22px; height: 22px; fill: var(--gold); flex-shrink: 0; }

/* ── Section Base ─────────────────────────────────────────── */
section { padding: 80px 0; }
.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.section-title span { color: var(--gold); }
.section-desc {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
}
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }

/* ── Services Grid ────────────────────────────────────────── */
.services-section { background: var(--off-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border-bottom: 4px solid transparent;
  box-shadow: var(--shadow);
  transition: border-color var(--transition), transform var(--transition);
}
.service-card:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-4px);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 26px; height: 26px; fill: var(--gold); }
.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.service-card p { font-size: 0.95rem; color: var(--gray); }

/* ── About Strip ──────────────────────────────────────────── */
.about-section {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-visual {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: var(--radius);
  padding: 50px 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.about-visual::after {
  content: '"';
  position: absolute;
  bottom: -20px;
  right: 20px;
  font-size: 200px;
  font-family: Georgia, serif;
  color: rgba(255,255,255,0.05);
  line-height: 1;
}
.about-visual blockquote {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.about-visual cite {
  font-family: var(--font-head);
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-style: normal;
}

.cert-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.badge {
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 2px;
}

.experience-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.exp-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.exp-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}
.exp-item span { font-size: 0.95rem; color: var(--navy); }

/* ── Why Choose Us ────────────────────────────────────────── */
.why-section { background: var(--navy); }
.why-section .section-title { color: var(--white); }
.why-section .section-desc { color: rgba(255,255,255,0.65); }
.why-section .section-label { color: var(--gold); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.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;
  text-align: center;
}
.why-card svg {
  width: 40px;
  height: 40px;
  fill: var(--gold);
  margin: 0 auto 18px;
  display: block;
}
.why-card h3 {
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.why-card p { font-size: 0.88rem; color: rgba(255,255,255,0.6); }

/* ── Clients ──────────────────────────────────────────────── */
.clients-section { background: var(--off-white); }
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.client-chip {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(10,22,40,0.05);
}

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  padding: 70px 0;
  text-align: center;
}
.cta-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.cta-section p {
  color: rgba(10,22,40,0.7);
  font-size: 1.1rem;
  margin-bottom: 34px;
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-dark:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

/* ── Contact Section ──────────────────────────────────────── */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-item svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-item h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 2px;
}
.contact-item p { font-size: 1rem; color: var(--navy); }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy);
  outline: none;
  transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 130px; }

/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-brand .brand {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-lt); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom .mbe-tag {
  background: rgba(201,149,26,0.15);
  border: 1px solid rgba(201,149,26,0.4);
  color: var(--gold-lt);
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }

  .hero-stats { grid-template-columns: repeat(3, 1fr); }

  nav ul { display: none; }
  nav ul.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 16px; box-shadow: var(--shadow); gap: 4px; }
  header { position: relative; }
  .hamburger { display: flex; }
}

@media (max-width: 540px) {
  .hero-stats { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-bar .container { gap: 20px; }
}
