/* ===================================
   AJ's Handyman Services LLC
   Main Stylesheet
   =================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --primary: #1a3a5c;       /* Deep navy blue */
  --accent: #e8730a;        /* Warm orange */
  --accent-dark: #c45e00;
  --light-bg: #f5f7fa;
  --white: #ffffff;
  --dark-text: #1c1c1c;
  --mid-text: #4a4a4a;
  --light-text: #7a7a7a;
  --border: #dce3ec;
  --shadow: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --radius: 10px;
  --radius-lg: 18px;
  --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; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-dark); }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--primary);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p { margin-bottom: 1rem; color: var(--mid-text); }
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* --- Layout Utilities --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-alt { background: var(--light-bg); }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-white h1, .text-white h2, .text-white h3, .text-white p { color: var(--white); }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,115,10,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}
.btn-secondary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-secondary:hover {
  background: #0f2640;
  border-color: #0f2640;
  color: var(--white);
  transform: translateY(-2px);
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(26, 58, 92, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  transition: var(--transition);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.navbar-brand .brand-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  font-weight: 800;
  font-family: var(--font-heading);
}
.navbar-brand .brand-text {
  display: flex;
  flex-direction: column;
}
.navbar-brand .brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.1;
}
.navbar-brand .brand-tagline {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  transition: var(--transition);
  letter-spacing: 0.03em;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}
.nav-links .nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  margin-left: 0.5rem;
}
.nav-links .nav-cta:hover {
  background: var(--accent-dark);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0d2137 0%, #1a3a5c 50%, #1e4a72 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-handyman.jpg') center/cover no-repeat;
  opacity: 0.12;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(232,115,10,0.15) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 1.5rem;
}
.hero-content { }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232,115,10,0.2);
  border: 1px solid rgba(232,115,10,0.4);
  color: #f5a050;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-badge::before { content: '★'; font-size: 0.9rem; }
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}
.hero h1 span { color: var(--accent); }
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-stat { }
.hero-stat .stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.hero-stat .stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-image-block {
  position: relative;
}
.hero-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-image-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.hero-floating-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--accent);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.3;
}
.hero-floating-badge strong { display: block; font-size: 1.3rem; }

/* ===================================
   SERVICE AREA BANNER
   =================================== */
.service-area-banner {
  background: var(--accent);
  padding: 1rem 0;
  text-align: center;
}
.service-area-banner p {
  color: white;
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
}
.service-area-banner span { font-weight: 800; }

/* ===================================
   TRUST BADGES
   =================================== */
.trust-section {
  padding: 3rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.trust-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.trust-icon {
  width: 48px;
  height: 48px;
  background: rgba(232,115,10,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.trust-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--primary);
}
.trust-text span {
  font-size: 0.78rem;
  color: var(--light-text);
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
  transform: scaleY(0);
  transition: var(--transition);
  transform-origin: bottom;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleY(1); }
.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(232,115,10,0.15), rgba(232,115,10,0.05));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
}
.service-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}
.service-card p { font-size: 0.92rem; margin-bottom: 0; }

/* Facility maintenance special card */
.facility-section {
  background: linear-gradient(135deg, var(--primary) 0%, #0d2137 100%);
  padding: 5rem 0;
}
.facility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.facility-content h2 { color: var(--white); }
.facility-content p { color: rgba(255,255,255,0.8); }
.facility-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}
.facility-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
}
.facility-feature .feat-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.facility-feature strong {
  display: block;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  margin-bottom: 0.2rem;
}
.facility-feature span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}
.facility-image-block {
  position: relative;
}
.facility-image-block img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 400px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.facility-badge {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  background: var(--accent);
  color: white;
  padding: 1.25rem;
  border-radius: var(--radius);
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  box-shadow: var(--shadow);
  line-height: 1.3;
}
.facility-badge strong { display: block; font-size: 1.4rem; }

/* ===================================
   ABOUT SECTION
   =================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}
.about-image-block { position: relative; }
.about-image-block img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-accent-box {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--primary);
  color: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  font-family: var(--font-heading);
  max-width: 180px;
}
.about-accent-box strong {
  display: block;
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
}
.about-accent-box span { font-size: 0.8rem; color: rgba(255,255,255,0.75); }
.about-content blockquote {
  border-left: 4px solid var(--accent);
  padding: 1rem 1.5rem;
  background: rgba(232,115,10,0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--primary);
}

/* ===================================
   WHY I STARTED
   =================================== */
.why-section {
  background: var(--light-bg);
}
.why-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-content { }
.why-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.why-pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.why-pillar .pillar-num {
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.why-pillar strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--primary);
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}
.why-pillar p { margin: 0; font-size: 0.88rem; }
.why-image-block img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonials-section { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: var(--accent);
}
.testimonial-stars {
  color: #f5a020;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}
.testimonial-text {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--mid-text);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}
.avatar-blue { background: var(--primary); }
.avatar-orange { background: var(--accent); }
.avatar-green { background: #2a7a4b; }
.author-info strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--primary);
}
.author-info span { font-size: 0.78rem; color: var(--light-text); }
.testimonial-quote-mark {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 4rem;
  color: rgba(232,115,10,0.12);
  font-family: Georgia, serif;
  line-height: 1;
}

/* ===================================
   GALLERY SECTION
   =================================== */
.gallery-section { background: var(--light-bg); }
.gallery-intro {
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--primary);
}
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  min-height: 220px;
}
.gallery-item.large img { min-height: 460px; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,58,92,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: white;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
}
.gallery-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8f0f8, #d0dce8);
  min-height: 220px;
  border-radius: var(--radius);
  border: 2px dashed var(--border);
  padding: 2rem;
  text-align: center;
  color: var(--light-text);
}
.gallery-placeholder .ph-icon { font-size: 2.5rem; margin-bottom: 0.75rem; opacity: 0.5; }
.gallery-placeholder p { font-size: 0.85rem; margin: 0; }
.gallery-upload-note {
  text-align: center;
  margin-top: 2rem;
  padding: 1.25rem;
  background: rgba(232,115,10,0.08);
  border-radius: var(--radius);
  border: 1px dashed var(--accent);
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ===================================
   SCHEDULING SECTION
   =================================== */
.scheduling-section {
  background: linear-gradient(135deg, var(--primary) 0%, #0d2137 100%);
  padding: 5rem 0;
}
.scheduling-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.scheduling-content h2 { color: var(--white); }
.scheduling-content p { color: rgba(255,255,255,0.8); }
.scheduling-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 1.5rem 0;
}
.scheduling-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.step-num {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.88rem;
  flex-shrink: 0;
}
.step-text strong {
  display: block;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  margin-bottom: 0.2rem;
}
.step-text span { font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.calendar-embed-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}
.calendar-icon-large {
  font-size: 4rem;
  margin-bottom: 1rem;
}
.calendar-embed-box h3 { color: var(--white); margin-bottom: 0.75rem; }
.calendar-embed-box p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 1.5rem; }
.calendar-placeholder-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 1rem;
  font-style: italic;
}

/* ===================================
   SERVICE AREA MAP
   =================================== */
.service-area-section { background: var(--white); }
.service-area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 380px;
  background: var(--light-bg);
  border: 1px solid var(--border);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.service-cities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.city-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: var(--light-bg);
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--mid-text);
  font-family: var(--font-heading);
  font-weight: 600;
  border: 1px solid var(--border);
}
.city-tag::before { content: '📍'; font-size: 0.75rem; }

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-section { background: var(--light-bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}
.contact-info { }
.contact-info h2 { margin-bottom: 1rem; }
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.contact-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(232,115,10,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-card-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--light-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}
.contact-card-text a, .contact-card-text span {
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 600;
}
.contact-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-form-box h3 { margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark-text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,115,10,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: #0a1a2e;
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.25rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
}
.social-btn:hover {
  background: var(--accent);
  color: white;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--accent); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { margin: 0; font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.55); font-size: 0.82rem; }
.footer-bottom a:hover { color: var(--accent); }

/* ===================================
   SECTION HEADERS
   =================================== */
.section-header { margin-bottom: 3rem; }
.section-header.text-center { text-align: center; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p {
  font-size: 1.05rem;
  max-width: 600px;
}
.section-header.text-center p { margin: 0 auto; }
.divider {
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: 1rem 0;
}
.divider.centered { margin: 1rem auto; }

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
  background: var(--accent);
  padding: 4rem 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 2rem; max-width: 550px; margin-left: auto; margin-right: auto; }

/* ===================================
   MOBILE NAVIGATION OVERLAY
   =================================== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,58,92,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 72px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.mobile-nav a:hover { background: rgba(255,255,255,0.1); }
.mobile-nav .nav-cta {
  background: var(--accent);
  padding: 0.85rem 2.5rem;
  border-radius: 50px;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-image-block { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-block { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why-image-block { display: none; }
  .facility-grid { grid-template-columns: 1fr; }
  .facility-image-block { display: none; }
  .scheduling-grid { grid-template-columns: 1fr; }
  .service-area-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.large { grid-column: span 1; grid-row: span 1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .facility-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .service-cities { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .section { padding: 3.5rem 0; }
  .hero { min-height: auto; padding: 5rem 0 3rem; }
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
  animation: fadeInUp 0.7s ease forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ===================================
   SCROLL TO TOP
   =================================== */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 500;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--accent-dark); transform: translateY(-3px); }

/* ===================================
   LOGO IMAGE — NAV & FOOTER
   =================================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 35, 65, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
#navbar .container,
#navbar .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.nav-logo:hover .nav-logo-img {
  transform: scale(1.05);
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-logo-text strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
.nav-logo-text span {
  font-size: 0.67rem;
  color: rgba(255,255,255,0.58);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
/* Nav toggle button (hamburger) */
#nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
#nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
/* Book Now button in nav */
.btn-book {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 0.48rem 1.2rem !important;
  border-radius: 50px !important;
  margin-left: 0.4rem;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
}
.btn-book:hover {
  background: var(--accent-dark) !important;
  color: #fff !important;
}
/* Footer logo */
.footer-brand .nav-logo-img {
  width: 68px;
  height: 68px;
}
/* Mobile nav */
@media (max-width: 820px) {
  #nav-toggle { display: flex; }
  #nav-links {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    width: 100%;
    background: rgba(12, 28, 55, 0.99);
    flex-direction: column;
    padding: 0.75rem 0 1.25rem;
    gap: 0;
    z-index: 998;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  #nav-links.open { display: flex; }
  #nav-links a {
    padding: 0.8rem 2rem;
    border-radius: 0;
    width: 100%;
    font-size: 1rem;
  }
  .btn-book { margin: 0.5rem 2rem; border-radius: 50px !important; }
  .nav-logo-text { display: none; }
  .nav-logo-img { width: 44px; height: 44px; }
}

/* ===================================
   CALENDAR EMBED STYLES
   =================================== */
.cal-embed-wrapper {
  background: #fff;
  border-radius: 14px;
  padding: 0;
  box-shadow: 0 6px 30px rgba(0,0,0,0.12);
  overflow: hidden;
}
.cal-embed-wrapper iframe {
  display: block;
  width: 100%;
  border-radius: 14px 14px 0 0;
}
.cal-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.25rem 1.5rem 0.5rem;
  justify-content: center;
}
.btn-outline-dark {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  transition: var(--transition);
  text-align: center;
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: #fff;
}
.cal-note {
  font-size: 0.82rem;
  color: var(--light-text);
  padding: 0.75rem 1.5rem 1.25rem;
  text-align: center;
  line-height: 1.5;
}
.cal-note a { color: var(--accent); }
.cal-note strong { color: var(--dark-text); }


/* ===== FACILITY CASE STUDY ===== */
.facility-case-study {
  margin-top: 3.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,146,42,0.3);
  border-radius: 16px;
  padding: 2.5rem;
}
.case-study-header {
  text-align: center;
  margin-bottom: 2rem;
}
.case-study-header h3 {
  color: #fff;
  font-size: 1.5rem;
  margin: 0.5rem 0 1rem;
}
.case-study-header p {
  color: rgba(255,255,255,0.75);
  max-width: 700px;
  margin: 0 auto;
  font-size: 0.97rem;
  line-height: 1.7;
}
.case-study-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.case-photo {
  border-radius: 10px;
  overflow: hidden;
  background: rgba(0,0,0,0.3);
}
.case-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.case-photo:hover img { transform: scale(1.04); }
.case-photo-label {
  padding: 0.65rem 0.85rem;
  font-size: 0.82rem;
  color: #c8922a;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.case-study-note {
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  font-style: italic;
  margin: 0;
}
@media (max-width: 768px) {
  .case-study-photos { grid-template-columns: 1fr; }
  .facility-case-study { padding: 1.5rem; }
}
