/* ============================================
   SOUM SAM COMPANY — Ultra-Premium Dubai Style
   Colors: #1a3a2a (green), #D4AF37 (gold)
   ============================================ */

:root {
  --gold: #D4AF37;
  --gold-dim: rgba(212, 175, 55, 0.85);
  --gold-soft: rgba(212, 175, 55, 0.25);
  --green: #1a3a2a;
  --green-dark: #0f241a;
  --green-soft: rgba(26, 58, 42, 0.6);
  --bg: #050806;
  --bg2: #080d0a;
  --text: rgba(255, 255, 255, 0.92);
  --text-muted: rgba(255, 255, 255, 0.75);
  --text-faint: rgba(255, 255, 255, 0.55);
  --glass: rgba(10, 18, 14, 0.65);
  --glass-border: rgba(212, 175, 55, 0.15);
  --container: 1200px;
  --radius: 20px;
  --radius-lg: 28px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

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

body {
  margin: 0;
  min-height: 100%;
  color: var(--text);
  background: var(--bg);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  letter-spacing: 0.02em;
  overflow-x: hidden;
}

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

.srOnly {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.skip {
  position: absolute;
  left: 16px; top: 12px;
  padding: 12px 16px;
  background: var(--green);
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  color: var(--gold);
  font-size: 13px;
  transform: translateY(-150%);
  transition: transform 0.2s var(--ease-out);
  z-index: 1000;
}
.skip:focus {
  transform: translateY(0);
  outline: none;
  box-shadow: 0 0 0 4px var(--gold-soft);
}

/* ========== HEADER — Glassmorphism Nav ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s, border-color 0.4s;
}
.header.isScrolled {
  background: rgba(5, 8, 6, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand__logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
}

.brand__text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.brand__name {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.22em;
  color: var(--gold);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand__tag {
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.12em;
}

.nav__toggle {
  display: none;
  appearance: none;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 14px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav__toggleLines {
  display: block;
  width: 22px;
  height: 14px;
  background: linear-gradient(
    to bottom,
    currentColor 0 2px,
    transparent 2px 5px,
    currentColor 5px 7px,
    transparent 7px 10px,
    currentColor 10px 12px,
    transparent 12px
  );
  background-size: 100% 14px;
  border-radius: 2px;
}

.nav__menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.nav__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 12px 18px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  transition: color 0.25s, background 0.25s, border-color 0.25s;
  border: 1px solid transparent;
}
.nav__link:hover {
  color: var(--gold);
  background: var(--green-soft);
  border-color: var(--gold-soft);
}

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

.header__contactBtns {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__iconBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid transparent;
  color: inherit;
  transition: color 0.25s, background 0.25s, border-color 0.25s, transform 0.2s;
}

.header__iconBtn--phone {
  color: var(--gold);
  border-color: var(--gold-soft);
  background: rgba(212, 175, 55, 0.08);
}

.header__iconBtn--phone:hover {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
  transform: scale(1.06);
}

.header__iconBtn--wa {
  color: #25D366;
  border-color: rgba(37, 211, 102, 0.4);
  background: rgba(37, 211, 102, 0.12);
}

.header__iconBtn--wa:hover {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  transform: scale(1.06);
}

.header__iconBtnIcon {
  width: 18px;
  height: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: var(--text);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.pill:hover {
  border-color: var(--gold-soft);
  box-shadow: 0 0 0 3px var(--gold-soft);
}

.lang {
  display: flex;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  padding: 4px;
}
.lang__btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--text-faint);
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
}
.lang__btn[aria-pressed="true"] {
  background: linear-gradient(180deg, rgba(212,175,55,0.2), rgba(212,175,55,0.08));
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(212,175,55,0.2);
}

/* ========== HERO — Full-Screen + Parallax ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__bgImage {
  position: absolute;
  inset: -10% -10% -10% -10%;
  width: 120%;
  height: 120%;
  background-image: url("https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=1920");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  transition: transform 0.1s linear;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 8, 6, 0.75) 0%,
    rgba(26, 58, 42, 0.6) 40%,
    rgba(5, 8, 6, 0.92) 100%
  );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.hero__inner {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero__logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: contain;
  margin: 0 auto 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1s var(--ease-out) 0.2s forwards;
}

.hero__kicker {
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin: 0 0 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1s var(--ease-out) 0.35s forwards;
}

.hero__title {
  margin: 0;
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeUp 1s var(--ease-out) 0.45s forwards;
}

.hero__titleLine {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.hero__titleLine--1 {
  font-size: clamp(42px, 8vw, 96px);
  color: var(--gold);
  text-shadow: 0 4px 40px rgba(212, 175, 55, 0.3);
}

.hero__titleLine--2 {
  font-size: clamp(18px, 2.5vw, 28px);
  color: var(--text);
  margin-top: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__slogan {
  margin: 28px 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-style: italic;
  color: var(--text-muted);
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1s var(--ease-out) 0.6s forwards;
}

.hero__philosophy {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin: 0 0 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1s var(--ease-out) 0.7s forwards;
}

.hero__lead {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 56ch;
  margin: 0 auto 36px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1s var(--ease-out) 0.8s forwards;
}

.hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1s var(--ease-out) 0.95s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.hero__scrollLine {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold-soft), transparent);
  border-radius: 999px;
  animation: scrollPulse 2s ease-in-out infinite;
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s, background 0.3s, border-color 0.3s;
}
.btn:active { transform: translateY(2px); }

.btn--primary {
  background: linear-gradient(180deg, var(--gold), #c9a227);
  color: #0a0a0a;
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.25);
}
.btn--primary:hover {
  box-shadow: 0 24px 60px rgba(212, 175, 55, 0.35);
  background: linear-gradient(180deg, #e0bc45, var(--gold));
}

.btn--secondary {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border-color: var(--glass-border);
  color: var(--text);
}
.btn--secondary:hover {
  border-color: var(--gold-soft);
  background: var(--green-soft);
}

.btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn--wa {
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  border-color: var(--gold-soft);
  color: var(--text);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.btn--wa:hover {
  border-color: var(--gold-dim);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.btn--email {
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  border-color: var(--gold-soft);
  color: var(--text);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.btn--email:hover {
  border-color: var(--gold-dim);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

/* ========== STATS BAR ========== */
.section--stats {
  padding: 48px 0;
  background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
  border-top: 1px solid var(--gold-soft);
  border-bottom: 1px solid var(--gold-soft);
}

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

.stat {
  padding: 24px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--gold-soft);
  background: rgba(0, 0, 0, 0.2);
  transition: transform 0.4s var(--ease-out), opacity 0.6s var(--ease-out);
}
.stat.animate.isVisible {
  transform: translateY(0);
  opacity: 1;
}
.stat.animate:not(.isVisible) {
  transform: translateY(24px);
  opacity: 0;
}

.stat__value {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
}
.stat__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ========== SECTIONS ========== */
.section {
  padding: 100px 0;
  position: relative;
}
.section--alt {
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(26, 58, 42, 0.25), transparent 60%),
    linear-gradient(180deg, rgba(5, 8, 6, 0.3) 0%, transparent 30%);
}

.section__header {
  max-width: 72ch;
  margin-bottom: 48px;
}

.section__kicker {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
}

.section__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  margin: 0;
  color: var(--text);
  letter-spacing: 0.02em;
}

.section__lead {
  margin: 16px 0 0;
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========== GLASSMORPHISM SERVICE CARDS ========== */
.servicesGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.serviceCard {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  transition: transform 0.5s var(--ease-out), opacity 0.6s var(--ease-out);
}
.serviceCard.animate:not(.isVisible) {
  transform: translateY(40px);
  opacity: 0;
}
.serviceCard.animate.isVisible {
  transform: translateY(0);
  opacity: 1;
}

/* Full-card background images — high-quality Unsplash, cover entire card */
.serviceCard__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s var(--ease-out);
}
/* 1) Management Consulting — professional businesswoman in meeting */
.serviceCard--consulting .serviceCard__bg {
  background-image: url("https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?w=800&q=90&fit=crop");
  background-position: center center;
}
/* 2) Digital Marketing */
.serviceCard--digital .serviceCard__bg {
  background-image: url("https://images.unsplash.com/photo-1611162617213-7d7a39e9b1d7?w=800&q=90&fit=crop");
  background-position: center center;
}
/* 3) Business Brokerage */
.serviceCard--brokerage .serviceCard__bg {
  background-image: url("https://images.unsplash.com/photo-1521791136064-7986c2920216?w=800&q=90&fit=crop");
  background-position: center center;
}
/* 4) Corporate Services */
.serviceCard--corporate .serviceCard__bg {
  background-image: url("https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=800&q=90&fit=crop");
  background-position: center center;
}
.serviceCard:hover .serviceCard__bg {
  transform: scale(1.04);
}

/* Dark overlay — full-card, ensures text is always readable (Gulf-style) */
.serviceCard__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 8, 6, 0.45) 0%,
    rgba(15, 24, 18, 0.75) 50%,
    rgba(5, 8, 6, 0.92) 100%
  );
  pointer-events: none;
}
.serviceCard__overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(212, 175, 55, 0.04) 100%);
  pointer-events: none;
}

/* Content panel — minimal glass, text over dark overlay */
.serviceCard__glass {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, transparent 0%, rgba(5, 8, 6, 0.4) 60%, rgba(5, 8, 6, 0.75) 100%);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.serviceCard__glass::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 90%, var(--gold-soft), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  border-radius: inherit;
}
.serviceCard:hover .serviceCard__glass {
  border-color: var(--gold-soft);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(212, 175, 55, 0.12);
}
.serviceCard:hover .serviceCard__glass::before {
  opacity: 1;
}

.serviceCard__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold);
  border: 1px solid var(--gold-soft);
  background: rgba(26, 58, 42, 0.5);
  margin-bottom: 20px;
  position: relative;
}

.serviceCard__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 12px;
  position: relative;
}

.serviceCard__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  position: relative;
}

/* Banner CTA */
.banner {
  margin-top: 48px;
  padding: 32px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: linear-gradient(135deg, var(--green-soft), rgba(15, 36, 26, 0.6));
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.banner__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}
.banner__text {
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 15px;
}

/* ========== ABOUT ========== */
.section--about {
  position: relative;
  min-height: 520px;
}
.about__bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1518684079-3c830dcef090?w=1920&q=85");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.about__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(5, 8, 6, 0.94) 0%,
    rgba(26, 58, 42, 0.88) 45%,
    rgba(5, 8, 6, 0.75) 100%
  );
  pointer-events: none;
}
.container--about {
  position: relative;
  z-index: 2;
}

.about {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
  margin-top: 48px;
  padding: 48px 0 24px;
}

.about__content {
  padding: 40px 44px 44px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: linear-gradient(165deg, rgba(10, 18, 14, 0.85), rgba(5, 8, 6, 0.75));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.about__panel {
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(16px);
}

.about__name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  color: var(--gold);
}
.about__role {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin: 8px 0 24px;
}
.about__text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0 0 16px;
}
.about__list {
  margin: 24px 0 0;
  padding: 0 0 0 20px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}
.about__list li::marker { color: var(--gold); }

.about__card .profileCard {
  border: 1px solid var(--gold-soft);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.profileCard {
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: linear-gradient(180deg, rgba(10, 18, 14, 0.9), rgba(5, 8, 6, 0.85));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  overflow: hidden;
  padding: 36px 32px;
  text-align: center;
}
.profileCard__top {
  padding: 32px;
  text-align: center;
  border-bottom: 1px solid var(--glass-border);
}
.profileCard__logo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: contain;
  margin: 0 auto 20px;
  border: 2px solid var(--gold-soft);
}
.profileCard__name {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin: 0;
}
.profileCard__kicker {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin: 0;
}
.profileCard__slogan {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  font-style: italic;
  color: var(--text-muted);
  margin: 12px 0 20px;
}
.profileCard__location,
.profileCard__phone {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 8px;
}
.profileCard__phone { margin-bottom: 24px; }
.profileCard__rows { padding: 24px 32px; display: grid; gap: 12px; }
.profileCard__cta { padding: 0 32px 32px; }

.metaRow {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  align-items: baseline;
}
.metaRow__k { font-size: 12px; color: var(--text-faint); }
.metaRow__v { font-size: 14px; color: var(--text); }

/* ========== TESTIMONIALS ========== */
.testimonialsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.quote {
  margin: 0;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(16px);
  transition: transform 0.5s var(--ease-out), opacity 0.6s var(--ease-out);
}
.quote.animate:not(.isVisible) {
  transform: translateY(30px);
  opacity: 0;
}
.quote.animate.isVisible {
  transform: translateY(0);
  opacity: 1;
}
.quote:hover {
  border-color: var(--gold-soft);
  transform: translateY(-2px);
}

.quote__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
  font-style: italic;
}
.quote__meta {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
}
.quote__name {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ========== CONTACT ========== */
#contact .section__header {
  margin-bottom: 56px;
}

.contactGrid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: start;
  margin-top: 48px;
}

.contactCard {
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-soft);
  background: linear-gradient(165deg, rgba(26, 58, 42, 0.5), rgba(10, 18, 14, 0.85));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(212, 175, 55, 0.08);
}

.contactCard__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 28px;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.contactCard__meta {
  display: grid;
  gap: 18px;
}

.contactCard__meta .metaRow {
  padding: 14px 0;
  border-bottom: 1px solid var(--glass-border);
}
.contactCard__meta .metaRow:last-of-type {
  border-bottom: none;
}

.contactCard__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.contactCard__actionsPrimary {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.contactCard__actionsPrimary .btn {
  flex: 1;
  min-width: 140px;
  justify-content: center;
}

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

.contactCard__note {
  margin: 24px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
  font-size: 14px;
  color: var(--text-faint);
  line-height: 1.6;
}

.contactForm {
  padding: 40px 40px 44px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: linear-gradient(180deg, rgba(10, 18, 14, 0.7), rgba(5, 8, 6, 0.6));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.3);
}

.contactForm__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 28px;
  color: var(--text);
  letter-spacing: 0.02em;
}

.contactForm .field {
  margin-bottom: 20px;
}

.contactForm__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
  margin-bottom: 0;
}

.contactForm__hint {
  font-size: 12px;
  color: var(--text-faint);
  max-width: 48ch;
  margin: 0;
}

.contact__panel {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(20px);
}

.contact__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 24px;
  color: var(--text);
}
.contact__rows { display: grid; gap: 14px; }
.contact__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.contact__note { margin: 20px 0 0; font-size: 14px; color: var(--text-faint); }

.link {
  color: var(--gold);
  border-bottom: 1px solid var(--gold-soft);
  transition: border-color 0.2s;
}
.link:hover { border-bottom-color: var(--gold); }

.form { display: grid; gap: 20px; }
.field { display: grid; gap: 8px; }
.field__label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.field__input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid var(--glass-border);
  background: rgba(5, 8, 6, 0.5);
  color: var(--text);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field__input:focus {
  border-color: var(--gold-soft);
  box-shadow: 0 0 0 3px var(--gold-soft);
}
.field__textarea { resize: vertical; min-height: 140px; }
.form__actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.form__hint { font-size: 12px; color: var(--text-faint); max-width: 48ch; }

/* ========== FOOTER ========== */
.footer {
  padding: 48px 0 56px;
  border-top: 1px solid var(--glass-border);
  background: linear-gradient(180deg, rgba(5, 8, 6, 0.2), var(--green-dark));
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer__logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: contain;
}
.footer__name {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.footer__tag { font-size: 12px; color: var(--text-faint); }

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
}

.footer__link {
  font-size: 13px;
  color: var(--gold);
}

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

.footer__socialBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  transition: color 0.25s, background 0.25s, border-color 0.25s, transform 0.2s;
}

.footer__socialBtn:hover {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
  transform: scale(1.08);
}

.footer__socialIcon {
  width: 20px;
  height: 20px;
}

.footer__meta { font-size: 13px; color: var(--text-faint); }

/* ========== FLOATING WHATSAPP ========== */
.waFloat {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid var(--gold-soft);
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s, box-shadow 0.3s, border-color 0.3s;
}
.waFloat:hover {
  transform: scale(1.05);
  box-shadow: 0 24px 70px rgba(212, 175, 55, 0.2);
  border-color: var(--gold-dim);
}
.waFloat__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.3);
}
.waFloat__text { font-size: 14px; font-weight: 600; color: var(--text); }

/* ========== ANIMATE UTILITY ========== */
.animate { transition: transform 0.6s var(--ease-out), opacity 0.6s var(--ease-out); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .servicesGrid { grid-template-columns: 1fr; }
  .serviceCard { min-height: 280px; }
  .testimonialsGrid { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; gap: 40px; }
  .section--about { min-height: auto; }
  .contactGrid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .header__inner { flex-wrap: wrap; }
  .nav__toggle { display: flex; }
  .nav__menu {
    display: none;
    width: 100%;
    flex-direction: column;
    padding: 16px 0 0;
    gap: 8px;
  }
  .nav__menu.isOpen { display: flex; }
  .nav__link { display: block; text-align: center; }
  .pill { display: none; }
  .stats { grid-template-columns: 1fr; gap: 16px; }
  .hero__content { padding: 100px 0 60px; }
  .hero__logo { width: 80px; height: 80px; }
}

@media (max-width: 480px) {
  .hero__titleLine--1 { font-size: 36px; }
  .hero__titleLine--2 { font-size: 14px; letter-spacing: 0.12em; }
  .banner { flex-direction: column; align-items: flex-start; }
  .section { padding: 64px 0; }
  .about__content { padding: 28px 24px 32px; }
  .contactCard,
  .contactForm { padding: 28px 24px; }
}
