/* ============================================
   AMA AUTHENTIC KLINING — Global Styles
   Aesthetic: Refined Luxury / Editorial Clean
   Fonts: Cormorant Garamond + DM Sans
============================================ */

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

:root {
  --primary: #1a5c48;
  --primary-light: #2a7a61;
  --primary-pale: #e8f5f0;
  --accent: #c9a227;
  --accent-light: #f0dc8a;
  --foreground: #0e1f19;
  --muted: #f5f3ef;
  --muted-fg: #6b7c75;
  --card: #ffffff;
  --border: #d6e8e2;
  --text: #1c2e28;
  --text-light: #5a7268;
  --white: #ffffff;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 2px 20px rgba(26,92,72,0.08);
  --shadow-lg: 0 8px 40px rgba(26,92,72,0.15);

  --nav-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

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

.text-center { text-align: center; }
.mt-10 { margin-top: 2.5rem; }
.bg-muted { background: var(--muted); }

/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
  animation-delay: var(--delay, 0s);
}

/* Intersection observer adds .visible class for scroll-triggered */
.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NAVBAR
============================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark img {
  width: 42px; height: 42px;
  border-radius: 10px;
  object-fit: cover;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--foreground); }
.logo-sub { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-fg); margin-top: 2px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  padding: 7px 15px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: var(--primary-pale);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-light);
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--primary); }

/* Buttons */
.btn-primary {
  background: var(--primary);
  color: var(--white);
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { background: var(--primary-light); transform: translateY(-1px); }
.btn-primary.btn-lg { padding: 14px 32px; font-size: 1rem; }

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.9);
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.35);
  transition: background 0.2s, border-color 0.2s;
  display: inline-block;
  cursor: pointer;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.btn-ghost.btn-lg { padding: 14px 32px; font-size: 1rem; }

.btn-ghost-white {
  background: transparent;
  color: var(--white);
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: background 0.2s;
  display: inline-block;
  cursor: pointer;
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.12); }
.btn-ghost-white.btn-lg { padding: 14px 32px; font-size: 1rem; }

.btn-outline {
  background: transparent;
  color: var(--primary);
  padding: 11px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1.5px solid var(--primary);
  transition: background 0.2s, color 0.2s;
  display: inline-block;
  cursor: pointer;
}
.btn-outline:hover { background: var(--primary); color: var(--white); }

.btn-accent {
  background: var(--accent);
  color: #3a2700;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
  cursor: pointer;
  border: none;
}
.btn-accent:hover { background: #d9b13a; transform: translateY(-1px); }
.btn-accent.btn-lg { padding: 14px 32px; font-size: 1rem; }

/* Form submit button */
.btn-submit {
  background: var(--primary);
  color: var(--white);
  padding: 14px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  width: 100%;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-submit:hover { background: var(--primary-light); transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--foreground);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px 16px;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--text-light);
  transition: background 0.2s, color 0.2s;
}
.mobile-link:hover { background: var(--primary-pale); color: var(--primary); }
.mobile-btn { margin-top: 8px; text-align: center; }

/* ============================================
   HERO
============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(14,31,25,0.82) 0%, rgba(14,31,25,0.5) 55%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: var(--nav-h);
  max-width: 560px;
  margin-left: max(24px, calc(50vw - 600px));
}
.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero-content > p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 420px;
  margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.arrow { transition: transform 0.2s; }
.btn-primary:hover .arrow { transform: translateX(4px); }

/* Page Hero (inner pages) */
.page-hero {
  background: var(--primary);
  padding: calc(var(--nav-h) + 60px) 24px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,162,39,0.15) 0%, transparent 60%);
}
.page-hero .eyebrow { color: var(--accent-light); }
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
}
.page-hero p {
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

/* ============================================
   SECTION / HEADINGS
============================================ */
.section { padding: 96px 0; }
.section-heading {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.section-heading h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--foreground);
  margin: 6px 0 14px;
  line-height: 1.15;
}
.section-heading p {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* ============================================
   TRUST BAR
============================================ */
.trust-bar {
  padding: 60px 0;
  background: var(--card);
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.trust-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}
.trust-item h3 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.trust-item p { font-size: 0.88rem; color: var(--text-light); }

/* ============================================
   SERVICES GRID
============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s, transform 0.3s;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img img { transform: scale(1.06); }
.service-body { padding: 22px 24px 24px; }
.service-icon { font-size: 1.6rem; margin-bottom: 10px; }
.service-body h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--foreground);
}
.service-body p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 14px; }
.service-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  transition: letter-spacing 0.2s;
}
.service-link:hover { letter-spacing: 0.02em; }

/* ============================================
   GALLERY GRID
============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  cursor: pointer;
}
.gallery-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-card:hover img { transform: scale(1.06); }
.gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 16px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Filter buttons for gallery page */
.filter-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 48px; }
.filter-btn {
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
}
.stars { color: var(--accent); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card > p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--primary-pale);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; font-weight: 600; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-light); }

/* ============================================
   CTA SECTION
============================================ */
.cta-section {
  background: var(--primary);
  padding: 96px 24px;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(201,162,39,0.12);
}
.cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}
.cta-section p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 36px; position: relative; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ============================================
   FOOTER
============================================ */
footer {
  background: var(--foreground);
  color: rgba(255,255,255,0.85);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand .footer-logo img {
  width: 42px; height: 42px;
  border-radius: 10px;
}
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-sub { color: rgba(255,255,255,0.5); }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.footer-col h4 { font-size: 0.9rem; font-weight: 600; color: var(--white); margin-bottom: 16px; }
.footer-col a, .footer-col span {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
  transition: color 0.2s;
  cursor: default;
}
.footer-col a:hover { color: rgba(255,255,255,0.9); cursor: pointer; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.825rem;
  color: rgba(255,255,255,0.35);
}
.footer-social { display: flex; gap: 20px; }
.footer-social a {
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-social a:hover { color: rgba(255,255,255,0.85); }

/* ============================================
   WHATSAPP BUTTON
============================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 200;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: scaleIn 0.5s ease 1s both;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }

/* ============================================
   ABOUT PAGE
============================================ */
.about-hero-split {
  padding: calc(var(--nav-h) + 60px) 0 80px;
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-content .eyebrow { margin-bottom: 10px; }
.split-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}
.split-content h1 span { color: var(--primary); }
.split-content p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1.02rem;
  line-height: 1.75;
}
.split-img { position: relative; }
.split-img img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; }
.split-badge {
  position: absolute;
  bottom: -24px; left: -24px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
}
.split-badge .num { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; }
.split-badge .label { font-size: 0.8rem; opacity: 0.75; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.value-card { text-align: center; }
.value-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
}
.value-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.value-card p { font-size: 0.875rem; color: var(--text-light); line-height: 1.65; }

.coverage-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--shadow);
}
.chip svg { color: var(--primary); }

/* ============================================
   SERVICES PAGE
============================================ */
.services-list { display: flex; flex-direction: column; gap: 80px; }
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-row.reverse .service-row-img { order: 2; }
.service-row.reverse .service-row-body { order: 1; }
.service-row-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.service-row-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.service-row-body h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.service-row-body > p { color: var(--text-light); margin-bottom: 20px; line-height: 1.75; }
.benefit-list { list-style: none; margin-bottom: 12px; }
.benefit-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.benefit-list li::before {
  content: '✓';
  display: inline-flex;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--primary-pale);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ideal-for { font-size: 0.8rem; color: var(--text-light); margin-bottom: 20px; }
.ideal-for strong { color: var(--text); }

/* ============================================
   PRICING PAGE
============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}
.pricing-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  position: relative;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.popular {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.pricing-card.popular:hover { transform: scale(1.04) translateY(-4px); }
.popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #3a2700;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}
.pricing-name { font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }
.pricing-desc { font-size: 0.85rem; opacity: 0.7; margin-bottom: 24px; }
.pricing-unit { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.6; display: block; }
.pricing-price { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 700; line-height: 1.1; margin-bottom: 28px; }
.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  margin-bottom: 10px;
}
.pricing-features li::before {
  content: '✓';
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--primary-pale);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pricing-card.popular .pricing-features li::before {
  background: rgba(255,255,255,0.2);
  color: var(--accent-light);
}
.pricing-card .btn-primary { width: 100%; text-align: center; justify-content: center; }
.pricing-card.popular .btn-primary { background: var(--accent); color: #3a2700; }
.pricing-card.popular .btn-primary:hover { background: #d9b13a; }

.custom-quote {
  margin-top: 64px;
  text-align: center;
  background: var(--muted);
  border-radius: var(--radius);
  padding: 60px 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.custom-quote h3 { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; margin-bottom: 12px; }
.custom-quote p { color: var(--text-light); margin-bottom: 24px; }

/* ============================================
   CONTACT PAGE
============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 56px;
}
.contact-info-list { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-info-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-info-item .label { font-size: 0.8rem; color: var(--text-light); }
.contact-info-item .value { font-weight: 500; font-size: 0.95rem; }
.contact-info-item .value a { color: var(--text); transition: color 0.2s; }
.contact-info-item .value a:hover { color: var(--primary); }
.contact-social { display: flex; flex-direction: column; gap: 10px; padding-top: 24px; border-top: 1px solid var(--border); }
.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s;
}
.social-link.wa { background: rgba(37,211,102,0.1); color: #16a34a; }
.social-link.wa:hover { background: rgba(37,211,102,0.18); }
.social-link.ig { background: var(--primary-pale); color: var(--primary); }
.social-link.ig:hover { background: #d1ede5; }

/* Forms */
.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7c75' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,92,72,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.success-msg {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px;
}
.success-msg.show { display: flex; }
.success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 2rem;
}
.success-msg h3 { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; margin-bottom: 10px; }
.success-msg p { color: var(--text-light); margin-bottom: 24px; }

/* ============================================
   GALLERY FULL PAGE
============================================ */
.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ============================================
   FAQ / ACCORDION (Pricing page)
============================================ */
.faq-list { max-width: 700px; margin: 64px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  text-align: left;
}
.faq-trigger svg {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--primary);
}
.faq-item.open .faq-trigger svg { transform: rotate(180deg); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-body p {
  padding: 0 4px 18px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .pricing-card.popular { transform: none; }
  .service-row { grid-template-columns: 1fr; gap: 32px; }
  .service-row.reverse .service-row-img { order: 0; }
  .service-row.reverse .service-row-body { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .split-grid { grid-template-columns: 1fr; }
  .split-badge { bottom: -16px; left: -8px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .gallery-grid, .gallery-full-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; gap: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .section { padding: 64px 0; }
  .hero-content { padding: 0 20px; padding-top: var(--nav-h); margin-left: 0; }
}

@media (max-width: 480px) {
  .gallery-grid, .gallery-full-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
}
#navbar,
header,
nav {
  background: #ffffff !important;
  background-color: #ffffff !important;
}