/* ===================================
   Northern Carpentry - Main Stylesheet
   Zoho Sites Compatible (No Build Step)
   =================================== */

/* ---------------
   CSS Variables
   --------------- */
:root {
  --primary-dark: #1a2332;
  --primary-darker: #0f1825;
  --accent-gold: #d4a843;
  --accent-gold-dark: #b8922e;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --mid-gray: #e0e0e0;
  --text-dark: #1a2332;
  --text-medium: #555555;
  --text-light: #888888;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.18);
  --border-radius: 6px;
  --transition: all 0.3s ease;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --max-width: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ---------------
   Utilities
   --------------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding { padding: 90px 0; }
.section-padding-sm { padding: 60px 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-medium);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

.section-title-light { color: var(--white); }
.section-subtitle-light { color: rgba(255, 255, 255, 0.72); }

.text-gold { color: var(--accent-gold); }

/* ---------------
   Buttons
   --------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--border-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
  border-color: var(--accent-gold);
}
.btn-primary:hover {
  background-color: var(--accent-gold-dark);
  border-color: var(--accent-gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background-color: var(--primary-dark);
  color: var(--white);
  border-color: var(--primary-dark);
}
.btn-dark:hover {
  background-color: var(--primary-darker);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---------------
   Menu Overlay
   --------------- */
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.menu-overlay.visible {
  display: block;
  opacity: 1;
}

/* ---------------
   Navigation
   --------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
  padding: 22px 0;
}
.navbar.scrolled {
  background-color: var(--primary-dark);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  padding: 14px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 1;
}
.navbar-brand img {
  display: block;
  max-height: 72px;
  width: auto;
}
/* Fallback text styles (kept for Zoho FACE template compatibility) */
.brand-name {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
}
.brand-tagline {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  padding: 8px 14px;
  border-radius: 4px;
  transition: var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--accent-gold);
}

.nav-cta {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent-gold);
  padding: 9px 20px;
  border: 2px solid var(--accent-gold);
  border-radius: 4px;
  margin-left: 10px;
  transition: var(--transition);
}
.nav-cta:hover {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------
   Hero Section
   --------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--primary-dark);
  overflow: hidden;
}

/* ZOHO: Upload your hero construction photo to Zoho media and replace the URL below */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://sitebuilder-110002338715.zohositescontent.ca/hero-bg.jpg');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.3;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15, 24, 37, 0.95) 0%,
    rgba(15, 24, 37, 0.6) 60%,
    rgba(15, 24, 37, 0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 100px;
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background-color: var(--accent-gold);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(38px, 6.5vw, 72px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 28px;
  letter-spacing: -1px;
}
.hero-title .highlight { color: var(--accent-gold); }

.hero-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}

.hero-divider {
  width: 60px;
  height: 3px;
  background-color: var(--accent-gold);
  margin-bottom: 40px;
  opacity: 0.5;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 900;
  color: var(--accent-gold);
  line-height: 1;
}
.hero-stat-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  margin-top: 5px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero-scroll i { animation: scrollBounce 2s ease infinite; }

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ---------------
   About Preview (Home)
   --------------- */
.about-preview {
  background-color: var(--white);
}
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

/* ZOHO: Replace the placeholder below with your actual company/team photo */
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 280px;
  background-color: var(--mid-gray);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-placeholder img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}
.about-img-placeholder .img-icon {
  font-size: 72px;
  color: rgba(26, 35, 50, 0.15);
}

.about-badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background-color: var(--accent-gold);
  color: var(--primary-dark);
  padding: 28px 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  min-width: 130px;
}
.about-badge-number {
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
}
.about-badge-text {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
  line-height: 1.4;
}

.about-content .section-header {
  text-align: left;
  margin-bottom: 28px;
}
.about-content .section-subtitle {
  margin: 0;
  text-align: left;
}

.about-body {
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.85;
  margin-bottom: 14px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0 36px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}
.about-feature i {
  color: var(--accent-gold);
  font-size: 15px;
  flex-shrink: 0;
}

/* ---------------
   Services Section (Home)
   --------------- */
.services-home {
  background-color: var(--light-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.service-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid transparent;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--accent-gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--accent-gold);
}
.service-card:hover::after { transform: scaleY(1); }

.service-icon {
  width: 66px;
  height: 66px;
  background-color: rgba(212, 168, 67, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background-color: var(--accent-gold);
}
.service-icon i {
  font-size: 28px;
  color: var(--accent-gold);
  transition: var(--transition);
}
.service-card:hover .service-icon i {
  color: var(--primary-dark);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
}
.service-desc {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.75;
  margin-bottom: 24px;
}
.service-link {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.service-link:hover { gap: 14px; }

/* ---------------
   Stats Section
   --------------- */
.stats-section {
  background-color: var(--primary-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 300px;
  height: 300px;
  background-color: rgba(212, 168, 67, 0.04);
  border-radius: 50%;
}

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

.stat-item {
  text-align: center;
  padding: 32px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(44px, 6vw, 68px);
  font-weight: 900;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}
.stat-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
}

/* ---------------
   Testimonials
   --------------- */
.testimonials-section {
  background-color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background-color: var(--light-gray);
  border-radius: 10px;
  padding: 38px 32px;
  position: relative;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-bottom-color: var(--accent-gold);
}

.testimonial-quote-icon {
  font-size: 52px;
  color: var(--accent-gold);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.55;
  display: block;
}

.testimonial-stars {
  color: var(--accent-gold);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.85;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  flex-shrink: 0;
}
.author-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-dark);
}
.author-role {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 2px;
}

/* ---------------
   CTA Banner
   --------------- */
.cta-section {
  background-color: var(--accent-gold);
  padding: 90px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text-block {}
.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.2;
}
.cta-subtitle {
  font-size: 17px;
  color: rgba(26, 35, 50, 0.7);
  margin-top: 10px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ---------------
   Footer
   --------------- */
.footer {
  background-color: var(--primary-darker);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand img {
  display: block;
  max-height: 48px;
  width: auto;
}
.footer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.85;
  margin: 18px 0 28px;
}

.social-links {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  transition: var(--transition);
}
.social-link:hover {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-link i { font-size: 10px; color: var(--accent-gold); }
.footer-link:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.footer-contact-item i {
  color: var(--accent-gold);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
}
.footer-contact-item span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}
.footer-contact-item a {
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}
.footer-contact-item a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}
.footer-legal a:hover { color: var(--accent-gold); }

/* ---------------
   Page Hero (Inner Pages)
   --------------- */
.page-hero {
  background-color: var(--primary-dark);
  padding: 170px 0 90px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.06) 0%, transparent 55%);
}
.page-hero-content { position: relative; z-index: 1; }

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.page-hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.68);
  max-width: 540px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.45);
}
.breadcrumb a { color: var(--accent-gold); }
.breadcrumb .sep { color: rgba(255, 255, 255, 0.25); }

/* ---------------
   Services Detail Page
   --------------- */
.service-detail-section {
  padding: 100px 0;
}
.service-detail-section:nth-child(even) {
  background-color: var(--light-gray);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }

/* ZOHO: Replace .service-img-box with your actual service photos */
.service-img-box {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 280px;
  background-color: var(--mid-gray);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-img-box img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}
.service-img-box .img-placeholder-icon {
  font-size: 80px;
  color: rgba(26, 35, 50, 0.12);
}

.service-detail-icon {
  width: 74px;
  height: 74px;
  background-color: rgba(212, 168, 67, 0.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-detail-icon i {
  font-size: 32px;
  color: var(--accent-gold);
}

.service-detail-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.2;
  margin-bottom: 18px;
}
.service-detail-text {
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.85;
  margin-bottom: 14px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 26px 0 36px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-dark);
}
.feature-item i {
  color: var(--accent-gold);
  font-size: 15px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ---------------
   About Page
   --------------- */
.about-story-section {
  background-color: var(--white);
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-section { background-color: var(--light-gray); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.why-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 38px 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 62px;
  height: 62px;
  background-color: rgba(212, 168, 67, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.why-icon i {
  font-size: 26px;
  color: var(--accent-gold);
}
.why-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
}
.why-text {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.75;
}

.team-section { background-color: var(--white); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.team-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* ZOHO: Replace .team-photo with actual team member photos */
.team-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-color: var(--mid-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-photo .photo-icon {
  font-size: 72px;
  color: rgba(26, 35, 50, 0.15);
}

.team-info { padding: 24px 20px; }
.team-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 4px;
}
.team-role {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-gold);
}

/* ---------------
   Contact Page
   --------------- */
.contact-section {
  background-color: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 44px;
}
.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 54px;
  height: 54px;
  background-color: rgba(212, 168, 67, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon i {
  font-size: 22px;
  color: var(--accent-gold);
}
.contact-info-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}
.contact-info-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1.5;
}
.contact-info-value a {
  color: var(--primary-dark);
  transition: var(--transition);
}
.contact-info-value a:hover { color: var(--accent-gold); }

.hours-box {
  background-color: var(--light-gray);
  border-radius: 10px;
  padding: 30px 28px;
}
.hours-heading {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hours-heading i { color: var(--accent-gold); }
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--mid-gray);
}
.hours-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.hours-day { color: var(--text-medium); font-weight: 500; }
.hours-time { color: var(--primary-dark); font-weight: 700; font-family: var(--font-heading); font-size: 13px; }
.hours-closed .hours-time { color: var(--text-light); }

/* Contact Form */
.contact-form-box {
  background-color: var(--light-gray);
  border-radius: 14px;
  padding: 52px 44px;
}

.form-box-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 6px;
}
.form-box-subtitle {
  font-size: 15px;
  color: var(--text-medium);
  margin-bottom: 36px;
  line-height: 1.6;
}

/* ZOHO: Replace the entire .contact-form with a Zoho Forms embed widget */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dark);
}
.form-label .req { color: var(--accent-gold); margin-left: 2px; }

.form-input,
.form-textarea,
.form-select {
  padding: 14px 18px;
  border: 2px solid var(--mid-gray);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  background-color: var(--white);
  outline: none;
  transition: var(--transition);
  width: 100%;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.15);
}
.form-input.error,
.form-textarea.error { border-color: #e74c3c; }

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

.form-error {
  font-size: 12px;
  color: #e74c3c;
  display: none;
}
.form-error.show { display: block; }

.form-success {
  display: none;
  text-align: center;
  padding: 28px;
  background-color: rgba(39, 174, 96, 0.08);
  border: 2px solid #27ae60;
  border-radius: 10px;
  color: #27ae60;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
}
.form-success.show { display: block; }

.map-section {
  background-color: var(--light-gray);
  padding: 0 0 90px;
}
/* ZOHO: Replace .map-embed with a real Google Maps iframe */
.map-embed {
  width: 100%;
  height: 420px;
  background-color: var(--mid-gray);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  color: var(--text-light);
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.map-placeholder-text {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ---------------
   Scroll Reveal
   --------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---------------
   Responsive — Tablet (max 1024px)
   --------------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
  .about-preview-grid,
  .about-story-grid { grid-template-columns: 1fr; gap: 52px; }
  .about-badge { right: 0; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 52px; }
  .service-detail-grid.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; gap: 52px; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------------
   Responsive — Mobile (max 768px)
   --------------- */
@media (max-width: 768px) {
  /* Disable scroll-reveal animations on mobile — prevents images staying invisible */
  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .section-padding { padding: 64px 0; }

  .hamburger { display: flex; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 290px;
    height: 100vh;
    background-color: var(--primary-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 48px;
    gap: 0;
    transition: right 0.35s ease;
    box-shadow: -12px 0 48px rgba(0, 0, 0, 0.4);
    z-index: 999;
    overflow-y: auto;
  }
  .nav-menu.open { right: 0; }

  .nav-link {
    font-size: 14px;
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 0;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
    text-align: center;
    display: block;
    padding: 14px;
  }

  .hero-title { letter-spacing: -0.5px; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 28px; }

  .stats-grid { grid-template-columns: 1fr; }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 28px;
  }
  .stat-item:last-child { border-bottom: none; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-buttons { justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .about-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-box { padding: 36px 24px; }

  .page-hero { padding: 140px 0 70px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn { padding: 13px 26px; font-size: 12px; }
}
