/* ============================================
   Naples Outdoor Kitchens & Renovations
   Global Stylesheet
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  color: #2d3748;
  line-height: 1.7;
  background: #fff;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Variables --- */
:root {
  --navy: #0d1f35;
  --navy-light: #1a3050;
  --orange: #e8701a;
  --orange-dark: #c5581a;
  --orange-light: #f5913a;
  --white: #ffffff;
  --gray-100: #f7f8fa;
  --gray-200: #edf0f5;
  --gray-600: #6b7280;
  --gray-800: #2d3748;
  --gold: #d4af37;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --transition: all 0.3s ease;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--navy);
  color: var(--white);
  padding: 9px 0;
  font-size: 13.5px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar-left { display: flex; align-items: center; gap: 22px; }
.top-bar-left a, .top-bar-right a {
  color: #cbd5e0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.top-bar-left a:hover, .top-bar-right a:hover { color: var(--orange-light); }
.top-bar-right { display: flex; align-items: center; gap: 16px; }
.top-bar .cta-btn {
  background: var(--orange);
  color: var(--white) !important;
  padding: 6px 18px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 13px;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.top-bar .cta-btn:hover { background: var(--orange-dark); }

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav {
  background: var(--white);
  border-bottom: 2px solid #e9ecef;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.logo { display: flex; align-items: center; }
.logo img { height: 64px; width: auto; }
.logo-text {
  display: flex;
  flex-direction: column;
  margin-left: 12px;
}
.logo-text .brand { font-size: 22px; font-weight: 800; color: var(--navy); line-height: 1.1; }
.logo-text .tagline { font-size: 12px; color: var(--orange); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--orange); background: #fff6ee; }
.nav-link .arrow { font-size: 10px; transition: var(--transition); }
.nav-item:hover .arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid #e2e8f0;
  min-width: 260px;
  z-index: 2000;
  overflow: hidden;
}
.nav-item:hover .dropdown { display: block; }
.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  font-size: 14px;
  color: var(--gray-800);
  border-bottom: 1px solid #f1f5f9;
  transition: var(--transition);
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: #fff6ee; color: var(--orange); padding-left: 24px; }
.dropdown a .d-icon { color: var(--orange); font-size: 15px; min-width: 18px; }

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  margin-left: 8px;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(232,112,26,0.3);
}
.nav-cta:hover { background: var(--orange-dark) !important; transform: translateY(-1px); }

/* Mobile burger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
  border-radius: 2px;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.container-lg {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1600585154526-990dced4db0d?w=1600&q=85');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13,31,53,0.92) 45%, rgba(13,31,53,0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,112,26,0.18);
  border: 1px solid rgba(232,112,26,0.4);
  color: var(--orange-light);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero h1 span { color: var(--orange-light); }
.hero p {
  font-size: 1.12rem;
  color: #c5d2e0;
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 18px rgba(232,112,26,0.4);
  letter-spacing: 0.3px;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(232,112,26,0.5); }
.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 13px 30px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline:hover { border-color: var(--orange-light); color: var(--orange-light); transform: translateY(-2px); }

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}
.hero-check {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #a8bfd4;
  font-size: 13.5px;
}
.hero-check span.icon { color: #4ade80; font-size: 16px; }

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  background: var(--orange);
  padding: 18px 0;
}
.trust-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 14.5px;
}
.trust-item .ti { font-size: 22px; }

/* ============================================
   SECTION HEADERS
   ============================================ */
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-header .eyebrow::before,
.section-header .eyebrow::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-header h2 span { color: var(--orange); }
.section-header p {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #e8ecf0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
.service-card-img {
  height: 210px;
  overflow: hidden;
  position: relative;
}
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-body {
  padding: 26px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #fff6ee, #fde8d2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--orange);
  flex-shrink: 0;
}
.service-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-card-body p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
  margin-top: auto;
}
.service-card-link:hover { gap: 10px; color: var(--orange-dark); }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 14px;
}
.about-badge {
  position: absolute;
  bottom: 28px;
  right: -16px;
  background: var(--orange);
  color: var(--white);
  padding: 18px 26px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge .num { font-size: 2.4rem; font-weight: 900; line-height: 1; }
.about-badge .label { font-size: 12px; font-weight: 600; opacity: 0.9; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.about-content h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
}
.about-content h2 span { color: var(--orange); }
.about-content p {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 26px 0;
}
.about-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.about-feat .fi { color: var(--orange); font-size: 18px; }

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  background: var(--navy);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item { color: var(--white); }
.stat-num {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--orange-light);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 14px; color: #a0b4c8; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  text-align: center;
  padding: 38px 28px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: var(--white);
  transition: var(--transition);
}
.why-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow); }
.why-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 20px;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(232,112,26,0.35);
}
.why-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--gray-600); line-height: 1.7; }

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section { background: var(--gray-100); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-step {
  position: relative;
  text-align: center;
  padding: 36px 24px 30px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.process-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -16px;
  top: 44px;
  font-size: 20px;
  color: var(--orange);
  z-index: 1;
}
.step-num {
  width: 50px;
  height: 50px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 16px;
}
.process-step h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.process-step p { font-size: 13.5px; color: var(--gray-600); line-height: 1.6; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { background: var(--navy); }
.testimonials-section .section-header h2 { color: var(--white); }
.testimonials-section .section-header p { color: #a0b4c8; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 32px 28px;
  color: var(--white);
  transition: var(--transition);
}
.testimonial-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.stars { color: var(--gold); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p { font-size: 14.5px; color: #c8d8e8; line-height: 1.8; margin-bottom: 22px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  flex-shrink: 0;
}
.reviewer-info .name { font-weight: 700; font-size: 15px; color: var(--white); }
.reviewer-info .loc { font-size: 12px; color: #7a96b0; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 70px 0;
  text-align: center;
}
.cta-section h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: var(--white); margin-bottom: 14px; }
.cta-section p { font-size: 1.1rem; color: rgba(255,255,255,0.88); margin-bottom: 32px; max-width: 580px; margin-left: auto; margin-right: auto; }
.cta-section .btn-white {
  background: var(--white);
  color: var(--orange-dark);
  padding: 14px 36px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
  margin: 0 8px;
}
.cta-section .btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.22); }
.cta-section .btn-outline-white {
  background: transparent;
  color: var(--white);
  padding: 13px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid rgba(255,255,255,0.6);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  margin: 0 8px;
}
.cta-section .btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); transform: translateY(-2px); }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info h3 { font-size: 1.6rem; font-weight: 800; color: var(--navy); margin-bottom: 22px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding: 18px;
  background: var(--gray-100);
  border-radius: 10px;
  border-left: 4px solid var(--orange);
}
.contact-item .ci-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-item .ci-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.contact-item .ci-text a, .contact-item .ci-text span { font-size: 15px; color: var(--gray-600); }
.contact-item .ci-text a:hover { color: var(--orange); }

.hours-grid { display: grid; grid-template-columns: 1fr; gap: 5px; margin-top: 6px; }
.hours-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--gray-600); }
.hours-row .day { font-weight: 600; color: var(--navy); }

.contact-form { background: var(--gray-100); padding: 36px; border-radius: 14px; }
.contact-form h3 { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13.5px; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #dde3ec;
  border-radius: 7px;
  font-size: 15px;
  font-family: inherit;
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,112,26,0.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================
   MAP SECTION
   ============================================ */
.map-section { background: var(--gray-100); }
.map-section .map-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid #e2e8f0;
}
.map-section iframe { display: block; width: 100%; border: 0; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--navy); color: #a0b4c8; }
.footer-top { padding: 60px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .logo-text .brand { color: var(--white); font-size: 20px; }
.footer-brand .logo-text .tagline { color: var(--orange-light); }
.footer-brand p { font-size: 14px; line-height: 1.8; margin-top: 14px; color: #7a96b0; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a0b4c8;
  font-size: 16px;
  transition: var(--transition);
  text-decoration: none;
}
.social-link:hover { background: var(--orange); border-color: var(--orange); color: var(--white); transform: translateY(-2px); }

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: #7a96b0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--orange-light); padding-left: 4px; }
.footer-col ul li a::before { content: '›'; color: var(--orange); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-contact-item .fci { color: var(--orange); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item .fct { font-size: 13.5px; color: #7a96b0; line-height: 1.5; }
.footer-contact-item .fct a { color: #a0b4c8; transition: var(--transition); }
.footer-contact-item .fct a:hover { color: var(--orange-light); }

.footer-bottom {
  background: rgba(0,0,0,0.25);
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 13px; color: #566a80; }
.footer-bottom a { color: var(--orange-light); }

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
  background: var(--navy);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,31,53,0.9) 0%, rgba(13,31,53,0.6) 100%); }
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #7a96b0;
  margin-bottom: 18px;
}
.breadcrumb a { color: #a0b4c8; transition: var(--transition); }
.breadcrumb a:hover { color: var(--orange-light); }
.breadcrumb .sep { color: #4a6278; }
.page-hero h1 {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}
.page-hero h1 span { color: var(--orange-light); }
.page-hero .subtitle { font-size: 1.05rem; color: #a0b4c8; max-width: 600px; line-height: 1.7; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.hero-badge-item {
  background: rgba(232,112,26,0.15);
  border: 1px solid rgba(232,112,26,0.35);
  color: var(--orange-light);
  padding: 6px 14px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ============================================
   SERVICE PAGE CONTENT
   ============================================ */
.service-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.service-intro-img {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.service-intro-img img { width: 100%; height: 420px; object-fit: cover; }
.service-intro-content .label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 10px;
}
.service-intro-content h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.service-intro-content p { font-size: 1rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 14px; }

.check-list { margin: 18px 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--gray-800);
  margin-bottom: 10px;
  line-height: 1.5;
}
.check-list li::before { content: '✔'; color: var(--orange); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* Services detail cards */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.detail-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px 26px;
  border: 1px solid #e2e8f0;
  border-top: 4px solid var(--orange);
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.detail-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.detail-card .dc-icon { font-size: 28px; margin-bottom: 14px; color: var(--orange); }
.detail-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.detail-card p { font-size: 14px; color: var(--gray-600); line-height: 1.7; }

/* Process Steps (inner) */
.process-list { display: flex; flex-direction: column; gap: 20px; }
.process-list-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  border-radius: 10px;
  padding: 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: var(--transition);
}
.process-list-item:hover { border-color: var(--orange); }
.pl-num {
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
}
.pl-content h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.pl-content p { font-size: 14px; color: var(--gray-600); line-height: 1.7; }

/* Pricing highlight box */
.pricing-box {
  background: var(--gray-100);
  border-radius: 14px;
  padding: 36px;
  border-left: 5px solid var(--orange);
  margin: 32px 0;
}
.pricing-box h3 { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.pricing-box p { font-size: 1rem; color: var(--gray-600); line-height: 1.8; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-img { height: 240px; overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.team-card:hover .team-img img { transform: scale(1.05); }
.team-body { padding: 22px; }
.team-body h4 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.team-body .role { font-size: 13px; color: var(--orange); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.value-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--white);
  border-radius: 12px;
  padding: 26px;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.value-card:hover { border-color: var(--orange); transform: translateX(4px); }
.value-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  flex-shrink: 0;
}
.value-content h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.value-content p { font-size: 14px; color: var(--gray-600); line-height: 1.7; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 52px;
  align-items: start;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-grid { gap: 40px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:not(:last-child)::after { display: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .about-badge { right: 0; }
  .service-intro { gap: 36px; }
  .contact-page-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .top-bar .container { justify-content: center; }
  .top-bar-left { display: none; }
  .main-nav .nav-menu { display: none; flex-direction: column; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: var(--navy); padding: 80px 20px 40px; overflow-y: auto; z-index: 999; gap: 4px; }
  .main-nav .nav-menu.open { display: flex; }
  .nav-link { color: var(--white); font-size: 16px; padding: 14px 16px; border-radius: 8px; }
  .nav-link:hover { background: rgba(255,255,255,0.1); color: var(--orange-light); }
  .dropdown { display: none; position: static; background: rgba(255,255,255,0.06); box-shadow: none; border: none; border-radius: 8px; margin-top: 4px; }
  .nav-item.dropdown-open .dropdown { display: block; }
  .dropdown a { color: #c8d8e8; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav-toggle { display: flex; z-index: 1001; position: relative; }
  .nav-close { display: none; position: absolute; top: 20px; right: 20px; background: none; border: none; color: var(--white); font-size: 28px; cursor: pointer; z-index: 1001; }
  .main-nav .nav-menu.open ~ .nav-close { display: block; }
  .nav-cta { margin: 10px 0 0; width: 100%; justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap img { height: 320px; }
  .about-badge { right: 0; bottom: 16px; }
  .about-features { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .service-intro { grid-template-columns: 1fr; }
  .service-intro-img img { height: 280px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero { min-height: 70vh; }
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom .inner { flex-direction: column; text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   UTILITIES
   ============================================ */
.bg-gray { background: var(--gray-100); }
.bg-navy { background: var(--navy); }
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0 !important; }
.gap-center { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: none; }
