/* ============================================
   DevelopRight Landscaping — Brand Stylesheet
   Colors: #1f3d2b, #2b2b2b, #f3f3f3, #7a9e7e
   ============================================ */

/* --- Google Fonts loaded in HTML head --- */

:root {
  --primary: #1f3d2b;
  --primary-deep: #162e1f;
  --primary-light: #2a5239;
  --secondary: #7a9e7e;
  --secondary-light: #9bbf9f;
  --text: #2b2b2b;
  --text-light: #5c5c5c;
  --text-muted: #888;
  --bg: #f3f3f3;
  --bg-warm: #eceae6;
  --bg-off: #fafaf8;
  --accent-gold: #c4973a;
  --accent-gold-light: #d4aa50;
  --white: #fefefe;
  --border: rgba(31, 61, 43, 0.1);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.1);
  --shadow-green: 0 8px 30px rgba(31, 61, 43, 0.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--primary-deep);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(22, 46, 31, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.nav-logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  position: relative;
  letter-spacing: 0.3px;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--secondary);
  border-radius: 1px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary-light);
  font-weight: 600;
  font-size: 14px;
  transition: color var(--transition);
}

.nav-phone:hover { color: #fff; }

.nav-phone svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.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 overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-deep);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active { color: #fff; }

.mobile-nav .nav-phone-mobile {
  margin-top: 20px;
  font-size: 18px;
  color: var(--secondary-light);
  font-weight: 600;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(22, 46, 31, 0.92) 0%,
    rgba(31, 61, 43, 0.85) 40%,
    rgba(31, 61, 43, 0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 40px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(122, 158, 126, 0.2);
  border: 1px solid rgba(122, 158, 126, 0.3);
  color: var(--secondary-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--secondary-light);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: clamp(38px, 5.5vw, 72px);
  color: #fff;
  max-width: 760px;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.hero h1 .accent {
  color: var(--secondary-light);
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin-bottom: 40px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-gold);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.3px;
}

.hero-cta:hover {
  background: var(--accent-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 151, 58, 0.3);
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* ============================================
   HERO CTA GROUP (primary + secondary CTAs)
   ============================================ */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-cta-secondary {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
}

.hero-cta-secondary:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ============================================
   SOCIAL PROOF BAR
   ============================================ */
.social-proof-bar {
  background: #7a9e7e;
  padding: 22px 40px;
}

.social-proof-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.sp-item {
  text-align: center;
  flex: 1;
  min-width: 140px;
}

.sp-number {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #1f3d2b;
  line-height: 1.1;
}

.sp-label {
  font-size: 13px;
  color: #2b2b2b;
  margin-top: 4px;
  font-weight: 500;
}

.sp-divider {
  width: 1px;
  height: 44px;
  background: rgba(31, 61, 43, 0.25);
  flex-shrink: 0;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section {
  padding: 100px 40px;
}

.section-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.section-tag {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 20px;
  letter-spacing: -0.8px;
}

.section-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 56px;
}

.bg-dark {
  background: var(--primary-deep);
  color: #fff;
}

.bg-dark .section-tag { color: var(--secondary-light); }
.bg-dark .section-title { color: #fff; }
.bg-dark .section-subtitle { color: rgba(255,255,255,0.6); }

.bg-warm { background: var(--bg-warm); }
.bg-off { background: var(--bg-off); }
.bg-default { background: var(--bg); }

/* ============================================
   SERVICE CARDS (Homepage)
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-off);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: all 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(--secondary));
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-green);
  border-color: rgba(31, 61, 43, 0.15);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
  color: #fff;
}

.service-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  transition: gap var(--transition);
}

.service-card:hover .card-link { gap: 10px; }

/* ============================================
   PORTFOLIO / IMAGE SECTIONS
   ============================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: stretch;
}

.portfolio-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-img:hover img {
  transform: scale(1.03);
}

.portfolio-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: #fff;
}

.portfolio-img-caption span {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 48px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  text-align: center;
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(122, 158, 126, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section .section-title {
  color: #fff;
  max-width: 640px;
  margin: 0 auto 20px;
}

.cta-section .section-subtitle {
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin: 0 auto 40px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-gold);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 40px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.cta-btn:hover {
  background: var(--accent-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 151, 58, 0.3);
}

.cta-btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  margin-left: 16px;
}

.cta-btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.05);
  box-shadow: none;
}

/* ============================================
   SERVICES PAGE — Detail Cards
   ============================================ */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:last-child { border-bottom: none; }

.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }

.service-detail-num {
  font-family: 'Syne', sans-serif;
  font-size: 72px;
  font-weight: 700;
  color: rgba(31, 61, 43, 0.08);
  line-height: 1;
  margin-bottom: 16px;
}

.service-detail h3 {
  font-size: 28px;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.service-detail p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 24px;
}

.service-detail-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-detail-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-light);
}

.service-detail-features li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--secondary);
  border-radius: 50%;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath d='M8.5 13.3l-3-3 1.1-1.1 1.9 1.9 4.9-4.9 1.1 1.1-6 6z'/%3E%3C/svg%3E");
  background-size: 16px;
  background-position: center;
  background-repeat: no-repeat;
}

.service-detail-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.service-detail-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-intro-text h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 20px;
}

.about-intro-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 16px;
}

.about-intro-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-intro-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.value-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 36px 28px;
}

.value-card h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

.value-icon {
  font-size: 32px;
  margin-bottom: 20px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--bg-off);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all var(--transition);
}

.why-card:hover {
  border-color: rgba(31, 61, 43, 0.2);
  box-shadow: var(--shadow-sm);
}

.why-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
}

/* ============================================
   FAQ PAGE
   ============================================ */
.faq-list {
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--primary); }

.faq-question .faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  margin-left: 20px;
}

.faq-question .faq-icon::after {
  content: '+';
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted);
}

.faq-item.open .faq-question .faq-icon {
  background: var(--primary);
  border-color: var(--primary);
}

.faq-item.open .faq-question .faq-icon::after {
  content: '\2212';
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
  padding-right: 60px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-form {
  background: var(--bg-off);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 44px 36px;
}

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

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(31, 61, 43, 0.12);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  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(31, 61, 43, 0.08);
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232b2b2b' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--primary-light);
  box-shadow: var(--shadow-green);
  transform: translateY(-1px);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show { display: block; }

.form-success h3 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 12px;
}

.form-success p {
  font-size: 15px;
  color: var(--text-light);
}

.contact-info {
  padding-top: 12px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  align-items: flex-start;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-info-text h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-info-text p,
.contact-info-text a {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-info-text a:hover { color: var(--primary); }

.contact-hours {
  margin-top: 40px;
  padding: 28px;
  background: var(--bg-off);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.contact-hours h4 {
  font-size: 16px;
  margin-bottom: 16px;
}

.contact-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}

.contact-hours-row:last-child { border-bottom: none; }

.contact-hours-row .day { color: var(--text); font-weight: 500; }
.contact-hours-row .time { color: var(--text-light); }

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
  background: var(--primary-deep);
  padding: 120px 40px 64px;
  margin-top: 72px;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -40px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(122, 158, 126, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.page-header .section-inner {
  position: relative;
  z-index: 2;
}

.page-header .section-tag { color: var(--secondary-light); }

.page-header h1 {
  font-size: clamp(32px, 4vw, 52px);
  color: #fff;
  max-width: 640px;
  letter-spacing: -1px;
}

.page-header p {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  margin-top: 16px;
  line-height: 1.7;
}

/* ============================================
   CONTENT BLOCKS (DSSP Guide & Long-Form Pages)
   ============================================ */
.content-block {
  margin-bottom: 64px;
}

.content-block h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--text);
}

.content-block h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--text);
}

.content-block p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 16px;
}

.content-block p strong {
  color: var(--text);
  font-weight: 600;
}

.content-list {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}

.content-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
}

.content-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--secondary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.content-list li strong {
  color: var(--text);
  font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--primary-deep);
  padding: 64px 40px 32px;
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand-logo img { height: 36px; }

.footer-brand-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 300px;
}

.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  padding: 6px 0;
  transition: color var(--transition);
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .service-detail { grid-template-columns: 1fr; gap: 32px; }
  .service-detail.reverse { direction: ltr; }
  .about-intro { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 72px 24px; }
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }

  .hero { min-height: 80vh; }
  .hero-content { padding: 48px 24px; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .hero-cta, .hero-cta-secondary { width: 100%; text-align: center; justify-content: center; }
  .social-proof-bar { padding: 20px 24px; }
  .social-proof-inner { gap: 12px; justify-content: center; }
  .sp-divider { display: none; }
  .sp-item { min-width: calc(50% - 12px); }

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

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }

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

  .page-header { padding: 100px 24px 48px; }

  .cta-btn-outline { margin-left: 0; margin-top: 12px; }
  .cta-section { display: flex; flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 32px; letter-spacing: -0.8px; }
  .hero-sub { font-size: 16px; }
  .contact-form { padding: 28px 20px; }
  .sp-item { min-width: 100%; }
  .sp-number { font-size: 24px; }
}

/* ============================================
   BLOG — Index & Article Pages
   ============================================ */

/* Shared primary button (green variant) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
  color: #fff;
}

/* ---- Blog Index ---- */
.blog-index-section {
  padding: 72px 40px;
  background: var(--bg);
}
.blog-index-inner {
  max-width: 860px;
  margin: 0 auto;
}
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 64px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 40px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.blog-card-meta time {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.blog-card-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--secondary);
  background: rgba(122, 158, 126, 0.12);
  padding: 3px 10px;
  border-radius: 20px;
}
.blog-card-title {
  font-size: 22px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.blog-card-title a {
  color: var(--text);
  text-decoration: none;
  transition: color var(--transition);
}
.blog-card-title a:hover {
  color: var(--primary);
}
.blog-card-excerpt {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 20px;
}
.blog-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}
.blog-card-link:hover {
  color: var(--primary-light);
}

/* Blog CTA Banner */
.blog-cta-banner {
  background: var(--primary-deep);
  border-radius: var(--radius-md);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.blog-cta-text {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  line-height: 1.5;
  max-width: 520px;
}
.blog-cta-text strong {
  color: #fff;
}

/* ---- Article Page Header ---- */
.article-page-header h1 {
  font-size: clamp(26px, 3.5vw, 44px);
  max-width: 760px;
  margin-top: 16px;
}
.article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--secondary-light);
  text-decoration: none;
  margin-bottom: 20px;
  font-weight: 500;
  transition: color var(--transition);
}
.article-back-link:hover {
  color: #fff;
}
.article-meta-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}
.article-meta-header time {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.article-author-tag {
  font-size: 13px;
  color: var(--secondary-light);
  font-weight: 600;
}

/* ---- Article Body ---- */
.article-body {
  max-width: 720px;
  margin: 0 auto;
}
.article-body h1 {
  display: none; /* title is in page header */
}
.article-body .article-lead {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 40px;
  border-left: 3px solid var(--secondary);
  padding-left: 20px;
}
.article-body h2 {
  font-size: 24px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: var(--primary);
  margin: 48px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.3px;
}
.article-body h3 {
  font-size: 20px;
  margin: 32px 0 12px;
  color: var(--text);
}
.article-body p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
}
.article-body ul,
.article-body ol {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 24px;
}
.article-body ol {
  list-style: decimal;
}
.article-body li {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 8px;
  list-style: inherit;
}
.article-body strong {
  color: var(--text);
  font-weight: 700;
}
.article-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0 40px;
}

/* Article CTA Box */
.article-cta-box {
  background: var(--primary-deep);
  border-radius: var(--radius-md);
  padding: 36px 40px;
  margin-top: 8px;
}
.article-cta-box h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 12px;
}
.article-cta-box p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  margin-bottom: 24px;
}

/* Article Footer Nav */
.article-footer-nav {
  max-width: 720px;
  margin: 48px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.article-footer-nav .article-back-link {
  color: var(--primary);
}
.article-footer-nav .article-back-link:hover {
  color: var(--primary-light);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .blog-index-section { padding: 56px 24px; }
  .blog-card { padding: 28px 24px; }
  .blog-cta-banner { flex-direction: column; align-items: flex-start; gap: 20px; padding: 28px 24px; }
  .blog-grid { gap: 20px; }
  .article-cta-box { padding: 28px 24px; }
}
@media (max-width: 480px) {
  .blog-card-title { font-size: 18px; }
  .article-body .article-lead { font-size: 16px; }
  .article-body h2 { font-size: 20px; }
}
