/* ============================================
   KARS EVDEN EVE NAKLİYAT — STYLE
   Palette: Deep Green + Cream White
   ============================================ */

:root {
  /* Green palette */
  --green-900: #0a2e23;
  --green-800: #0d3d2e;
  --green-700: #125240;
  --green-600: #186a53;
  --green-500: #2a8a6f;
  --green-400: #4caa8a;
  --green-300: #7fc9b0;
  --green-50:  #e8f5ef;

  /* Neutrals */
  --cream: #fdfaf3;
  --white: #ffffff;
  --off-white: #f7f3ea;
  --text-dark: #0a2e23;
  --text-body: #2d4a3f;
  --text-muted: #5c7268;
  --border: #e2ded2;

  /* Accent */
  --gold: #d4a945;
  --gold-light: #f4c430;

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Shadow */
  --shadow-sm: 0 2px 8px rgba(10, 46, 35, 0.08);
  --shadow-md: 0 8px 24px rgba(10, 46, 35, 0.12);
  --shadow-lg: 0 20px 50px rgba(10, 46, 35, 0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-dark);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 400;
  color: var(--green-600);
}

a { color: inherit; text-decoration: none; transition: color .2s; }

.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-800);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(13, 61, 46, 0.3);
}
.btn-primary:hover {
  background: var(--green-900);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 61, 46, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--green-800);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--green-800);
}

.btn-outline-dark {
  background: transparent;
  color: var(--green-800);
  border: 1.5px solid var(--green-800);
}
.btn-outline-dark:hover {
  background: var(--green-800);
  color: var(--white);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ============================================
   TOP BAR
   ============================================ */

.topbar {
  background: var(--green-900);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar-left, .topbar-right {
  display: flex;
  gap: 24px;
  align-items: center;
}
.topbar a { color: rgba(255,255,255,0.85); font-weight: 500; }
.topbar a:hover { color: var(--white); }
.wa-link {
  background: #25D366;
  color: var(--white) !important;
  padding: 4px 12px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
}

/* ============================================
   HEADER
   ============================================ */

.header {
  background: var(--green-800);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s;
  box-shadow: 0 2px 0 rgba(255,255,255,0.05) inset;
}
.header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.logo-mark {
  width: 48px;
  height: 48px;
  background: var(--green-600);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  display: grid;
  place-items: center;
  padding: 6px;
}
.logo-mark svg {
  width: 100%;
  height: 100%;
}
.logo-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
}
.logo-text span {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--green-300);
  font-weight: 600;
}

.main-nav > ul {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}
.main-nav a {
  color: var(--white);
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 4px;
  display: block;
  transition: all 0.2s;
  position: relative;
}
.main-nav a:hover,
.main-nav a.active {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}
.main-nav a.cta-link {
  background: var(--gold);
  color: var(--green-900);
  font-weight: 600;
  padding: 10px 22px;
  margin-left: 8px;
}
.main-nav a.cta-link:hover {
  background: var(--gold-light);
}

.has-dropdown {
  position: relative;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--green-800);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  list-style: none;
  min-width: 240px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 10;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  padding: 10px 16px;
  font-size: 14px;
  white-space: nowrap;
}
.dropdown a:hover {
  background: var(--green-700);
}

.burger {
  display: none;
  background: transparent;
  border: none;
  width: 32px;
  height: 28px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  padding: 4px 0;
}
.burger span {
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: all 0.3s;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  background: var(--green-800);
  color: var(--white);
  padding: 80px 0 100px;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top left, rgba(44, 138, 111, 0.25), transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(10, 46, 35, 0.8), transparent 60%),
    linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.08) 1px, transparent 0);
  background-size: 32px 32px;
  opacity: 0.5;
}
.hero-pattern::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 169, 69, 0.15), transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.hero h1 em {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 400;
}

.hero-lead {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-lead strong {
  color: var(--white);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat strong span {
  color: var(--gold-light);
}
.stat em {
  font-style: normal;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Quote Card */
.hero-card {
  position: relative;
}
.quote-card {
  background: var(--white);
  color: var(--text-dark);
  padding: 36px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.quote-card::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 2px solid var(--gold);
  border-radius: 8px;
  z-index: -1;
  opacity: 0.5;
}
.quote-card-header {
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.quote-card-header h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}
.quote-card-header p {
  font-size: 14px;
  color: var(--text-muted);
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.field input,
.field select {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--off-white);
  transition: all 0.2s;
  width: 100%;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--green-600);
  background: var(--white);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollDown 2s infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   TRUST STRIP
   ============================================ */

.trust-strip {
  background: var(--green-900);
  color: var(--white);
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.trust-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
  padding: 100px 0;
}
.alt-bg {
  background: var(--off-white);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-600);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 16px;
  font-weight: 700;
}
.section-head p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   SERVICES
   ============================================ */

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px 32px;
  border-radius: 6px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--green-800);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover {
  border-color: var(--green-600);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.service-card.featured {
  background: var(--green-800);
  color: var(--white);
  border-color: var(--green-800);
}
.service-card.featured h3 { color: var(--white); }
.service-card.featured p { color: rgba(255,255,255,0.8); }
.service-card.featured .service-link { color: var(--gold-light); }

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--green-50);
  color: var(--green-700);
  border-radius: 6px;
  display: grid;
  place-items: center;
  transition: all 0.3s;
}
.service-card.featured .service-icon {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
.service-card:hover .service-icon {
  background: var(--green-700);
  color: var(--white);
}
.service-card.featured:hover .service-icon {
  background: var(--gold);
  color: var(--green-900);
}

.service-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
}
.service-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  flex-grow: 1;
}
.service-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--green-700);
  letter-spacing: 0.02em;
}

/* ============================================
   WHY US
   ============================================ */

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-content h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 20px;
}
.why-content .lead {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.why-item:hover {
  border-color: var(--green-600);
  transform: translateX(6px);
}
.why-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  font-style: italic;
  flex-shrink: 0;
  min-width: 32px;
}
.why-item h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.why-item p {
  font-size: 14px;
  color: var(--text-muted);
}

.why-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
}
.why-visual::before {
  content: '';
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle at center, rgba(44, 138, 111, 0.1), transparent 70%);
  z-index: -1;
}

.visual-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 8px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s;
}
.visual-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-600);
}
.card-1 { transform: translateY(-20px); }
.card-2 { transform: translateY(20px); }
.card-3 { transform: translateY(-20px); }
.card-4 { transform: translateY(20px); }

.visual-card:hover.card-1, .visual-card:hover.card-3 { transform: translateY(-26px); }
.visual-card:hover.card-2, .visual-card:hover.card-4 { transform: translateY(14px); }

.visual-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.visual-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.visual-card span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================
   PROCESS
   ============================================ */

.process-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 20px;
}
.step-num {
  width: 64px;
  height: 64px;
  background: var(--green-800);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 auto 20px;
  border: 4px solid var(--green-50);
  box-shadow: 0 0 0 4px var(--green-800);
}
.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 14px;
  color: var(--text-muted);
}
.process-arrow {
  font-size: 2rem;
  color: var(--green-400);
  padding-top: 28px;
  font-weight: 300;
}

/* ============================================
   AREAS
   ============================================ */

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.area-card {
  background: var(--white);
  padding: 24px;
  border-radius: 6px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--green-600);
  transition: all 0.3s;
}
.area-card:hover {
  border-left-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}
.area-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.area-card span {
  font-size: 13px;
  color: var(--text-muted);
}
.areas-cta {
  text-align: center;
  padding: 24px;
  background: var(--green-50);
  border-radius: 6px;
  font-size: 16px;
  color: var(--green-800);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--white);
  padding: 32px;
  border-radius: 6px;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s;
}
.testimonial:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--green-50);
  font-weight: 900;
}
.stars {
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial blockquote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 24px;
  font-style: italic;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.t-avatar {
  width: 44px;
  height: 44px;
  background: var(--green-700);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
}
.t-author strong {
  display: block;
  font-size: 15px;
  color: var(--text-dark);
}
.t-author span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================
   BLOG PREVIEW
   ============================================ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.blog-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.35s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.blog-card-visual {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.blog-card-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1), transparent 50%);
}
.visual-emoji {
  font-size: 4rem;
  position: relative;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}
.blog-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--white);
  color: var(--green-800);
  padding: 4px 12px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}
.blog-card-body time {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}
.blog-card-body h3 {
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 600;
}
.blog-card-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  flex-grow: 1;
}
.read-more {
  color: var(--green-700);
  font-weight: 600;
  font-size: 14px;
  margin-top: 8px;
}
.blog-cta {
  text-align: center;
}

/* ============================================
   FAQ
   ============================================ */

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item[open] {
  border-color: var(--green-600);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  padding: 20px 28px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--green-600);
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover {
  color: var(--green-700);
}
.faq-content {
  padding: 0 28px 24px;
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: -4px;
}

/* ============================================
   FINAL CTA
   ============================================ */

.final-cta {
  background: var(--green-900);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.final-cta-inner {
  text-align: center;
  position: relative;
}
.cta-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}
.final-cta h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.final-cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--green-900);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.logo-footer {
  margin-bottom: 20px;
}
.logo-footer .logo-mark {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}
.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--green-900);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: all 0.2s;
}
.footer-col ul a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}
.contact-list li {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}
.contact-list a {
  color: rgba(255,255,255,0.85) !important;
  padding-left: 0 !important;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   FLOATING CONTACT BUTTONS (WhatsApp + Phone)
   ============================================ */

.float-contacts {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

.float-btn {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease;
}

.float-btn svg {
  width: 30px;
  height: 30px;
  fill: #fff;
  z-index: 2;
  position: relative;
}

/* WhatsApp */
.float-btn-wa {
  background: #25D366;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .45);
  animation: floatBounce 2.4s ease-in-out infinite;
}
.float-btn-wa::before,
.float-btn-wa::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: .55;
  z-index: 1;
  animation: pulseRing 2s ease-out infinite;
}
.float-btn-wa::after {
  animation-delay: 1s;
}

/* Phone */
.float-btn-tel {
  background: var(--green-700, #125240);
  box-shadow: 0 6px 20px rgba(18, 82, 64, .5);
  animation: floatBounce 2.4s ease-in-out infinite;
  animation-delay: .3s;
}
.float-btn-tel::before,
.float-btn-tel::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--green-700, #125240);
  opacity: .5;
  z-index: 1;
  animation: pulseRing 2s ease-out infinite;
  animation-delay: .5s;
}
.float-btn-tel::after {
  animation-delay: 1.5s;
}

.float-btn:hover {
  transform: scale(1.12);
}

/* Label tooltip shown on hover */
.float-btn .float-label {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: #0a2e23;
  color: #fff;
  padding: 8px 14px;
  border-radius: 22px;
  font-size: .82rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
}
.float-btn .float-label::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #0a2e23;
}
.float-btn:hover .float-label {
  opacity: 1;
  transform: translateY(-50%) translateX(-4px);
}

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

@keyframes pulseRing {
  0%   { transform: scale(1);   opacity: .55; }
  80%  { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(1.8); opacity: 0; }
}

@media (max-width: 540px) {
  .float-contacts { bottom: 16px; right: 16px; gap: 12px; }
  .float-btn { width: 54px; height: 54px; }
  .float-btn svg { width: 26px; height: 26px; }
  .float-btn .float-label { display: none; }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .why-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .process-steps {
    flex-direction: column;
    align-items: stretch;
  }
  .process-arrow {
    transform: rotate(90deg);
    padding-top: 0;
    text-align: center;
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    background: var(--green-900);
    padding: 80px 24px 24px;
    transition: right 0.3s;
    overflow-y: auto;
    z-index: 200;
  }
  .main-nav.active {
    right: 0;
  }
  .main-nav > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  .main-nav a {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(0,0,0,0.2);
    padding: 0;
    box-shadow: none;
    border: none;
    margin-top: 4px;
  }
  .dropdown a {
    padding-left: 32px !important;
    font-size: 13px;
  }
  .burger {
    display: flex;
    z-index: 201;
  }
  .burger.active span:nth-child(1) { transform: rotate(45deg) translate(7px, 7px); }
  .burger.active span:nth-child(2) { opacity: 0; }
  .burger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-items { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-left, .topbar-right { gap: 12px; font-size: 12px; }
  .section { padding: 72px 0; }
  .hero { padding: 60px 0; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .stat strong { font-size: 1.75rem; }
}

@media (max-width: 540px) {
  .areas-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .quote-card { padding: 24px; }
  .hero h1 { font-size: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */

.page-header {
  background: var(--green-800);
  color: var(--white);
  padding: 80px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(44, 138, 111, 0.3), transparent 60%),
    linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
}
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
  background-size: 32px 32px;
}
.page-header-inner {
  position: relative;
  z-index: 1;
}
.page-header h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 16px;
}
.breadcrumb {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}
.breadcrumb a {
  color: var(--gold-light);
}
.breadcrumb a:hover {
  color: var(--white);
}

/* ============================================
   CONTENT PAGES
   ============================================ */

.content-page {
  padding: 80px 0 100px;
}
.content-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.content-main {
  background: var(--white);
  padding: 48px;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.content-main h2 {
  font-size: 2rem;
  margin: 32px 0 16px;
  color: var(--green-900);
}
.content-main h2:first-child { margin-top: 0; }
.content-main h3 {
  font-size: 1.4rem;
  margin: 28px 0 12px;
  color: var(--green-800);
}
.content-main p {
  margin-bottom: 16px;
  line-height: 1.8;
  color: var(--text-body);
}
.content-main ul, .content-main ol {
  margin: 16px 0 16px 24px;
  color: var(--text-body);
}
.content-main li {
  margin-bottom: 8px;
  line-height: 1.7;
}
.content-main strong {
  color: var(--text-dark);
  font-weight: 600;
}
.content-main blockquote {
  border-left: 4px solid var(--green-600);
  padding: 16px 24px;
  background: var(--green-50);
  margin: 24px 0;
  font-style: italic;
  color: var(--green-900);
  border-radius: 0 4px 4px 0;
}

.content-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar-widget {
  background: var(--white);
  padding: 28px;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.sidebar-widget.dark {
  background: var(--green-800);
  color: var(--white);
  border-color: var(--green-800);
}
.sidebar-widget.dark h4 { color: var(--white); }
.sidebar-widget h4 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green-600);
  color: var(--green-900);
}
.sidebar-widget ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sidebar-widget ul a {
  font-size: 14px;
  color: var(--text-body);
  padding: 10px 14px;
  background: var(--off-white);
  border-radius: 4px;
  display: block;
  transition: all 0.2s;
  border-left: 3px solid transparent;
}
.sidebar-widget ul a:hover {
  border-left-color: var(--green-600);
  background: var(--green-50);
  color: var(--green-800);
  padding-left: 18px;
}
.sidebar-widget.dark p {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  margin-bottom: 16px;
}

@media (max-width: 860px) {
  .content-wrap { grid-template-columns: 1fr; gap: 40px; }
  .content-main { padding: 32px 24px; }
}

/* ============================================
   CONTENT PAGES - EXTENDED (for all inner pages)
   ============================================ */

.content-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.content-main .content-hero {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--green-50);
}

.service-badge {
  display: inline-block;
  background: var(--green-50);
  color: var(--green-800);
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
  border: 1px solid var(--green-600);
}

.content-main .lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-dark);
  font-weight: 400;
}

.content-main .content-hero h2 {
  margin-top: 0;
  font-size: 1.8rem;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 28px 0;
}

.feature-card {
  background: var(--off-white);
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid var(--green-600);
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(10, 61, 46, 0.08);
}

.feature-card .feature-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}

.feature-card h4 {
  font-size: 1.05rem;
  color: var(--green-900);
  margin-bottom: 8px;
  font-weight: 700;
}

.feature-card p {
  font-size: 0.92rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Route Grid (cities/services list) */
.route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.route-card {
  background: linear-gradient(135deg, var(--green-50), var(--white));
  padding: 14px 18px;
  border-radius: 6px;
  border: 1px solid var(--green-100, #cfe3dc);
  font-size: 14px;
  color: var(--green-900);
  transition: all 0.2s;
}

.route-card:hover {
  background: var(--green-800);
  color: var(--white);
  border-color: var(--green-800);
  transform: translateY(-2px);
}

.route-card strong {
  color: inherit;
}

/* Check List */
.check-list {
  list-style: none !important;
  margin-left: 0 !important;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 12px;
  line-height: 1.65;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: var(--green-800);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}

.check-list.small li {
  padding-left: 26px;
  font-size: 14px;
  margin-bottom: 8px;
}

.check-list.small li::before {
  width: 18px;
  height: 18px;
  font-size: 10px;
}

/* Process List (numbered steps) */
.process-list {
  list-style: none !important;
  counter-reset: step;
  margin-left: 0 !important;
  padding: 0;
}

.process-list li {
  position: relative;
  padding-left: 52px;
  margin-bottom: 20px;
  counter-increment: step;
  line-height: 1.7;
}

.process-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -2px;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--green-800), var(--green-900));
  color: var(--gold, #d4a945);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display, 'Fraunces', serif);
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 3px 10px rgba(10, 61, 46, 0.18);
}

/* Info Box */
.info-box {
  background: linear-gradient(135deg, rgba(212, 169, 69, 0.08), rgba(212, 169, 69, 0.03));
  border-left: 4px solid var(--gold, #d4a945);
  padding: 22px 26px;
  border-radius: 0 8px 8px 0;
  margin: 28px 0;
}

.info-box h4 {
  color: var(--green-900);
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.info-box p {
  margin-bottom: 0;
  color: var(--text-dark);
}

/* CTA Box (inline call-to-action) */
.cta-box {
  background: linear-gradient(135deg, var(--green-800), var(--green-900));
  color: var(--white);
  padding: 40px 36px;
  border-radius: 12px;
  margin: 40px 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(212, 169, 69, 0.15), transparent 70%);
  border-radius: 50%;
}

.cta-box h3 {
  color: var(--white);
  margin-top: 0;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.cta-box .cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* Outline dark button */
.btn-outline-dark {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.25s;
}

.btn-outline-dark:hover {
  background: var(--white);
  color: var(--green-900);
  border-color: var(--white);
}

/* Sidebar widget dark variant (align with widget-dark class) */
.sidebar-widget.widget-dark {
  background: var(--green-800);
  color: var(--white);
  border-color: var(--green-800);
}

.sidebar-widget.widget-dark h4 {
  color: var(--white);
  border-bottom-color: var(--gold, #d4a945);
}

.sidebar-widget.widget-dark p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  margin-bottom: 16px;
}

.sidebar-phone {
  display: block;
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--gold, #d4a945);
  text-align: center;
  padding: 14px 0;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.sidebar-phone:hover {
  color: var(--white);
}

.btn-wa-full {
  display: block;
  background: #25d366;
  color: var(--white) !important;
  padding: 12px 20px;
  text-align: center;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-wa-full:hover {
  background: #1ebe5a;
  color: var(--white) !important;
}

.sidebar-list {
  list-style: none !important;
  padding: 0;
  margin: 0 !important;
}

.sidebar-list li {
  margin-bottom: 0;
}

.sidebar-list a {
  display: block;
  padding: 11px 14px;
  background: var(--off-white);
  border-radius: 4px;
  font-size: 14px;
  color: var(--text-body);
  border-left: 3px solid transparent;
  transition: all 0.2s;
  margin-bottom: 8px;
}

.sidebar-list a:hover {
  border-left-color: var(--green-600);
  background: var(--green-50);
  color: var(--green-800);
  padding-left: 18px;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--gold, #d4a945);
  transition: all 0.2s;
}

.breadcrumb a:hover {
  color: var(--white);
  text-decoration: underline;
}

.breadcrumb span {
  color: var(--white);
}

/* Blog Grid & Card (restyling with more polish) */
.blog-page {
  padding: 80px 0 100px;
}

.blog-page .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-page .blog-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}

.blog-page .blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(10, 61, 46, 0.12);
}

.blog-page .blog-card.featured {
  grid-column: span 2;
  grid-row: span 1;
}

.blog-page .blog-card-img {
  height: 220px;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.blog-page .blog-card.featured .blog-card-img {
  height: 280px;
}

.blog-page .blog-img-placeholder {
  font-size: 4rem;
  opacity: 0.85;
}

.blog-page .blog-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold, #d4a945);
  color: var(--green-900);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-page .blog-card-body {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--text-muted, #666);
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.blog-page .blog-card-body h2 {
  font-size: 1.3rem;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--green-900);
}

.blog-page .blog-card.featured .blog-card-body h2 {
  font-size: 1.6rem;
}

.blog-page .blog-card-body h2 a {
  color: inherit;
}

.blog-page .blog-card-body h2 a:hover {
  color: var(--green-600);
}

.blog-page .blog-card-body p {
  flex: 1;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 16px;
}

.blog-read-more {
  color: var(--green-700);
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
}

.blog-read-more:hover {
  color: var(--green-900);
  transform: translateX(3px);
}

/* Blog Article */
.blog-article .blog-article-meta {
  display: flex;
  gap: 18px;
  font-size: 13px;
  color: var(--text-muted, #666);
  margin-bottom: 24px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.article-lead-img {
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  height: 260px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.article-img-placeholder {
  font-size: 5rem;
}

/* Page header breadcrumb-specific */
.page-header .breadcrumb {
  margin-bottom: 14px;
}

/* Gallery Grid (for galeri.html) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.gallery-card {
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  padding: 20px;
  text-align: center;
}

.gallery-card:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 32px rgba(10, 61, 46, 0.25);
}

.gallery-card-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.gallery-card h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.gallery-card p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* FAQ Page extended styles */
.faq-page-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: all 0.25s;
}

.faq-page-item[open] {
  border-color: var(--green-600);
  box-shadow: 0 4px 16px rgba(10, 61, 46, 0.06);
}

.faq-page-item summary {
  padding: 20px 26px;
  font-weight: 600;
  cursor: pointer;
  font-size: 1.05rem;
  color: var(--green-900);
  list-style: none;
  position: relative;
  padding-right: 50px;
}

.faq-page-item summary::-webkit-details-marker {
  display: none;
}

.faq-page-item summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--green-600);
  transition: transform 0.3s;
  font-weight: 300;
}

.faq-page-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-page-item .faq-answer {
  padding: 0 26px 22px;
  color: var(--text-body);
  line-height: 1.75;
}

/* Responsive adjustments */
@media (max-width: 1080px) {
  .content-layout { grid-template-columns: 1fr 280px; gap: 32px; }
  .blog-page .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-page .blog-card.featured { grid-column: span 2; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .route-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .content-layout { grid-template-columns: 1fr; gap: 32px; }
  .content-main { padding: 32px 22px !important; }
  .feature-grid { grid-template-columns: 1fr; }
  .blog-page .blog-grid { grid-template-columns: 1fr; }
  .blog-page .blog-card.featured { grid-column: span 1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-box { padding: 28px 22px; }
  .cta-box .cta-actions { flex-direction: column; }
  .cta-box .cta-actions .btn { width: 100%; }
  .article-lead-img { height: 180px; }
  .article-img-placeholder { font-size: 3.5rem; }
}

@media (max-width: 540px) {
  .content-main h2 { font-size: 1.5rem; }
  .content-main .content-hero h2 { font-size: 1.4rem; }
  .route-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 20px; }
  .process-list li { padding-left: 44px; }
  .process-list li::before { width: 30px; height: 30px; font-size: 15px; }
}

/* ============================================
   PARTNERS / MEMBERSHIPS
   ============================================ */

.partners {
  background: var(--white, #fdfaf3);
}

.partners .section-head.center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.partner-card {
  background: #fff;
  border: 1px solid rgba(10, 46, 35, .1);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(10, 46, 35, .12);
  border-color: var(--gold, #d4a945);
}

.partner-logo {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-800, #0d3d2e), var(--green-700, #125240));
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  color: var(--gold, #d4a945);
  box-shadow: 0 6px 18px rgba(10, 46, 35, .25);
}

.partner-logo svg {
  width: 34px;
  height: 34px;
}

.partner-card h3 {
  font-size: 1.25rem;
  margin: 0 0 .6rem;
  color: var(--green-900, #0a2e23);
}

.partner-card p {
  font-size: .94rem;
  line-height: 1.55;
  color: #555;
  margin: 0 0 1.25rem;
  flex-grow: 1;
}

.partner-link {
  display: inline-block;
  color: var(--green-800, #0d3d2e);
  font-weight: 700;
  font-size: .9rem;
  padding: .55rem 1.1rem;
  border: 2px solid var(--green-800, #0d3d2e);
  border-radius: 30px;
  transition: background .25s, color .25s;
}

.partner-card:hover .partner-link {
  background: var(--green-800, #0d3d2e);
  color: #fff;
}

.partner-card-info {
  background: linear-gradient(135deg, var(--green-900, #0a2e23), var(--green-800, #0d3d2e));
  color: #fff;
  border-color: transparent;
}
.partner-card-info h3 { color: #fff; }
.partner-card-info p  { color: rgba(255, 255, 255, .85); }
.partner-card-info .partner-link {
  color: var(--gold, #d4a945);
  border-color: var(--gold, #d4a945);
  cursor: default;
}
.partner-card-info:hover {
  transform: translateY(-6px);
}
.partner-card-info:hover .partner-link {
  background: var(--gold, #d4a945);
  color: var(--green-900, #0a2e23);
}
.partner-card-info .partner-logo {
  background: rgba(255, 255, 255, .1);
  color: var(--gold, #d4a945);
}

@media (max-width: 960px) {
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .partners-grid { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER MEMBERSHIPS (BACKLINKS)
   ============================================ */

.footer-memberships {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: 1.25rem 0;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: .9rem;
  color: rgba(255, 255, 255, .7);
}

.footer-memberships span {
  color: rgba(255, 255, 255, .55);
}

.footer-memberships .sep {
  opacity: .4;
}

.footer-memberships a {
  color: var(--gold, #d4a945);
  text-decoration: none;
  font-weight: 600;
  padding: .25rem .55rem;
  border-radius: 6px;
  transition: background .2s, color .2s;
}

.footer-memberships a:hover {
  background: rgba(212, 169, 69, .12);
  color: #f0c86a;
}

/* ============================================
   FOOTER SIGNATURE (emixhas)
   ============================================ */

.footer-signature {
  margin-top: 1rem !important;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
  text-align: center;
  letter-spacing: .3px;
}

.footer-signature a {
  color: var(--gold, #d4a945);
  text-decoration: none;
  font-weight: 600;
  transition: color .2s, opacity .2s;
  position: relative;
}

.footer-signature a:hover {
  color: #f0c86a;
  opacity: 1;
}

.footer-signature a::after {
  content: '↗';
  font-size: .75rem;
  margin-left: 3px;
  opacity: .6;
}
