/* ===================================================
   DIAMOND CUT - MAIN STYLESHEET
   Brand: Luxury Precision � Dark Slate + Gold
   Direction: RTL (Arabic)
   =================================================== */

/* --- CSS Variables --- */
:root {
  --gold: #c9a84c;
  --gold-light: #e8c96c;
  --gold-dark: #a07c30;
  --gold-glow: rgba(201, 168, 76, 0.15);
  --gold-subtle: rgba(201, 168, 76, 0.08);
  --text-primary: #1a1a2e;
  --text-secondary: #4a4a5a;
  --text-muted: #8a8a9a;
  --white: #ffffff;
  --off-white: #faf9f7;
  --light-gray: #f0ece6;
  --border: rgba(201, 168, 76, 0.25);
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.25);
  --radius: 14px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --font-main: "Cairo", "Tajawal", sans-serif;
  --slate-900: #0b0c10;
  --slate-800: #141820;
  --slate-700: #1c1f2b;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --bg-dark: #0b0c10;
  --bg-dark-2: #141820;
  --bg-light: #faf9f7;
  --surface: #ffffff;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-main);
  background: var(--white);
  color: var(--text-primary);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold),
    var(--gold-dark)
  );
  color: var(--white);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  white-space: nowrap;
  will-change: transform;
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 168, 76, 0.35);
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold-light),
    var(--gold)
  );
}

.btn-primary svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
  flex-shrink: 0;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  will-change: transform;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: var(--white);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
}

.btn-whatsapp svg {
  width: 18px;
  height: 18px;
  fill: white;
}

/* --- Section Helpers --- */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-badge {
  display: inline-block;
  background: var(--gold-subtle);
  color: var(--gold-dark);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 1.1rem;
  border-radius: 50px;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.5;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
  margin-top: 0.8rem;
  line-height: 1.7;
}

.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 0 auto;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-wrap {
  flex-shrink: 0;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  transition: var(--transition);
}

.site-header.scrolled .logo-img {
  height: 46px;
}

/* NAV */
.main-nav {
  flex: 1;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  justify-content: center;
}

.nav-list > li {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.9rem;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 1px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-dark);
  background: var(--gold-glow);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-link .arrow {
  font-size: 0.7em;
  transition: transform 0.3s ease;
}

.has-dropdown:hover .nav-link .arrow {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 480px;
  padding: 0.6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.35s;
  z-index: 200;
  box-shadow: var(--shadow-card);
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 0.55rem 0.9rem;
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

.dropdown li a:hover {
  color: var(--gold-dark);
  background: var(--gold-glow);
}

/* ============================================================
   HERO SLIDER
============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  text-align: center;
}

.hero-slides {
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  transform: scale(1);
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
  animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(11, 12, 16, 0.78) 0%,
    rgba(11, 12, 16, 0.55) 50%,
    rgba(11, 12, 16, 0.45) 100%
  );
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 8%;
  animation: heroFade 0.8s ease forwards;
}

.hero-content-inner {
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(201, 168, 76, 0.45);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.45rem 1.3rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
}

.hero-title .gold {
  color: var(--gold-light);
  position: relative;
}

.hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-years {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  padding: 0.5rem 1.4rem;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 50px;
  display: inline-block;
  background: rgba(201, 168, 76, 0.08);
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Slider Controls */
.slide-prev,
.slide-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(11, 12, 16, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-prev {
  right: 2%;
}

.slide-next {
  left: 2%;
}

.slide-prev:hover,
.slide-next:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 0 18px rgba(201, 168, 76, 0.4);
}

.slide-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.6rem;
}

.slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.slide-dot.active {
  background: var(--gold-light);
  width: 28px;
  border-radius: 4px;
  box-shadow: 0 0 16px rgba(201, 168, 76, 0.7);
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--bg-dark);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 70%),
    radial-gradient(circle at 15% 20%, rgba(201,168,76,0.05) 0%, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(201,168,76,0.05) 0%, transparent 45%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 1.2rem 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item:last-child {
  border-left: none;
}

.stat-num {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-suffix {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
}

.stat-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}

/* ===================================================
   GALLERY
=================================================== */
.gallery {
  padding: 5rem 0;
  background: var(--off-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
  margin-top: 2.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item-lg {
  grid-row: span 2;
  grid-column: span 1;
}

.gallery-item-h {
  grid-column: span 1;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 12, 16, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.gallery-item:hover .gallery-icon {
  transform: rotate(90deg);
}

/* ===================================================
   PROJECTS (text cards)
=================================================== */
.projects {
  padding: 5rem 0;
  position: relative;
  background: var(--bg-dark);
  overflow: hidden;
  isolation: isolate;
}
.projects::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.projects .section-title { color: var(--white); }
.projects .section-desc { color: rgba(255,255,255,0.65); }
.projects .section-badge { background: rgba(201,168,76,0.15); color: var(--gold-light); border-color: rgba(201,168,76,0.3); }

.projects-group { margin-bottom: 3rem; }
.projects-group:last-child { margin-bottom: 0; }

.projects-subhead {
  display: inline-block;
  color: var(--gold-light);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0 0 0.8rem;
  border-bottom: 2px solid rgba(201,168,76,0.25);
  margin-bottom: 1.5rem;
  width: 100%;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.project-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  padding: 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s ease, background 0.45s ease;
  min-height: 160px;
  cursor: default;
}
.project-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.4);
  border-top-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.35);
}
.project-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.1em;
  padding: 0.15rem 0.5rem;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 4px;
  display: inline-block;
  width: fit-content;
  background: rgba(201,168,76,0.06);
  margin-bottom: 0.4rem;
}
.project-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  flex: 1;
}
.project-loc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding-top: 0.3rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.project-loc::before {
  content: '';
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath fill='%23c9a84c' d='M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z'/%3E%3C/svg%3E") no-repeat center/contain;
}

@media (max-width: 900px) {
  .projects-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .projects-grid { grid-template-columns: 1fr; }
  .project-card { min-height: 130px; padding: 1.2rem 1rem; }
}

/* ===================================================
   ABOUT SECTION
=================================================== */
.about {
  padding: 5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.about-img-col {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.about-img-main {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge-float {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
}

.about-badge-float .badge-num {
  font-size: 1.4rem;
  font-weight: 800;
}

.about-badge-float .badge-text {
  font-size: 0.85rem;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-text {
  line-height: 1.7;
  color: var(--text-secondary);
  font-size: 1rem;
}

.about-text:first-of-type {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.about-features {
  display: grid;
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding: 0.6rem;
}

.about-features li .check {
  font-size: 1.2rem;
  min-width: 24px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.about-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

.cert-badge:hover {
  background: var(--gold-glow);
  color: var(--gold-dark);
}

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  border: 2px solid var(--gold);
  transition: var(--transition);
  margin-top: 2rem;
}

.about-cta:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.about-cta svg {
  width: 18px;
  height: 18px;
  fill: var(--gold-dark);
}

/* ===================================================
   SERVICES SECTION
=================================================== */
.services {
  padding: 5rem 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% -10%, rgba(201,168,76,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.services .section-title { color: var(--white); }
.services .section-desc { color: rgba(255,255,255,0.65); }
.services .section-badge { background: rgba(201,168,76,0.15); color: var(--gold-light); border-color: rgba(201,168,76,0.3); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s ease;
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  border-color: var(--border);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.service-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--gold-dark);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 1rem;
}

.service-description {
  color: var(--text-secondary);
  line-height: 1.6;
  padding: 0 1.5rem;
  font-size: 0.95rem;
}

.service-list {
  margin: 1.5rem 0;
  padding: 0 1.5rem;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.6rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}

.service-list li:last-child {
  border-bottom: none;
}

.service-list li .check {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.service-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1rem;
  margin-top: 1.5rem;
  background: var(--gold-glow);
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 0 0 var(--radius) var(--radius);
  transition: var(--transition);
}

.service-cta:hover {
  background: var(--gold);
  color: var(--white);
}

/* ===================================================
   PARTNERS SECTION
=================================================== */
.partners {
  padding: 4rem 0;
  background: var(--off-white);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
  align-items: center;
  justify-items: center;
}

.partner-logo {
  opacity: 0.7;
  transition: all 0.3s ease;
  filter: grayscale(100%);
  max-width: 140px;
  height: auto;
}

.partner-logo:hover {
  opacity: 1;
  transform: scale(1.05);
  filter: grayscale(0%);
}

/* ===================================================
   FAQ SECTION
=================================================== */
.faq {
  padding: 5rem 0;
}

.faq-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid transparent;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.faq-item.active {
  border-color: var(--border);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12), inset 3px 0 0 var(--gold);
}

.faq-q {
  padding: 1.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.faq-q:hover {
  background: var(--gold-glow);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(--off-white);
}

.faq-item.active .faq-a {
  max-height: 200px;
  padding: 0 1.5rem 1.5rem;
}

.faq-a p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ===================================================
   CONTACT SECTION
=================================================== */
.contact {
  padding: 5rem 0;
  background: var(--off-white);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.contact-item:hover {
  transform: translateX(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-glow);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--gold-dark);
}

.contact-item-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.contact-item-text p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text-primary);
  transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-input::placeholder,
.form-textarea::placeholder,
.form-select::placeholder {
  color: var(--text-muted);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 700;
}

/* ===================================================
   FOOTER
=================================================== */
.footer {
  background: var(--slate-900);
  color: var(--slate-200);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  height: 40px;
  width: auto;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}

.footer-logo-text .gold {
  color: var(--gold-light);
}

.footer h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--slate-200);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 0.4rem 0;
}

.footer-link:hover {
  color: var(--gold-light);
  transform: translateX(-4px);
}

.footer-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  color: var(--slate-400);
}
.footer-credit {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  opacity: 0.7;
}
.footer-credit strong {
  color: var(--gold-light);
}
.footer-credit a {
  color: var(--gold-light);
  text-decoration: none;
}

/* ===================================================
   WHATSAPP FLOATING BUTTON
=================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

/* ===================================================
   HEADER CONTROLS
=================================================== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.lang-toggle {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.lang-toggle:hover {
  background: var(--gold-dark);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  white-space: nowrap;
}
.header-cta:hover {
  background: var(--gold-dark);
}
.header-cta svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

/* ===================================================
   LIGHTBOX (Gallery Viewer)
=================================================== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.active {
  display: flex;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 0.8rem 1rem;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s;
}
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ===================================================
   SERVICE CARDS (internal elements)
=================================================== */
.service-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-img-wrap img {
  transform: scale(1.08);
}
.service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.service-card:hover .service-overlay {
  opacity: 1;
}
.service-btn {
  background: var(--gold);
  color: var(--white);
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.3s;
}
.service-btn:hover {
  background: var(--gold-dark);
}
.service-body {
  padding: 1.5rem;
}
.service-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.service-body p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- Dark Glass Services (7 new PNG cards) --- */
.services-dark {
  background: linear-gradient(135deg, #15151f 0%, #1f1c2b 100%);
  color: #fff;
}
.services-dark .section-title { color: #fff; }
.services-dark .section-desc  { color: #b9b9cc; }

.svc-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(145deg, rgba(201,168,76,0.5), rgba(201,168,76,0));
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}
.svc-card:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}
.svc-card-inner {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: calc(var(--radius-lg) - 1px);
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.svc-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.svc-img img {
  max-width: 100%;
  max-height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.45));
  animation: svcFloat 4s ease-in-out infinite;
}
@keyframes svcFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.svc-index {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.svc-body h3 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0.4rem 0 0.5rem;
}
.svc-tag {
  color: #b9b9cc;
  font-size: 0.88rem;
  line-height: 1.6;
  min-height: 2.8em;
  margin: 0;
}
.svc-view {
  margin-top: auto;
  padding-top: 1rem;
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.svc-card:hover .svc-view { color: var(--gold); }
.services-dark .services-grid {
  margin-top: 3rem;
}

/* Modal � illustration variant (transparent PNGs) */
.modal-img.is-illustration {
  background: #15151f;
  aspect-ratio: auto;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-img.is-illustration img {
  object-fit: contain;
  max-height: 340px;
  width: auto;
  height: auto;
}

/* ===================================================
   ONGOING GALLERY OVERLAY
=================================================== */
.ongoing-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.ongoing-item:hover .ongoing-overlay {
  opacity: 1;
}
.ongoing-icon {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
}

/* ===================================================
   WHY US SECTION
=================================================== */
.why-us {
  padding: 5rem 0;
  background: var(--off-white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}
.why-icon {
  width: 60px;
  height: 60px;
  background: var(--gold-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.06);
  transition: box-shadow 0.45s ease;
}
.why-card:hover .why-icon {
  box-shadow: 0 0 24px rgba(201, 168, 76, 0.35), 0 0 0 4px rgba(201, 168, 76, 0.1);
}
.why-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold-dark);
}
.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}
.why-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===================================================
   PARTNERS
=================================================== */
.partner-item {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s ease;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.partner-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  border-color: var(--border);
}
.partner-item img {
  max-height: 800px;
  width: auto;
  object-fit: contain;
}
.featured-partners {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 2.5rem auto 1.5rem;
  max-width: 1100px;
}
.featured-partners .partner-item {
  padding: 1.5rem;
}
.featured-partners .partner-item img {
  max-height: 800px;
}

.featured-heading {
  text-align: center;
  margin: 3rem 0 1.5rem;
}
.featured-sub-label {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.5px;
  padding: 0.5rem 2rem;
  border: 2px solid var(--gold);
  border-radius: 50px;
  background: rgba(201, 168, 76, 0.08);
}

.partner-feature-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  letter-spacing: 0.5px;
  line-height: 1.3;
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.4);
}

@media (max-width: 768px) {
  .featured-partners {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .featured-partners {
    grid-template-columns: 1fr;
  }
}

/* ===================================================
   CTA STRIP
=================================================== */
.cta-strip {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 55%, var(--gold-light) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-text h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.cta-text p {
  font-size: 1.05rem;
  opacity: 0.92;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.cta-actions .btn-primary {
  background: var(--white);
  color: var(--gold-dark);
}
.cta-actions .btn-primary:hover {
  background: var(--off-white);
}
.cta-actions .btn-primary svg {
  fill: var(--gold-dark);
}

/* ===================================================
   CONTACT SECTION (updated classes)
=================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}
.contact-form-col {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}
.form-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}
.req {
  color: #e74c3c;
  font-weight: 700;
}
.form-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  margin-top: 0.5rem;
}
.form-success {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  background: #d4edda;
  color: #155724;
  border-radius: var(--radius);
  font-weight: 600;
  text-align: center;
}
.form-success.show {
  display: block;
}
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.contact-info-item:hover {
  transform: translateX(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}
.ci-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--gold-dark);
}
.ci-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.ci-text strong {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1rem;
}
.ci-text span,
.ci-text a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-top: 1rem;
}
.map-container iframe {
  width: 100%;
  height: 250px;
  border: 0;
}

/* ===================================================
   SITE FOOTER (blog + index shared)
=================================================== */
.site-footer {
  background: var(--slate-900);
  color: var(--slate-200);
}
.footer-top {
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-col {
  display: flex;
  flex-direction: column;
}
.footer-logo img {
  height: 50px;
  width: auto;
  margin-bottom: 1rem;
  border-radius: 8px;
}
.footer-about {
  color: var(--slate-400);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.social-links {
  display: flex;
  gap: 0.8rem;
}
.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s ease;
}
.social-link:hover {
  background: var(--gold);
  transform: translateY(-2px);
}
.social-link svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}
.footer-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.footer-divider {
  width: 40px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 1.2rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-links li a {
  color: var(--slate-400);
  font-size: 0.95rem;
  transition: color 0.3s;
}
.footer-links li a:hover {
  color: var(--gold-light);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--slate-400);
  font-size: 0.9rem;
}
.footer-contact li svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  flex-shrink: 0;
}
.footer-contact li a {
  color: var(--slate-400);
  transition: color 0.3s;
}
.footer-contact li a:hover {
  color: var(--gold-light);
}
.site-footer .footer-bottom {
  background: rgba(0, 0, 0, 0.25);
  padding: 1.2rem 0;
}

/* ===================================================
   ABOUT SECTION EXTRAS
=================================================== */
.about-years {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}
.about-location {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.about-hero-years {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 2;
}

/* ===================================================
   BLOG PAGE
=================================================== */
.blog-hero {
  padding: 6rem 0 3rem;
  background: var(--off-white);
  text-align: center;
}
.blog-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 1rem 0 0.8rem;
}
.blog-hero-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.blog-section {
  padding: 4rem 0;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s ease;
  border: 1px solid transparent;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  border-color: var(--border);
}

.blog-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.08);
}

.blog-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.blog-card:hover .blog-card-overlay {
  opacity: 1;
}
.blog-card-btn {
  background: var(--gold);
  color: var(--white);
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
}

.blog-card-body {
  padding: 1.5rem;
}
.blog-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.blog-card-body p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}
.blog-date {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 0.8rem;
}

/* Blog Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.modal-overlay.active {
  display: flex;
}
.modal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 700px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--white);
  border: none;
  font-size: 1.8rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  line-height: 1;
}
.modal-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-body {
  padding: 2rem;
}
.modal-body h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.modal-body p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}
.modal-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

/* ===================================================
   SCROLL ANIMATION
=================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================
   MOBILE RESPONSIVE
=================================================== */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    padding: 5rem 2rem 2rem;
    transition: right 0.35s ease;
    z-index: 999;
    overflow-y: auto;
  }
  body.nav-open::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 998;
  }
  .main-nav.open {
    right: 0;
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  .nav-list > li {
    width: 100%;
  }
  .nav-link {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    white-space: normal;
    border-radius: 6px;
  }
  .has-dropdown .dropdown {
    position: static;
    display: none;
    grid-template-columns: 1fr;
    min-width: auto;
    width: 100%;
    border: none;
    padding: 0 1rem;
    box-shadow: none;
    background: transparent;
  }
  .has-dropdown.open-sub .dropdown {
    display: block;
  }
  .has-dropdown .dropdown li a {
    padding: 0.55rem 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border-radius: 4px;
  }
  .header-cta {
    display: none;
  }
  .lang-toggle {
    font-size: 0.8rem;
    padding: 0.35rem 0.7rem;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .cta-content {
    flex-direction: column;
    text-align: center;
  }
  .cta-actions {
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    padding: 3rem 0 1.5rem;
  }
  .site-footer .footer-bottom {
    padding: 1rem 0;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-hero-title {
    font-size: 1.8rem;
  }
  .modal-content {
    width: 95%;
    border-radius: var(--radius);
  }
  .modal-body {
    padding: 1.5rem;
  }
}
@media (max-width: 480px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 16px;
    right: 16px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* ===================================================
   ENGLISH / LTR OVERRIDES
=================================================== */
body.lang-en {
  direction: ltr;
  text-align: left;
  font-family: "Inter", "Poppins", sans-serif;
}
body.lang-en .hero-title,
body.lang-en .section-title,
body.lang-en .section-subtitle {
  text-align: left;
}
body.lang-en .main-nav li a {
  direction: ltr;
}
body.lang-en .contact-info-col {
  text-align: left;
}
body.lang-en .footer-col {
  text-align: left;
}
body.lang-en .footer-divider {
  margin-left: 0;
}
body.lang-en .ci-text {
  text-align: left;
}
body.lang-en .about-content {
  text-align: left;
}
body.lang-en .about-features li {
  direction: ltr;
}
body.lang-en .lang-toggle {
  direction: ltr;
}
body.lang-en .partner-feature-badge {
  right: auto;
  left: 10px;
}
@media (max-width: 768px) {
  body.lang-en .main-nav {
    left: -100%;
    right: auto;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
  }
  body.lang-en .main-nav.open {
    left: 0;
    right: auto;
  }
}
