/* ============================================================
   HENNA BY SANIYA – PREMIUM DESIGN SYSTEM
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300;0,14..32,400;0,14..32,500;0,14..32,600;0,14..32,700;0,14..32,800;1,14..32,300;1,14..32,400&display=swap');

/* ─── CSS VARIABLES ─────────────────────────────────────── */
:root {
  /* Colors */
  --green-deep: #1E3A10;
  --green-mid: #2D5016;
  --green-light: #3D6B1E;
  --brown-dark: #3C1F0A;
  --brown-mid: #6B3A1F;
  --gold: #C9A84C;
  --gold-light: #E2C97E;
  --gold-pale: #F0E0A8;
  --cream: #FAF6F0;
  --cream-dark: #F2EBE0;
  --warm-white: #FFFDF9;
  --text-dark: #1A1008;
  --text-mid: #4A3420;
  --text-light: #8A7060;
  --border: rgba(201, 168, 76, 0.25);

  /* Typography */
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-pad: 100px 0;
  --container: 1280px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 0.25s;
  --dur-med: 0.45s;
  --dur-slow: 0.7s;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(60, 31, 10, 0.08);
  --shadow-md: 0 8px 32px rgba(60, 31, 10, 0.12);
  --shadow-lg: 0 20px 60px rgba(60, 31, 10, 0.18);
  --shadow-gold: 0 8px 30px rgba(201, 168, 76, 0.25);

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-xl: 40px;
}

/* ─── RESET & BASE ──────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--warm-white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.65;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  outline: none;
}

/* ─── UTILITY CLASSES ───────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-title em {
  font-style: italic;
  color: var(--green-mid);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 560px;
  margin-top: 16px;
}

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--dur-med) var(--ease);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.5s var(--ease);
}

.btn:hover::before {
  transform: translateX(120%) skewX(-15deg);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
  color: #fff;
  box-shadow: 0 6px 24px rgba(45, 80, 22, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(45, 80, 22, 0.45);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--text-dark);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(201, 168, 76, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--warm-white);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--border);
}

.btn-outline-dark:hover {
  background: var(--green-mid);
  color: #fff;
  border-color: var(--green-mid);
  transform: translateY(-3px);
}

/* ─── SCROLL REVEAL ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ─── DECORATIVE SVG PATTERN ────────────────────────────── */
.pattern-bg {
  position: relative;
  overflow: hidden;
}

.pattern-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23C9A84C' stroke-width='0.5' opacity='0.18'%3E%3Ccircle cx='60' cy='60' r='55'/%3E%3Ccircle cx='60' cy='60' r='40'/%3E%3Ccircle cx='60' cy='60' r='25'/%3E%3Ccircle cx='60' cy='60' r='10'/%3E%3Cline x1='5' y1='60' x2='115' y2='60'/%3E%3Cline x1='60' y1='5' x2='60' y2='115'/%3E%3Cline x1='21' y1='21' x2='99' y2='99'/%3E%3Cline x1='99' y1='21' x2='21' y2='99'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px 120px;
  pointer-events: none;
  z-index: 0;
}

/* ─── NAVBAR ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all var(--dur-med) var(--ease);
}

.navbar.scrolled {
  background: rgba(255, 253, 249, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(60, 31, 10, 0.10);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}

.nav-logo img {
  height: 72px;
  width: 72px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  padding: 6px;
  border: 1.5px solid rgba(193, 154, 76, 0.45);
  box-shadow: 0 2px 16px rgba(0,0,0,0.10), 0 0 0 3px rgba(193,154,76,0.10);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
}

.nav-logo:hover img {
  transform: scale(1.06);
  box-shadow: 0 6px 24px rgba(0,0,0,0.14), 0 0 0 4px rgba(193,154,76,0.22);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text .brand-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.nav-logo-text .brand-sub {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* Transparent navbar — white text */
.navbar:not(.scrolled) .brand-name {
  color: #fff;
}

.navbar:not(.scrolled) .brand-sub {
  color: var(--gold-light);
}

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

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--dur-fast) var(--ease);
}

.navbar:not(.scrolled) .nav-links a {
  color: rgba(255, 255, 255, 0.88);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--dur-med) var(--ease);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--gold);
}

.navbar:not(.scrolled) .nav-links a:hover {
  color: var(--gold-light);
}

.nav-cta {
  padding: 10px 26px !important;
  background: linear-gradient(135deg, var(--green-mid), var(--green-deep)) !important;
  color: #fff !important;
  border-radius: 50px;
  transition: all var(--dur-med) var(--ease) !important;
}

.navbar:not(.scrolled) .nav-cta {
  background: rgba(255, 255, 255, 0.18) !important;
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
  color: #fff !important;
  backdrop-filter: blur(10px);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.4) !important;
}

.nav-cta::after {
  display: none !important;
}

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

.nav-hamburger span {
  width: 26px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--dur-med) var(--ease);
  display: block;
}

.navbar:not(.scrolled) .nav-hamburger span {
  background: #fff;
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: var(--text-dark) !important;
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  background: var(--text-dark) !important;
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: min(360px, 100vw);
  height: 100vh;
  background: var(--warm-white);
  z-index: 1050;
  flex-direction: column;
  padding: 80px 40px 40px;
  gap: 8px;
  box-shadow: -20px 0 60px rgba(60, 31, 10, 0.2);
  transition: right var(--dur-slow) var(--ease);
  overflow-y: auto;
}

.nav-mobile.open {
  right: 0;
}

/* Close button inside mobile nav */
.nav-mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(45, 80, 22, 0.08);
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast), color var(--dur-fast);
}

.nav-mobile-close:hover {
  background: var(--green-mid);
  color: #fff;
}

.nav-mobile a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--dur-fast) var(--ease), padding-left var(--dur-fast) var(--ease);
}

.nav-mobile a:hover {
  color: var(--green-mid);
  padding-left: 12px;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(30, 58, 16, 0.5);
  z-index: 1040;
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease);
}

/* Mobile nav link slide-in animation */
@keyframes navLinkSlideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.nav-mobile.open a {
  animation: navLinkSlideIn 0.35s var(--ease) both;
}

.nav-mobile.open a:nth-child(2) { animation-delay: 0.06s; }
.nav-mobile.open a:nth-child(3) { animation-delay: 0.12s; }
.nav-mobile.open a:nth-child(4) { animation-delay: 0.18s; }
.nav-mobile.open a:nth-child(5) { animation-delay: 0.24s; }
.nav-mobile.open a:nth-child(6) { animation-delay: 0.30s; }
.nav-mobile.open a:nth-child(7) { animation-delay: 0.36s; }

/* Mobile close button slide-in */
@keyframes closeBtnFadeIn {
  from { opacity: 0; transform: rotate(-90deg) scale(0.7); }
  to   { opacity: 1; transform: rotate(0deg)   scale(1);   }
}

.nav-mobile.open .nav-mobile-close {
  animation: closeBtnFadeIn 0.4s var(--ease) both;
}

/* ─── PAGE BANNER (inner pages) ─────────────────────────── */
.page-banner {
  min-height: 420px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--brown-dark) 60%, var(--green-deep) 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23C9A84C' stroke-width='0.6' opacity='0.15'%3E%3Ccircle cx='100' cy='100' r='90'/%3E%3Ccircle cx='100' cy='100' r='70'/%3E%3Ccircle cx='100' cy='100' r='50'/%3E%3Ccircle cx='100' cy='100' r='30'/%3E%3Ccircle cx='100' cy='100' r='10'/%3E%3Cline x1='10' y1='100' x2='190' y2='100'/%3E%3Cline x1='100' y1='10' x2='100' y2='190'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}

.page-banner .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-banner h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.page-banner h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.page-banner p {
  margin-top: 16px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.05em;
}

.breadcrumb a {
  color: var(--gold-light);
  transition: color var(--dur-fast);
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb span {
  color: var(--gold);
  font-size: 1rem;
  opacity: 0.8;
}

/* ─── HOME: HERO ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--green-deep) 0%, #2a1505 50%, var(--green-deep) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='180' height='180' viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23C9A84C' stroke-width='0.5' opacity='0.12'%3E%3Ccircle cx='90' cy='90' r='80'/%3E%3Ccircle cx='90' cy='90' r='60'/%3E%3Ccircle cx='90' cy='90' r='40'/%3E%3Ccircle cx='90' cy='90' r='20'/%3E%3Ccircle cx='90' cy='90' r='5'/%3E%3Cline x1='10' y1='90' x2='170' y2='90'/%3E%3Cline x1='90' y1='10' x2='90' y2='170'/%3E%3Cline x1='33' y1='33' x2='147' y2='147'/%3E%3Cline x1='147' y1='33' x2='33' y2='147'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 180px;
  pointer-events: none;
}

/* Floating leaves */
.hero-leaf {
  position: absolute;
  pointer-events: none;
  opacity: 0.15;
}

.hero-leaf svg {
  width: 100%;
  height: 100%;
}

.hero-leaf-1 {
  top: 10%;
  right: 8%;
  width: 280px;
  height: 280px;
  animation: floatLeaf 8s ease-in-out infinite;
}

.hero-leaf-2 {
  bottom: 12%;
  left: 5%;
  width: 200px;
  height: 200px;
  animation: floatLeaf 10s ease-in-out infinite reverse;
}

.hero-leaf-3 {
  top: 60%;
  right: 3%;
  width: 140px;
  height: 140px;
  animation: floatLeaf 7s ease-in-out infinite 2s;
}

@keyframes floatLeaf {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(6deg);
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  min-height: 100vh;
  padding: 120px 0 80px;
}

.hero-content {
  color: #fff;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.9s var(--ease) 0.2s forwards;
}



.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1s var(--ease) 0.4s forwards;
}

.hero-heading em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-desc {
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  max-width: 460px;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.9s var(--ease) 0.6s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.9s var(--ease) 0.8s forwards;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0;
  animation: heroFadeUp 0.9s var(--ease) 1s forwards;
}

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

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateX(60px);
  animation: heroFadeLeft 1.1s var(--ease) 0.5s forwards;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-image-ring {
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotateSlow 30s linear infinite;
}

@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.hero-image-ring::before {
  content: '';
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  border: 1px dashed rgba(201, 168, 76, 0.4);
}

.hero-image-inner {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  overflow: hidden;
  animation: rotateSlow 30s linear infinite reverse;
  position: relative;
  z-index: 2;
}

.hero-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-badge {
  position: absolute;
  bottom: 40px;
  left: -30px;
  background: var(--warm-white);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  animation: rotateSlow 30s linear infinite reverse;
  z-index: 3;
}

.hero-badge-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.hero-badge-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.hero-badge-text span {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── HOME: SERVICES ────────────────────────────────────── */
.services-home {
  padding: var(--section-pad);
  background: var(--warm-white);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 70px;
}

.section-header .section-subtitle {
  margin: 14px auto 0;
}

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

.service-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--dur-med) var(--ease);
  position: relative;
  group: true;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--gold), transparent, var(--green-mid));
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease);
  z-index: 0;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

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

.service-card-inner {
  position: relative;
  z-index: 1;
  background: var(--warm-white);
  border-radius: calc(var(--radius-lg) - 1px);
  overflow: hidden;
}

.service-card-num {
  position: absolute;
  top: 20px;
  left: 24px;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1;
  z-index: 2;
}

.service-card-img {
  height: 340px;
  overflow: hidden;
  position: relative;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.7s var(--ease);
}

.service-card:hover .service-card-img img {
  transform: scale(1.08);
}

.service-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(30, 58, 16, 0.7), transparent);
}

.service-card-body {
  padding: 28px 28px 32px;
}

.service-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.2;
}

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

.service-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-mid);
  transition: gap var(--dur-fast) var(--ease);
}

.service-card:hover .service-card-arrow {
  gap: 14px;
}

/* ─── HOME: WHY CHOOSE US ───────────────────────────────── */
.why-choose {
  padding: var(--section-pad);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 320px 1fr;
  gap: 60px;
  align-items: center;
}

.why-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  transition: all var(--dur-med) var(--ease);
}

.why-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
  background: rgba(255, 253, 249, 0.95);
}

.why-col.right .why-item:hover {
  transform: translateX(-8px);
}

.why-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 16px rgba(45, 80, 22, 0.3);
}

.why-text h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.why-text p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
}

.why-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.why-center-illustration {
  width: 220px;
  height: 260px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-cone-svg {
  filter: drop-shadow(0 12px 40px rgba(45, 80, 22, 0.3));
  animation: floatLeaf 6s ease-in-out infinite;
}

.why-center h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.why-center p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ─── HOME: WHAT WE OFFER ───────────────────────────────── */
.what-offer {
  padding: var(--section-pad);
  background: var(--warm-white);
}

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

.offer-card {
  text-align: center;
  padding: 50px 36px 44px;
  border-radius: var(--radius-xl);
  background: var(--cream);
  border: 1px solid transparent;
  transition: all var(--dur-med) var(--ease);
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green-mid));
  transform: scaleX(0);
  transition: transform var(--dur-med) var(--ease);
  transform-origin: left;
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
  background: var(--warm-white);
}

.offer-card:hover::before {
  transform: scaleX(1);
}

.offer-icon-wrap {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 2.2rem;
  box-shadow: 0 8px 28px rgba(45, 80, 22, 0.35);
  transition: transform var(--dur-med) var(--ease-bounce);
}

.offer-card:hover .offer-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
}

.offer-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.2;
}

.offer-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ─── HOME: CTA ─────────────────────────────────────────── */
.cta-section {
  padding: var(--section-pad);
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--brown-dark) 50%, var(--green-deep) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='160' height='160' viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23C9A84C' stroke-width='0.6' opacity='0.1'%3E%3Ccircle cx='80' cy='80' r='75'/%3E%3Ccircle cx='80' cy='80' r='55'/%3E%3Ccircle cx='80' cy='80' r='35'/%3E%3Ccircle cx='80' cy='80' r='15'/%3E%3Cline x1='5' y1='80' x2='155' y2='80'/%3E%3Cline x1='80' y1='5' x2='80' y2='155'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 160px;
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold-light);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 32px;
}

.cta-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.cta-heading em {
  font-style: italic;
  color: var(--gold-light);
}

.cta-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 44px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ─── ABOUT: INTRO ──────────────────────────────────────── */
.about-intro {
  padding: var(--section-pad);
  background: var(--warm-white);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-image-stack {
  position: relative;
  height: 550px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 85%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: 52%;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--warm-white);
}

.about-img-badge {
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  background: var(--warm-white);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.about-img-badge strong {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-mid);
  display: block;
}

.about-img-badge span {
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-content .section-subtitle {
  max-width: 100%;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.about-value-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--cream);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
  transition: all var(--dur-fast) var(--ease);
}

.about-value-item:hover {
  background: var(--cream-dark);
  transform: translateX(6px);
}

.about-value-item .icon {
  font-size: 1.5rem;
}

.about-value-item p {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* ─── ABOUT: COUNTERS ───────────────────────────────────── */
.about-counters {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--green-deep), var(--brown-dark));
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.counter-item {
  color: #fff;
  padding: 30px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

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

.counter-num {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.counter-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ─── SERVICES PAGE ─────────────────────────────────────── */
.services-page {
  padding: var(--section-pad);
  background: var(--warm-white);
}

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

.service-full-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--dur-med) var(--ease);
  position: relative;
}

.service-full-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.service-full-img {
  height: 320px;
  overflow: hidden;
  position: relative;
}

.service-full-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.7s var(--ease);
}

.service-full-card:hover .service-full-img img {
  transform: scale(1.05);
}

.service-category-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(30, 58, 16, 0.85);
  color: var(--gold-light);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.service-full-body {
  padding: 28px 28px 32px;
}

.service-full-body h3 {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-full-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.price-tag {
  display: flex;
  flex-direction: column;
}

.price-tag span {
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-tag strong {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--green-mid);
  line-height: 1.1;
}

/* ─── GALLERY PAGE ──────────────────────────────────────── */
.gallery-page {
  padding: var(--section-pad);
  background: var(--warm-white);
}

.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 28px;
  border-radius: 50px;
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-mid);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--green-mid);
  color: #fff;
  border-color: var(--green-mid);
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.3);
}

.gallery-masonry {
  columns: 3;
  column-gap: 20px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s var(--ease);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 58, 16, 0.85), transparent);
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #fff;
  font-weight: 500;
}

.gallery-zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  width: 52px;
  height: 52px;
  background: rgba(201, 168, 76, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 1.3rem;
  opacity: 0;
  transition: all var(--dur-med) var(--ease);
}

.gallery-item:hover .gallery-zoom-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.94);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.lightbox.open {
  display: flex;
}

/* X close button — fixed top-right of the overlay */
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2100;
  transition: background var(--dur-fast), border-color var(--dur-fast);
}

.lightbox-close:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--text-dark);
}

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  gap: 16px;
}

.lightbox-inner img {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
}

.lightbox-nav {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 1.6rem;
  transition: all var(--dur-fast) var(--ease);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.lightbox-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--text-dark);
}

.lightbox-prev,
.lightbox-next {
  position: static;
  transform: none;
}

/* ─── QUOTE PAGE ────────────────────────────────────────── */
.quote-section {
  padding: var(--section-pad);
  background: var(--warm-white);
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.quote-left {
  position: sticky;
  top: 100px;
}

.quote-left-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 500px;
  margin-bottom: 36px;
}

.quote-left-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.quote-info-card .icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.quote-info-card p {
  font-size: 0.88rem;
  color: var(--text-light);
}

.quote-info-card strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 2px;
}

/* ─── FORM STYLES ───────────────────────────────────────── */
.form-card {
  background: var(--warm-white);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

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

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: all var(--dur-fast) var(--ease);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  background: var(--warm-white);
  box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

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

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A7060' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 44px;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  padding: 17px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--dur-med) var(--ease);
  box-shadow: 0 6px 24px rgba(45, 80, 22, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(45, 80, 22, 0.45);
}

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

.form-success .success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--green-mid);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-light);
}

/* ─── CONTACT PAGE ──────────────────────────────────────── */
.contact-section {
  padding: var(--section-pad);
  background: var(--warm-white);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.contact-info-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 26px 28px;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--dur-med) var(--ease);
  flex: 1;
  min-width: 240px;
}

.contact-info-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.contact-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.3);
}

.contact-info-text span {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.contact-info-text strong {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  display: block;
  margin-bottom: 2px;
  /* Fix email overflow */
  word-break: break-all;
  overflow-wrap: break-word;
  max-width: 100%;
}

.contact-info-text p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

.map-wrap {
  margin-top: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.map-wrap iframe {
  width: 100%;
  height: 260px;
  border: none;
  display: block;
}

/* Social Links */
.social-links-section {
  margin-top: 32px;
}

.social-links-section h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.social-row {
  display: flex;
  gap: 14px;
}

.social-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--text-mid);
  transition: all var(--dur-fast) var(--ease);
  text-decoration: none;
}

.social-icon:hover {
  background: var(--green-mid);
  color: #fff;
  border-color: var(--green-mid);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.3);
}

/* ─── FOOTER ────────────────────────────────────────────── */
.footer {
  background: var(--text-dark);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-mid), var(--gold), var(--brown-mid));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.footer-logo img {
  height: 60px;
  width: 60px;
  object-fit: contain;
  border-radius: 50%;
  background: #ffffff;
  padding: 5px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.footer-logo-text .brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  line-height: 1;
}

.footer-logo-text .brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  transition: all var(--dur-fast) var(--ease);
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--green-mid);
  color: #fff;
  border-color: var(--green-mid);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--dur-fast) var(--ease);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul a::before {
  content: '›';
  color: var(--gold);
  font-size: 1.1rem;
  transition: margin var(--dur-fast) var(--ease);
}

.footer-col ul a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-col ul a:hover::before {
  margin-right: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
}

.footer-contact-item .icon,
.footer-contact-item i {
  font-size: 1rem;
  color: var(--gold);
  margin-top: 2px;
  min-width: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  text-align: center;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-credit-link {
  color: var(--gold);
  font-weight: 600;
  transition: color var(--dur-fast);
  text-decoration: none;
}

.footer-credit-link:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.footer-bottom span {
  color: var(--gold);
}

/* ─── WHATSAPP FLOATING ──────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 36px;
  right: 36px;
  z-index: 999;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  transition: all var(--dur-med) var(--ease-bounce);
  color: #fff;
  font-size: 1.8rem;
  text-decoration: none;
}

.whatsapp-float a:hover {
  transform: scale(1.15) translateY(-4px);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-float a::before {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: waPulse 2s ease-out infinite;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* ─── DIVIDER ───────────────────────────────────────────── */
.ornament-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 auto 20px;
}

.ornament-divider::before,
.ornament-divider::after {
  content: '';
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.ornament-divider::after {
  background: linear-gradient(to left, transparent, var(--gold));
}

.ornament-divider span {
  color: var(--gold);
  font-size: 1.2rem;
}

/* ─── ABOUT WHY GRID ────────────────────────────────────── */
.about-why {
  padding: var(--section-pad);
  background: var(--cream);
}

.about-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.about-why-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--dur-med) var(--ease);
}

.about-why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.about-why-card .icon {
  font-size: 2.5rem;
  margin-bottom: 18px;
  display: block;
}

.about-why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

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

/* ─── FONT AWESOME SOCIAL ICONS ──────────────────────────── */

/* Footer social row */
.footer-social a i {
  font-size: 1.05rem;
  line-height: 1;
}

.footer-social a:nth-child(1):hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  color: #fff;
}

.footer-social a:nth-child(2):hover {
  background: #1877F2;
  border-color: #1877F2;
  color: #fff;
}

.footer-social a:nth-child(3):hover {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
}

.footer-social a:nth-child(4):hover {
  background: #FF0000;
  border-color: #FF0000;
  color: #fff;
}

/* Contact page social row */
.social-row .social-icon i {
  font-size: 1.1rem;
  line-height: 1;
}

.social-row a:nth-child(1):hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  color: #fff;
}

.social-row a:nth-child(2):hover {
  background: #1877F2;
  border-color: #1877F2;
  color: #fff;
}

.social-row a:nth-child(3):hover {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
}

.social-row a:nth-child(4):hover {
  background: #FF0000;
  border-color: #FF0000;
  color: #fff;
}

/* WhatsApp floating button */
.whatsapp-float a i {
  font-size: 1.9rem;
  line-height: 1;
  color: #fff;
}