/* ============================================================
   Corinthian's Cleaning LLC — Main Stylesheet
   Colors: Navy #1B2A4A | Gold #C9A84C | White #FFFFFF | Light Gray #F5F5F5
   ============================================================ */

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

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

body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: #1B2A4A;
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.3rem; }
p  { font-size: 1rem; }

.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-subtitle {
  text-align: center;
  color: #666;
  max-width: 640px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}
.gold-line {
  display: block;
  width: 60px;
  height: 3px;
  background: #C9A84C;
  margin: 0.6rem auto 1rem;
  border-radius: 2px;
}

/* ---------- Utilities ---------- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: #C9A84C;
  color: #1B2A4A;
}
.btn-primary:hover { background: #b8923c; color: #fff; }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #C9A84C;
}
.btn-outline:hover { background: #C9A84C; color: #1B2A4A; }

.btn-navy {
  background: #1B2A4A;
  color: #fff;
}
.btn-navy:hover { background: #243660; }

section { padding: 5rem 0; }
.bg-light { background: #F5F5F5; }
.bg-navy  { background: #1B2A4A; color: #fff; }
.bg-navy h2, .bg-navy h3, .bg-navy p { color: #fff; }

/* ---------- Navigation ---------- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(27, 42, 74, 0.97);
  backdrop-filter: blur(6px);
  transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.25); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
}

.nav-logo img { height: 56px; width: auto; }

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: #C9A84C;
  transition: width 0.25s;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: 1rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile nav */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #1B2A4A;
  padding: 1rem 1.5rem 1.5rem;
}
.mobile-menu a {
  color: #fff;
  padding: 0.65rem 0;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: flex; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/hero_banner.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 1.5rem;
  margin: 0 auto;
  text-align: center;
}
.hero-content h1 { color: #fff; margin-bottom: 1.2rem; }
.hero-content p  { color: rgba(255,255,255,0.88); font-size: 1.15rem; margin-bottom: 2rem; }
.hero-badge {
  display: inline-block;
  background: #C9A84C;
  color: #1B2A4A;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.2rem;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: #C9A84C;
  padding: 1.2rem 0;
}
.trust-bar .container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #1B2A4A;
  font-weight: 700;
  font-size: 0.92rem;
}
.trust-item svg { flex-shrink: 0; }

/* ---------- Services Overview (Home) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.service-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 10px 30px rgba(0,0,0,0.13); }
.service-card img { width: 100%; height: 220px; object-fit: cover; }
.service-card-body { padding: 1.4rem; }
.service-card-body h3 { margin-bottom: 0.5rem; color: #1B2A4A; }
.service-card-body p  { color: #555; font-size: 0.95rem; margin-bottom: 1rem; }
.service-card-body a  { color: #C9A84C; font-weight: 700; font-size: 0.9rem; }
.service-card-body a:hover { text-decoration: underline; }

/* ---------- Why Choose Us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}
.why-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.3);
}
.why-card .icon {
  width: 60px; height: 60px;
  background: #C9A84C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.why-card h3 { color: #fff; margin-bottom: 0.5rem; }
.why-card p  { color: rgba(255,255,255,0.78); font-size: 0.93rem; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, #1B2A4A 0%, #243660 100%);
  padding: 4rem 0;
  text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 0.8rem; }
.cta-banner p  { color: rgba(255,255,255,0.8); margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ---------- About Page ---------- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-intro img {
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.about-intro .text h2 { margin-bottom: 1rem; }
.about-intro .text p  { margin-bottom: 1rem; color: #555; }
.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.value-icon {
  width: 44px; height: 44px;
  background: #C9A84C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.value-item h4 { color: #1B2A4A; margin-bottom: 0.25rem; }
.value-item p  { font-size: 0.9rem; color: #666; }

.scripture-block {
  background: #1B2A4A;
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 8px;
  margin: 3rem 0;
}
.scripture-block blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: #C9A84C;
  max-width: 700px;
  margin: 0 auto 1rem;
  line-height: 1.5;
}
.scripture-block cite { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* ---------- Services Page ---------- */
.services-detail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
}
.service-detail-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.09);
  background: #fff;
  transition: transform 0.25s;
}
.service-detail-card:hover { transform: translateY(-5px); }
.service-detail-card img { width: 100%; height: 240px; object-fit: cover; }
.service-detail-body { padding: 1.6rem; }
.service-detail-body h3 {
  color: #1B2A4A;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.service-detail-body h3 .svc-icon {
  width: 32px; height: 32px;
  background: #C9A84C;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-detail-body p { color: #555; font-size: 0.95rem; margin-bottom: 1rem; }
.service-detail-body ul { padding-left: 0; }
.service-detail-body ul li {
  padding: 0.3rem 0 0.3rem 1.4rem;
  position: relative;
  font-size: 0.92rem;
  color: #555;
}
.service-detail-body ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C9A84C;
  font-weight: 700;
}

/* ---------- Contact / Quote Form ---------- */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p  { color: #555; margin-bottom: 2rem; }
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-detail .ci-icon {
  width: 44px; height: 44px;
  background: #1B2A4A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail .ci-icon svg { color: #C9A84C; }
.contact-detail h4 { color: #1B2A4A; margin-bottom: 0.2rem; font-size: 0.95rem; }
.contact-detail p  { color: #555; font-size: 0.92rem; margin: 0; }
.contact-detail a  { color: #1B2A4A; font-weight: 600; }
.contact-detail a:hover { color: #C9A84C; }

.quote-form {
  background: #fff;
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.1);
}
.quote-form h3 {
  margin-bottom: 1.5rem;
  color: #1B2A4A;
  font-size: 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1B2A4A;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: 5px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #333;
  background: #fafafa;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #C9A84C; background: #fff; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; padding: 1rem; font-size: 1rem; }

.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
  padding: 1rem 1.5rem;
  border-radius: 6px;
  margin-top: 1rem;
  font-weight: 600;
  text-align: center;
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, #1B2A4A 0%, #243660 100%);
  padding: 8rem 0 4rem;
  text-align: center;
}
.page-hero h1 { color: #fff; }
.page-hero p  { color: rgba(255,255,255,0.75); margin-top: 0.75rem; font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: #C9A84C; }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ---------- Footer ---------- */
footer {
  background: #111c30;
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand img { height: 60px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer-col h4 {
  color: #C9A84C;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #C9A84C; }
.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  font-size: 0.9rem;
  align-items: flex-start;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.7); }
.footer-contact-item a:hover { color: #C9A84C; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: #C9A84C; }

/* ---------- Scripture Banner ---------- */
.scripture-banner {
  background: #1B2A4A;
  padding: 2rem 0;
  border-bottom: 3px solid #C9A84C;
}
.scripture-banner .container {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
}
.scripture-fish {
  height: 64px;
  width: auto;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.scripture-text {
  max-width: 760px;
}
.scripture-text p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: #fff;
  line-height: 1.6;
  margin-bottom: 0.35rem;
}
.scripture-text span {
  font-size: 0.85rem;
  color: #C9A84C;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* ---------- Footer Scripture ---------- */
.footer-scripture {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.footer-fish {
  height: 32px;
  width: auto;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.55;
}
.footer-scripture p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.footer-scripture p span {
  color: #C9A84C;
  font-style: normal;
  font-size: 0.78rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-intro { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  section { padding: 3.5rem 0; }
  .form-row { grid-template-columns: 1fr; }
  .scripture-banner .container { flex-direction: column; text-align: center; gap: 1rem; }
  .scripture-fish { height: 44px; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .trust-bar .container { gap: 1.5rem; }
}
