/* =============================================
   HOMEREVIVE - GLOBAL STYLESHEET
   Premium Home Restoration Website
   ============================================= */

/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

/* CSS VARIABLES */
:root {
  --primary: #C8811A;
  --primary-dark: #A66310;
  --primary-light: #E8A84A;
  --secondary: #1A2744;
  --secondary-dark: #0F1A30;
  --accent: #E8F4F8;
  --white: #FFFFFF;
  --gray-50: #F9F8F6;
  --gray-100: #F2EFE9;
  --gray-200: #E5E0D8;
  --gray-600: #6B6560;
  --gray-700: #4A4540;
  --gray-900: #1C1814;
  --text: #2C2820;
  --text-light: #6B6560;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.16);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET */
*, *::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(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* SECTION PAD */
.section-pad { padding: 90px 0; }
.bg-light { background: var(--gray-50); }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--secondary);
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p { color: var(--text-light); margin-bottom: 1rem; line-height: 1.75; }
p:last-child { margin-bottom: 0; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-lg { padding: 17px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(200,129,26,0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,129,26,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--secondary);
  transform: translateY(-2px);
}

/* ---- SECTION HEADER ---- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { font-size: 1.05rem; }
.section-header-light h2, .section-header-light p { color: var(--white); }
.section-header-light p { color: rgba(255,255,255,0.75); }

.section-tag {
  display: inline-block;
  background: rgba(200,129,26,0.12);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.tag-light {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

/* ---- SECTION CTA ---- */
.section-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

/* ========================
   TOP BAR
   ======================== */
.top-bar {
  background: var(--secondary-dark);
  color: rgba(255,255,255,0.85);
  padding: 9px 0;
  font-size: 0.82rem;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.top-bar-left { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.top-bar-left a { color: rgba(255,255,255,0.8); transition: color 0.2s; }
.top-bar-left a:hover { color: var(--primary-light); }
.sep { color: rgba(255,255,255,0.3); }
.top-call {
  color: var(--primary-light) !important;
  font-weight: 700;
  font-size: 0.9rem;
}
.top-call:hover { color: var(--white) !important; }

/* ========================
   HEADER
   ======================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 74px;
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo img { height: 52px; width: auto; object-fit: contain; }
.logo-text-fallback {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--secondary);
  display: flex;
  align-items: center;
}

.desktop-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-link {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s;
  border-radius: 2px;
}
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.header-cta { margin-left: 16px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(360px, 90vw);
  height: 100vh;
  background: var(--secondary);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: 60px 32px 40px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--white);
  font-size: 1.4rem;
  padding: 8px;
  opacity: 0.7;
}
.mobile-nav-close:hover { opacity: 1; }
.mobile-nav nav { display: flex; flex-direction: column; gap: 4px; flex: 1; margin-top: 20px; }
.mobile-nav-link {
  display: block;
  padding: 14px 0;
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.mobile-nav-link:hover { color: var(--primary-light); }
.mobile-cta { margin-top: 32px; text-align: center; justify-content: center; }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-overlay.visible { opacity: 1; pointer-events: all; }

/* ========================
   HERO
   ======================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,20,45,0.82) 0%, rgba(10,20,45,0.55) 60%, rgba(10,20,45,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-badge {
  display: inline-block;
  background: rgba(200,129,26,0.25);
  border: 1px solid rgba(200,129,26,0.5);
  color: var(--primary-light);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 22px;
  animation: fadeInUp 0.8s ease forwards;
}
.hero-title {
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  animation: fadeInUp 0.8s 0.15s ease both;
}
.hero-title .accent { color: var(--primary-light); }
.hero-subtitle {
  color: rgba(255,255,255,0.82);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 36px;
  animation: fadeInUp 0.8s 0.25s ease both;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s 0.35s ease both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeInUp 0.8s 0.45s ease both;
}
.stat { text-align: center; }
.stat strong { display: block; font-family: var(--font-display); font-size: 1.9rem; color: var(--white); line-height: 1; }
.stat span { font-size: 0.78rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.08em; }
.stat-sep { width: 1px; height: 44px; background: rgba(255,255,255,0.2); }

.hero-slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
}
.hero-dot.active {
  background: var(--primary-light);
  width: 26px;
  border-radius: 4px;
}

/* ========================
   TRUST BAR
   ======================== */
.trust-bar {
  background: var(--secondary);
  padding: 18px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 24px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 1.1rem; }

/* ========================
   ABOUT INTRO
   ======================== */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-intro-img-wrap { position: relative; }
.about-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 460px;
  box-shadow: var(--shadow-lg);
}
.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 24px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.about-img-badge strong { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 800; line-height: 1; }
.about-img-badge span { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.9; }

.about-intro-text .section-tag { margin-bottom: 14px; }
.about-intro-text h2 { margin-bottom: 20px; }

.check-list { margin: 20px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.check-list li { color: var(--gray-700); font-weight: 500; font-size: 0.95rem; display: flex; align-items: center; gap: 8px; }

/* ========================
   SERVICES OVERVIEW
   ======================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transition: transform 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 2.4rem; margin-bottom: 14px; }
.service-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.service-card p { font-size: 0.88rem; margin-bottom: 16px; }
.service-link { color: var(--primary); font-weight: 600; font-size: 0.88rem; transition: gap 0.2s; }
.service-link:hover { color: var(--primary-dark); }

/* ========================
   WHY CHOOSE US
   ======================== */
.why-us {
  background: var(--secondary);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,129,26,0.15) 0%, transparent 70%);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
  border-color: rgba(200,129,26,0.3);
}
.why-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(200,129,26,0.25);
  line-height: 1;
  margin-bottom: 12px;
}
.why-card h3 { color: var(--white); margin-bottom: 10px; font-size: 1.05rem; }
.why-card p { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin: 0; }

/* ========================
   GALLERY PREVIEW
   ======================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item--wide { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,45,0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--primary);
  padding: 4px 14px;
  border-radius: 50px;
}

/* ========================
   TESTIMONIALS
   ======================== */
.testimonials { background: var(--secondary); }
.testimonials-slider { overflow: hidden; position: relative; }
.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  flex: 0 0 calc(50% - 12px);
  min-width: calc(50% - 12px);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin: 0 12px 0 0;
}
.testimonial-stars { color: #F5C842; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-text {
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; color: var(--white); font-size: 0.95rem; }
.testimonial-author span { color: rgba(255,255,255,0.5); font-size: 0.8rem; }
.google-badge {
  margin-left: auto;
  width: 34px;
  height: 34px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4285F4;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}
.testimonial-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.15);
}
.testimonial-btn:hover { background: var(--primary); border-color: var(--primary); }
.testimonial-dots { display: flex; gap: 8px; }
.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.3s;
}
.t-dot.active { background: var(--primary-light); width: 22px; border-radius: 4px; }
.review-cta { text-align: center; margin-top: 40px; }

/* ========================
   CTA BANNER
   ======================== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 72px 0;
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}
.cta-banner-text h2 { color: var(--white); }
.cta-banner-text p { color: rgba(255,255,255,0.82); margin: 10px 0 0; }
.cta-banner-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.cta-banner .btn-primary { background: var(--white); color: var(--primary-dark); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.cta-banner .btn-primary:hover { background: var(--secondary); color: var(--white); }
.cta-banner .btn-outline { border-color: rgba(255,255,255,0.6); color: var(--white); }
.cta-banner .btn-outline:hover { background: var(--white); color: var(--primary-dark); }

/* ========================
   CONTACT + MAP
   ======================== */
.contact-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-form { display: flex; flex-direction: column; gap: 0; }
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 7px;
  color: var(--gray-700);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(200,129,26,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.map-wrap { display: flex; flex-direction: column; gap: 24px; }
.map-info { display: flex; flex-direction: column; gap: 16px; }
.map-info-item { display: flex; align-items: flex-start; gap: 14px; }
.map-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.map-info-item div { font-size: 0.9rem; color: var(--text-light); }
.map-info-item strong { display: block; color: var(--text); font-weight: 600; margin-bottom: 2px; }
.map-info-item a { color: var(--primary); font-weight: 600; }
.map-info-item a:hover { text-decoration: underline; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }

/* ========================
   FOOTER
   ======================== */
.site-footer {
  background: var(--secondary-dark);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand { max-width: 340px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo img { height: 46px; width: auto; filter: brightness(1.1); }
.footer-logo-text { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--white); }
.footer-brand p { font-size: 0.88rem; margin-bottom: 18px; line-height: 1.7; }
.google-profile-link {
  display: inline-block;
  color: var(--primary-light);
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.2s;
}
.google-profile-link:hover { color: var(--white); }

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--primary-light); }

.footer-contact li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.5;
}
.footer-contact li a { color: rgba(255,255,255,0.65); }
.footer-contact li a:hover { color: var(--primary-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin: 0; }
.footer-bottom a { color: var(--primary-light); }
.footer-bottom a:hover { text-decoration: underline; }

/* ========================
   PAGE HERO (INNER PAGES)
   ======================== */
.page-hero {
  background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://lh3.googleusercontent.com/p/AF1QipMcFDVZ13w0LX1PNERy92XsvxUyx8QzbUz3IqbX=s680-w680-h510-rw') center/cover no-repeat;
  opacity: 0.08;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-content { max-width: 700px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--primary-light); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.08rem; max-width: 560px; }

/* ========================
   ABOUT PAGE
   ======================== */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-story-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card span { font-size: 0.88rem; color: var(--text-light); font-weight: 500; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon { font-size: 2rem; margin-bottom: 14px; }
.value-card h3 { margin-bottom: 8px; }

/* ========================
   SERVICES PAGE
   ======================== */
.service-detail {
  padding: 80px 0;
  border-bottom: 1px solid var(--gray-200);
}
.service-detail:last-child { border-bottom: none; }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }
.service-detail-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.service-detail-text .section-tag { margin-bottom: 12px; }
.service-detail-text h2 { margin-bottom: 16px; }
.service-features { margin: 20px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.service-features li { color: var(--gray-700); font-size: 0.92rem; display: flex; align-items: flex-start; gap: 10px; }
.service-features li::before { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; line-height: 1.6; }

/* ========================
   GALLERY PAGE
   ======================== */
.gallery-filter-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1.5px solid var(--gray-200);
  color: var(--gray-700);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-full-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: zoom-in;
}
.gallery-full-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-full-item:hover img { transform: scale(1.08); }
.gallery-full-item .gallery-overlay { opacity: 0; transition: opacity 0.3s; }
.gallery-full-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-inner {
  position: absolute;
  inset: 0;
  background: rgba(10,20,45,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-full-item:hover .gallery-overlay-inner { opacity: 1; }
.gallery-overlay-inner span { color: var(--white); font-size: 2rem; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--white);
  font-size: 2rem;
  padding: 8px;
  cursor: pointer;
  opacity: 0.7;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background 0.2s;
}
.lightbox-nav:hover { background: var(--primary); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ========================
   CONTACT PAGE
   ======================== */
.contact-full-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: start;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.contact-info-card {
  display: flex;
  gap: 18px;
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 22px 24px;
  border: 1px solid var(--gray-200);
  align-items: flex-start;
}
.cc-icon { font-size: 1.5rem; flex-shrink: 0; }
.cc-text strong { display: block; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.cc-text a { color: var(--primary); font-weight: 500; }
.cc-text a:hover { text-decoration: underline; }

.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
  gap: 12px;
}
.faq-q:hover { color: var(--primary); }
.faq-arrow {
  width: 28px;
  height: 28px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  transition: all 0.3s;
  color: var(--primary);
}
.faq-item.open .faq-arrow { background: var(--primary); color: var(--white); transform: rotate(180deg); }
.faq-a {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 18px; }
.faq-a p { font-size: 0.92rem; margin: 0; }

/* ========================
   SERVICES NAV BAR
   ======================== */
.services-nav-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 74px;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.services-nav-inner {
  display: flex;
  overflow-x: auto;
  gap: 0;
  scrollbar-width: none;
}
.services-nav-inner::-webkit-scrollbar { display: none; }
.snav-link {
  display: block;
  padding: 14px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.snav-link:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* ========================
   PROCESS STEPS
   ======================== */
.process-steps {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.process-step {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.process-step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 14px rgba(200,129,26,0.35);
}
.process-step h3 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.85rem; }
.process-arrow {
  font-size: 1.5rem;
  color: var(--gray-200);
  padding: 0 4px;
  flex-shrink: 0;
}
.process-arrow::after { content: '→'; }
@media (max-width: 900px) {
  .process-steps { gap: 16px; }
  .process-arrow { display: none; }
  .process-step { min-width: 140px; }
}

/* ========================
   ANIMATIONS
   ======================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-stagger .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.animate-stagger .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-stagger .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-stagger .animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-stagger .animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.animate-stagger .animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }
.animate-stagger .animate-on-scroll:nth-child(7) { transition-delay: 0.6s; }
.animate-stagger .animate-on-scroll:nth-child(8) { transition-delay: 0.7s; }

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .desktop-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .section-pad { padding: 64px 0; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-badge { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-item--wide { grid-column: span 1; }
  .testimonial-card { flex: 0 0 100%; min-width: 100%; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .contact-map-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-story-grid { grid-template-columns: 1fr; gap: 48px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail-grid { grid-template-columns: 1fr; gap: 36px; }
  .service-detail-grid.reverse { direction: ltr; }
  .contact-full-grid { grid-template-columns: 1fr; gap: 48px; }
  .gallery-full-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .trust-item { padding: 8px 14px; font-size: 0.82rem; }
}

@media (max-width: 600px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-full-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 14px; }
  .stat strong { font-size: 1.4rem; }
  .trust-bar-inner { justify-content: flex-start; gap: 0; overflow-x: auto; padding-bottom: 4px; }
  .trust-item { border-right: none; border-bottom: none; white-space: nowrap; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .top-bar-inner { flex-wrap: wrap; gap: 6px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .page-hero { padding: 60px 0 40px; }
  .section-cta { flex-direction: column; align-items: center; }
  .section-cta .btn { width: 100%; max-width: 300px; text-align: center; justify-content: center; }
}

/* Form success msg */
.form-success {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.9rem;
}
