:root {
  --navy: #1A1A2E;
  --navy-light: #16213E;
  --orange: #E07B2E;
  --orange-light: #F0A04B;
  --orange-deep: #C4621A;
  --orange-glow: #F5C27A;
  --cream: #FFF8F0;
  --cream-dark: #F5EDE2;
  --charcoal: #2C2C3A;
  --gray-600: #6B6B7B;
  --gray-400: #9B9BA8;
  --teal: #1B7A6E;
  --teal-light: #2BA89A;
  --white: #FFFFFF;
  --font-heading: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --radius-card: 20px;
  --radius-lg: 24px;
  --radius-btn: 50px;
  --radius-pill: 60px;
  --shadow-sm: 0 2px 12px rgba(26,26,46,0.06);
  --shadow-md: 0 4px 30px rgba(26,26,46,0.10);
  --shadow-lg: 0 8px 40px rgba(26,26,46,0.14);
  --shadow-orange: 0 4px 24px rgba(224,123,46,0.30);
  --shadow-warm: 0 8px 32px rgba(224,123,46,0.15);
  --transition-spring: 350ms cubic-bezier(0.22, 1, 0.36, 1);
  --transition-ease: 300ms ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.65;
  overflow-x: hidden;
  background: #FFF9F3;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
ul { list-style: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.15; letter-spacing: -0.5px; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: var(--radius-btn);
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 16px;
}
.section-label--gold  { background: rgba(224,123,46,0.1);  color: var(--orange); }
.section-label--light { background: rgba(224,123,46,0.15); color: var(--orange-light); }
.section-label--green { background: rgba(27,122,110,0.1);  color: var(--teal); }

.section-heading       { font-family: var(--font-serif); font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: var(--navy); margin-bottom: 16px; letter-spacing: -1px; }
.section-heading--white { color: var(--white); }
.section-desc          { color: var(--gray-600); font-size: clamp(15px, 1.6vw, 17px); max-width: 580px; line-height: 1.7; }
.section-desc--center  { margin-left: auto; margin-right: auto; text-align: center; }
.section-header        { text-align: center; margin-bottom: 56px; }

/* ======== PAGE LAYOUT (multi-page) ======== */
.page-body { padding-top: 120px; min-height: calc(100vh - 400px); }
.page-body.no-pad { padding-top: 0; }

/* ======== NAVBAR ======== */
/* Navbar smooth compression transitions */
:root {
  --nav-ease: cubic-bezier(0.33, 1, 0.68, 1);
  --nav-dur: 550ms;
}
.navbar {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%); z-index: 1000;
  max-width: 980px; width: calc(100% - 40px);
  padding: 6px 8px 6px 16px; border-radius: var(--radius-pill);
  background: rgba(250,247,242,0.75); backdrop-filter: blur(20px) saturate(1.2); -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid rgba(27,122,110,0.08);
  box-shadow: 0 4px 30px rgba(26,26,46,0.08), 0 1px 3px rgba(26,26,46,0.04);
  display: flex; align-items: center; justify-content: space-between;
  will-change: max-width, padding, top;
  transition:
    max-width var(--nav-dur) var(--nav-ease),
    padding   var(--nav-dur) var(--nav-ease),
    top       var(--nav-dur) var(--nav-ease),
    box-shadow var(--nav-dur) var(--nav-ease),
    background var(--nav-dur) var(--nav-ease);
}
.navbar.scrolled {
  max-width: 680px;
  padding: 5px 8px 5px 14px;
  top: 10px;
  background: rgba(250,247,242,0.88);
  box-shadow: 0 6px 40px rgba(26,26,46,0.12), 0 1px 3px rgba(26,26,46,0.05);
}
.navbar.scrolled .nav-link { padding: 6px 10px; font-size: 13px; }

.nav-brand { display: flex; align-items: center; gap: 6px; flex-shrink: 0; cursor: pointer; }
.nav-brand-icon {
  display: flex; align-items: center; justify-content: center;
  transition: all var(--nav-dur) var(--nav-ease);
  overflow: visible; height: auto;
}
.nav-brand-icon img {
  height: 46px; width: auto;
  transition: height var(--nav-dur) var(--nav-ease);
  object-fit: contain;
  will-change: height;
}
.navbar.scrolled .nav-brand-icon img { height: 36px; }

.nav-link {
  transition:
    color var(--transition-ease),
    background var(--transition-ease),
    padding var(--nav-dur) var(--nav-ease),
    font-size var(--nav-dur) var(--nav-ease) !important;
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  position: relative;
  font-size: 13.5px; font-weight: 500; color: var(--gray-600);
  padding: 7px 14px; border-radius: var(--radius-btn);
  transition: color var(--transition-ease), background var(--transition-ease);
  white-space: nowrap; cursor: pointer;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; width: 0; height: 1.5px;
  background: var(--orange); transition: width 0.3s ease, left 0.3s ease;
}
.nav-link:hover::after { width: 60%; left: 20%; }
.nav-link:hover { color: var(--navy); }
.nav-link.active { background: var(--teal); color: var(--white); }
.nav-link.active::after { display: none; }

.nav-actions {
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
  transition: transform var(--nav-dur) var(--nav-ease);
}
/* Nav CTA shrinks slightly on scroll but stays visible */
.nav-cta { transition: padding var(--nav-dur) var(--nav-ease), font-size var(--nav-dur) var(--nav-ease); }
.navbar.scrolled .nav-cta {
  padding: 7px 16px;
  font-size: 12.5px;
}

.nav-cta {
  display: inline-flex; align-items: center; padding: 9px 22px; border-radius: var(--radius-btn);
  background: linear-gradient(135deg, var(--orange), var(--orange-light)); color: var(--white);
  font-size: 13.5px; font-weight: 700; white-space: nowrap; cursor: pointer;
  transition: transform var(--transition-ease), box-shadow var(--transition-ease);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-orange); }
.nav-cta:active { transform: scale(0.97); }

.nav-hamburger {
  display: none; width: 40px; height: 40px; align-items: center; justify-content: center;
  flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform var(--transition-spring), opacity var(--transition-spring); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav-overlay {
  position: fixed; inset: 0; background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  z-index: 999; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  opacity: 0; pointer-events: none; transition: opacity var(--transition-spring);
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }
.mobile-nav-overlay a { font-family: var(--font-heading); font-size: 28px; font-weight: 700; color: var(--navy); padding: 10px 20px; transition: color var(--transition-ease); cursor: pointer; }
.mobile-nav-overlay a:hover { color: var(--orange); }
.mobile-nav-overlay .mobile-cta {
  margin-top: 20px; padding: 14px 36px; border-radius: var(--radius-btn);
  background: linear-gradient(135deg, var(--orange), var(--orange-light)); color: var(--white);
  font-family: var(--font-heading); font-size: 18px; font-weight: 700;
}

@media (max-width: 860px) {
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .navbar.scrolled .nav-brand-icon img { height: 32px; }
  .navbar.scrolled { max-width: calc(100% - 40px); }
}

/* ======== HERO ======== */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center;
  position: relative; overflow: hidden;
  background: linear-gradient(170deg, #FFF8F0 0%, #FDEBD4 30%, #F8D8B8 55%, #FFF0E0 100%);
  padding: 120px 24px 80px;
}
.hero-bg-image {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('https://images.unsplash.com/photo-1555939594-58d7cb561ad1?w=1600&q=80');
  background-size: cover; background-position: center;
  filter: blur(1px) brightness(0.55) saturate(1.1);
  transform: scale(1.02);
  animation: heroZoom 25s ease-in-out infinite alternate;
}
.hero-bg-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(255,248,240,0.85) 0%, rgba(253,235,212,0.75) 40%, rgba(248,216,184,0.82) 100%),
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255,240,224,0.4), transparent 70%);
}
@keyframes heroZoom {
  0%   { transform: scale(1.02) translateY(0); }
  100% { transform: scale(1.10) translateY(-8px); }
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(26,26,46,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(26,26,46,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
  z-index: 2;
}
.hero-content { position: relative; z-index: 3; max-width: 740px; }

.hero-play-btn {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 28px; padding: 10px 24px 10px 10px;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(10px);
  border: 1px solid rgba(224,123,46,0.2); border-radius: 999px;
  color: var(--navy); font-size: 14px; font-weight: 600; cursor: pointer;
  transition: all var(--transition-spring);
  animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) both; animation-delay: 0.5s;
}
.hero-play-btn:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,26,46,0.12); }
.hero-play-btn .play-icon {
  width: 36px; height: 36px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--orange), var(--orange-light)); color: #fff;
  animation: playPulse 2s ease-in-out infinite;
}
@keyframes playPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(224,123,46,0.45); }
  50% { box-shadow: 0 0 0 14px rgba(224,123,46,0); }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; border-radius: var(--radius-btn);
  background: rgba(224,123,46,0.12); font-size: 13px; font-weight: 600; color: var(--orange); margin-bottom: 28px;
  animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) both; animation-delay: 0.1s;
}
.hero-title {
  font-family: var(--font-serif); font-size: clamp(38px, 6vw, 72px); font-weight: 900;
  color: var(--navy); letter-spacing: -2px; line-height: 1.05; margin-bottom: 24px;
  animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) both; animation-delay: 0.2s;
}
.hero-title .gold-text { background: linear-gradient(135deg, var(--orange), var(--orange-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { color: var(--gray-600); font-size: clamp(15px, 1.8vw, 18px); line-height: 1.7; max-width: 560px; margin: 0 auto 36px; animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) both; animation-delay: 0.3s; }
.hero-buttons  { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) both; animation-delay: 0.4s; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: var(--radius-btn);
  background: linear-gradient(135deg, var(--orange), var(--orange-light)); color: var(--white);
  font-size: 15px; font-weight: 700; box-shadow: var(--shadow-orange);
  transition: transform var(--transition-ease), box-shadow var(--transition-ease); cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(224,123,46,0.35); }
.btn-primary:active { transform: translateY(0) scale(0.98); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: var(--radius-btn);
  background: rgba(255,255,255,0.7); color: var(--navy); font-size: 15px; font-weight: 600;
  border: 1px solid rgba(26,26,46,0.1);
  transition: transform var(--transition-ease), box-shadow var(--transition-ease), background var(--transition-ease); cursor: pointer;
}
.btn-secondary:hover { transform: translateY(-2px); background: rgba(255,255,255,0.9); box-shadow: var(--shadow-md); }
.btn-secondary:active { transform: translateY(0) scale(0.98); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ======== STATS ======== */
.stats { background: #1A1A2E; padding: 56px 24px; position: relative; overflow: hidden; }
.stats::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(135deg, transparent, transparent 40px, rgba(224,123,46,0.02) 40px, rgba(224,123,46,0.02) 41px); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; text-align: center; }
.stat-item .stat-number { font-family: var(--font-heading); font-weight: 900; font-size: clamp(32px, 4vw, 48px); color: var(--orange); line-height: 1; margin-bottom: 8px; }
.stat-item .stat-label  { color: rgba(255,255,255,0.6); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }

/* ======== ABOUT ======== */
.about { padding: 100px 24px; background: var(--white); position: relative; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1100px; margin: 0 auto; }
.about-visual {
  background: var(--navy); border-radius: var(--radius-lg); min-height: 420px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px;
  position: relative; overflow: hidden;
  background-image: url('https://images.unsplash.com/photo-1466978913421-dad2ebd01d17?w=900&q=80');
  background-size: cover; background-position: center;
}
.about-visual::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,26,46,0.75), rgba(26,26,46,0.5)); }
.about-visual > * { position: relative; z-index: 1; }
.about-visual .stat-badge { padding: 14px 22px; background: rgba(255,255,255,0.1); backdrop-filter: blur(8px); border-radius: 14px; border: 1px solid rgba(255,255,255,0.15); color: #fff; text-align: center; }
.about-visual .stat-badge-val { font-family: var(--font-serif); font-size: 28px; font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: 4px; }
.about-visual .stat-badge-lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; opacity: 0.8; }
.about-content .section-label { display: inline-flex; }
.about-heading { font-family: var(--font-serif); font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; color: var(--navy); margin-bottom: 24px; letter-spacing: -0.8px; line-height: 1.15; }
.about-text { color: var(--gray-600); font-size: 15.5px; line-height: 1.75; margin-bottom: 18px; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } .about-visual { min-height: 280px; } }

/* ======== SERVICES ======== */
.services { padding: 100px 24px; background: var(--cream); position: relative; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.service-card {
  background: var(--white); border-radius: var(--radius-card); border: 1px solid rgba(26,26,46,0.06);
  padding: 0; position: relative; overflow: hidden;
  transition: transform var(--transition-ease), box-shadow var(--transition-ease);
}
.service-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--orange), var(--orange-light)); opacity: 0; transition: opacity var(--transition-ease); z-index: 2; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card:hover::after { opacity: 1; }
.service-card:nth-child(even)::after { background: linear-gradient(90deg, var(--teal), var(--teal-light)); }
.service-card-img { position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden; background: linear-gradient(135deg, rgba(224,123,46,0.15), rgba(27,122,110,0.1)); }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-body { padding: 28px 28px 32px; }
.service-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(224,123,46,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.service-icon svg { width: 24px; height: 24px; stroke: var(--orange); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-family: var(--font-heading); font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.service-card p  { color: var(--gray-600); font-size: 14.5px; line-height: 1.7; }

/* ======== WHY US ======== */
.why-us { padding: 100px 24px; background: var(--white); position: relative; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1100px; margin: 0 auto; }
.why-card { background: var(--cream); border-radius: 18px; border: 1px solid rgba(26,26,46,0.05); padding: 32px 28px; transition: transform var(--transition-ease), box-shadow var(--transition-ease); }
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.why-card-emoji { font-size: 28px; margin-bottom: 16px; display: block; }
.why-card h3 { font-family: var(--font-heading); font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.why-card p  { color: var(--gray-600); font-size: 14px; line-height: 1.7; }
@media (max-width: 860px) { .why-grid { grid-template-columns: 1fr; } }

/* ======== VALUES ======== */
.values { padding: 100px 24px; background: #1A1A2E; position: relative; overflow: hidden; }
.values::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(135deg, transparent, transparent 60px, rgba(224,123,46,0.015) 60px, rgba(224,123,46,0.015) 61px); }
.values .section-desc { color: rgba(255,255,255,0.55); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.value-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 36px 28px; position: relative; overflow: hidden; transition: background var(--transition-ease); }
.value-card:hover { background: rgba(255,255,255,0.08); }
.value-number { font-family: var(--font-heading); font-weight: 900; font-size: 56px; color: var(--orange); opacity: 0.12; line-height: 1; margin-bottom: 8px; }
.value-card h3 { font-family: var(--font-heading); font-size: 19px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.value-card p  { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.75; }
@media (max-width: 860px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .values-grid { grid-template-columns: 1fr; } }

/* ======== PROJECTS ======== */
.projects { padding: 100px 24px; background: var(--cream); position: relative; }
.project-featured { max-width: 700px; margin: 0 auto 48px; background: var(--white); border-radius: 18px; border: 1px solid rgba(26,26,46,0.06); padding: 0; text-align: center; overflow: hidden; cursor: pointer; transition: transform var(--transition-ease), box-shadow var(--transition-ease); position: relative; z-index: 1; }
.project-featured:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.project-featured-img { aspect-ratio: 16/9; background-size: cover; background-position: center; position: relative; }
.project-featured-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.4)); }
.project-featured-body { padding: 32px 36px 36px; }
.project-country { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px; }
.project-featured h3 { font-family: var(--font-serif); font-size: clamp(22px, 3vw, 30px); font-weight: 800; color: var(--navy); margin-bottom: 12px; letter-spacing: -0.5px; }
.project-details { color: var(--gray-600); font-size: 15px; line-height: 1.7; }
.project-details span { display: inline-flex; align-items: center; gap: 8px; }
.project-details span + span::before { content: '\00B7'; margin-right: 4px; color: rgba(26,26,46,0.2); }

/* ======== CEO ======== */
.ceo { padding: 100px 24px; background: var(--white); position: relative; }
.ceo-content { max-width: 780px; margin: 0 auto; text-align: center; position: relative; }
.ceo-content::before, .ceo-content::after {
  content: ''; position: absolute; width: 60px; height: 60px; border-color: var(--orange); opacity: 0.15;
}
.ceo-content::before { top: -10px; left: -10px; border-top: 2px solid; border-left: 2px solid; }
.ceo-content::after  { bottom: -10px; right: -10px; border-bottom: 2px solid; border-right: 2px solid; }
.ceo-quote-mark { font-family: Georgia, 'Times New Roman', serif; font-size: 80px; color: var(--orange); opacity: 0.3; line-height: 0.5; margin-bottom: 20px; display: block; }
.ceo-quote { font-family: var(--font-serif); font-size: clamp(20px, 3vw, 28px); font-weight: 600; color: var(--navy); line-height: 1.5; margin-bottom: 32px; letter-spacing: -0.3px; }
.ceo-name  { font-family: var(--font-heading); font-weight: 700; font-size: 16px; color: var(--navy); margin-bottom: 4px; }
.ceo-title { color: var(--gray-600); font-size: 13px; }

/* ======== CONTACT ======== */
.contact { padding: 100px 24px; background: var(--cream); position: relative; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 1000px; margin: 0 auto; position: relative; z-index: 1; }
.contact-info { display: flex; flex-direction: column; gap: 28px; padding-top: 12px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item-icon { width: 44px; height: 44px; min-width: 44px; border-radius: 12px; background: rgba(224,123,46,0.1); display: flex; align-items: center; justify-content: center; }
.contact-item-icon svg { width: 20px; height: 20px; stroke: var(--orange); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-item-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-600); margin-bottom: 4px; }
.contact-item-value { font-size: 15px; font-weight: 500; color: var(--navy); line-height: 1.6; }
.contact-form-card { background: var(--white); border-radius: var(--radius-card); border: 1px solid rgba(26,26,46,0.06); padding: 36px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; border-radius: 12px; border: 1px solid rgba(26,26,46,0.1); background: var(--cream); font-size: 14.5px; color: var(--navy); outline: none; transition: border-color var(--transition-ease), box-shadow var(--transition-ease); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(224,123,46,0.12); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit { width: 100%; padding: 14px 32px; border-radius: 12px; background: linear-gradient(135deg, var(--orange), var(--orange-light)); color: var(--white); font-size: 15px; font-weight: 700; border: none; cursor: pointer; transition: transform var(--transition-ease), box-shadow var(--transition-ease), background var(--transition-ease); }
.form-submit:hover { transform: translateY(-1px); box-shadow: var(--shadow-orange); background: linear-gradient(135deg, var(--orange-light), var(--orange)); }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* ======== FOOTER ======== */
.footer { background: var(--navy); padding: 64px 24px 0; position: relative; overflow: hidden; }
.footer::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(135deg, transparent, transparent 80px, rgba(224,123,46,0.01) 80px, rgba(224,123,46,0.01) 81px); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 48px; position: relative; z-index: 1; padding-bottom: 48px; }
.footer-brand-text { font-family: var(--font-heading); font-weight: 800; font-size: 22px; color: var(--white); margin-bottom: 16px; }
.footer-brand-desc { color: rgba(255,255,255,0.4); font-size: 13px; line-height: 1.7; max-width: 280px; }
.footer-col-heading { color: rgba(255,255,255,0.4); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 14px; transition: color var(--transition-ease); }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { max-width: 1100px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; text-align: center; position: relative; z-index: 1; }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 12px; }
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr; gap: 36px; } }

/* ======== TRUST BAR ======== */
.trust-bar { padding: 64px 24px; background: var(--white); position: relative; }
.trust-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; max-width: 900px; margin: 0 auto; }
.trust-pill { display: inline-flex; align-items: center; gap: 10px; padding: 14px 24px; border-radius: var(--radius-btn); background: var(--cream); border: 1px solid rgba(26,26,46,0.05); font-size: 14px; font-weight: 600; color: var(--navy); transition: transform var(--transition-ease), box-shadow var(--transition-ease), border-color var(--transition-ease); }
.trust-pill:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: rgba(224,123,46,0.3); }
.trust-pill-icon { width: 36px; height: 36px; border-radius: 10px; background: rgba(224,123,46,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-pill-icon svg { width: 18px; height: 18px; stroke: var(--orange); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ======== SERVICES PREVIEW ======== */
.services-preview { padding: 80px 24px; background: var(--cream); position: relative; }
.sp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto 40px; position: relative; z-index: 1; }
.sp-card { background: var(--white); border-radius: var(--radius-card); border: 1px solid rgba(26,26,46,0.06); padding: 32px 28px; text-align: center; transition: transform var(--transition-ease), box-shadow var(--transition-ease); }
.sp-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.sp-card-icon { width: 56px; height: 56px; border-radius: 16px; background: rgba(224,123,46,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.sp-card-icon svg { width: 26px; height: 26px; stroke: var(--orange); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.sp-card h3 { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.sp-card p  { color: var(--gray-600); font-size: 13.5px; line-height: 1.65; }
.sp-cta { text-align: center; position: relative; z-index: 1; }
@media (max-width: 768px) { .sp-grid { grid-template-columns: 1fr; } }

/* ======== CEO TEASER ======== */
.ceo-teaser { padding: 80px 24px; background: var(--white); position: relative; }
.ceo-teaser-inner { max-width: 700px; margin: 0 auto; text-align: center; background: var(--cream); border-radius: var(--radius-lg); padding: 48px 40px; border: 1px solid rgba(26,26,46,0.05); position: relative; }
.ceo-teaser-inner .ceo-quote-mark { font-size: 60px; margin-bottom: 12px; }
.ceo-teaser-quote { font-family: var(--font-serif); font-size: clamp(17px, 2.2vw, 22px); font-weight: 600; color: var(--navy); line-height: 1.55; margin-bottom: 24px; }

/* ======== TIMELINE ======== */
.timeline { padding: 80px 24px; background: var(--cream); position: relative; }
.timeline-track { display: flex; justify-content: center; gap: 0; max-width: 1000px; margin: 0 auto; position: relative; z-index: 1; }
.timeline-item { flex: 1; text-align: center; position: relative; padding: 0 16px; }
.timeline-item::before { content: ''; position: absolute; top: 20px; left: 0; right: 0; height: 2px; background: rgba(26,26,46,0.08); }
.timeline-item:first-child::before { left: 50%; }
.timeline-item:last-child::before  { right: 50%; }
.timeline-dot { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), var(--orange-light)); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; position: relative; z-index: 1; color: var(--white); font-family: var(--font-heading); font-weight: 800; font-size: 14px; box-shadow: 0 2px 12px rgba(224,123,46,0.25); }
.timeline-year { font-family: var(--font-heading); font-weight: 700; font-size: 15px; color: var(--navy); margin-bottom: 6px; }
.timeline-label { font-size: 13px; color: var(--gray-600); line-height: 1.5; }
@media (max-width: 768px) {
  .timeline-track { flex-direction: column; gap: 32px; max-width: 400px; }
  .timeline-item { text-align: left; display: flex; align-items: flex-start; gap: 16px; padding: 0; }
  .timeline-item::before { display: none; }
  .timeline-dot { margin: 0; flex-shrink: 0; }
  .timeline-text { text-align: left; }
}

/* ======== HOW WE WORK ======== */
.process { padding: 80px 24px; background: var(--white); position: relative; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1000px; margin: 0 auto; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 36px; left: 10%; right: 10%; height: 2px; background: repeating-linear-gradient(90deg, var(--orange) 0, var(--orange) 8px, transparent 8px, transparent 16px); opacity: 0.3; }
.process-step { text-align: center; position: relative; z-index: 1; }
.process-num { width: 72px; height: 72px; border-radius: 50%; background: var(--cream); border: 2px solid rgba(224,123,46,0.2); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-family: var(--font-heading); font-weight: 900; font-size: 24px; color: var(--orange); transition: background var(--transition-ease), border-color var(--transition-ease); }
.process-step:hover .process-num { background: rgba(224,123,46,0.1); border-color: var(--orange); }
.process-step h3 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.process-step p  { color: var(--gray-600); font-size: 13px; line-height: 1.6; max-width: 200px; margin: 0 auto; }
@media (max-width: 768px) { .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } .process-grid::before { display: none; } }

/* ======== CTA BANNER ======== */
.cta-banner { padding: 64px 24px; background: linear-gradient(135deg, var(--orange), var(--orange-light)); position: relative; text-align: center; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(135deg, transparent, transparent 30px, rgba(255,255,255,0.04) 30px, rgba(255,255,255,0.04) 31px); }
.cta-banner h2 { font-family: var(--font-heading); font-size: clamp(24px, 3.5vw, 36px); font-weight: 800; color: var(--white); margin-bottom: 12px; position: relative; z-index: 1; }
.cta-banner p  { color: rgba(255,255,255,0.85); font-size: 16px; margin-bottom: 28px; position: relative; z-index: 1; }
.cta-banner .btn-cta { display: inline-flex; align-items: center; gap: 8px; padding: 14px 36px; border-radius: var(--radius-btn); background: var(--navy); color: var(--white); font-size: 15px; font-weight: 700; position: relative; z-index: 1; transition: transform var(--transition-ease), box-shadow var(--transition-ease); cursor: pointer; }
.cta-banner .btn-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(26,26,46,0.3); }

/* ======== PROJECT GRID ======== */
.projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto 60px; }
.project-card { background: var(--white); border-radius: 18px; border: 1px solid rgba(26,26,46,0.06); padding: 0; position: relative; overflow: hidden; cursor: pointer; transition: transform var(--transition-ease), box-shadow var(--transition-ease); }
.project-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.project-card-img { aspect-ratio: 16/9; background-size: cover; background-position: center; position: relative; }
.project-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.3)); }
.project-card-body { padding: 22px 24px 26px; }
.project-card .project-country { margin-bottom: 8px; }
.project-card h3 { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.project-card .project-details { font-size: 14px; }
@media (max-width: 640px) { .projects-grid { grid-template-columns: 1fr; } }

/* ======== CAPABILITIES ======== */
.capabilities { padding: 64px 24px; background: #1A1A2E; position: relative; overflow: hidden; }
.capabilities::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(135deg, transparent, transparent 50px, rgba(224,123,46,0.02) 50px, rgba(224,123,46,0.02) 51px); }
.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 900px; margin: 0 auto; position: relative; z-index: 1; text-align: center; }
.cap-item .cap-number { font-family: var(--font-heading); font-weight: 900; font-size: clamp(32px, 4vw, 48px); color: var(--orange); line-height: 1; margin-bottom: 8px; }
.cap-item .cap-label  { color: rgba(255,255,255,0.6); font-size: 13px; font-weight: 500; }
@media (max-width: 640px) { .cap-grid { grid-template-columns: 1fr; gap: 24px; } }

/* ======== PACKAGES ======== */
.packages-section { padding: 100px 24px; background: var(--cream); position: relative; }
.packages-filters { display: flex; gap: 48px; max-width: 1100px; margin: 0 auto 48px; align-items: flex-start; position: relative; z-index: 1; }
.cloche-gauge { width: 100px; flex-shrink: 0; display: flex; flex-direction: column; align-items: center; }
.cloche-gauge__dome { width: 56px; height: 56px; margin-bottom: 14px; }
.cloche-gauge__track { width: 8px; height: 300px; background: rgba(26,26,46,0.07); border-radius: 4px; position: relative; cursor: pointer; }
.cloche-gauge__fill { position: absolute; bottom: 0; left: 0; width: 100%; border-radius: 4px; background: linear-gradient(to top, var(--orange), var(--orange-light)); transition: height 400ms cubic-bezier(0.22, 1, 0.36, 1); height: 0%; }
.cloche-gauge__handle { position: absolute; left: 50%; bottom: 0%; transform: translate(-50%, 50%); width: 26px; height: 26px; border-radius: 50%; background: var(--white); border: 3px solid var(--orange); box-shadow: var(--shadow-md); cursor: grab; transition: bottom 400ms cubic-bezier(0.22, 1, 0.36, 1); z-index: 2; }
.cloche-gauge__handle:active { cursor: grabbing; transform: translate(-50%, 50%) scale(1.15); }
.cloche-gauge__markers { position: absolute; top: 0; left: calc(100% + 14px); height: 100%; display: flex; flex-direction: column-reverse; justify-content: space-between; pointer-events: none; }
.cloche-gauge__marker { font-size: 11px; font-weight: 600; color: var(--gray-600); white-space: nowrap; transform: translateY(50%); }
.cloche-gauge__marker:last-child { transform: translateY(-50%); }
.cloche-gauge__tier-label { margin-top: 18px; text-align: center; font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--orange); padding: 5px 14px; background: rgba(224,123,46,0.1); border-radius: var(--radius-btn); }

.packages-controls { flex: 1; }
.packages-active-tier { font-family: var(--font-serif); font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.packages-active-tier .tier-name { color: var(--orange); }
.service-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.service-pill { padding: 9px 22px; border-radius: var(--radius-btn); font-size: 13.5px; font-weight: 600; cursor: pointer; border: 1.5px solid rgba(26,26,46,0.1); color: var(--gray-600); background: var(--white); font-family: var(--font-body); transition: all var(--transition-ease); }
.service-pill:hover { border-color: rgba(224,123,46,0.4); color: var(--navy); }
.service-pill.active { background: linear-gradient(135deg, var(--orange), var(--orange-light)); color: var(--white); border-color: transparent; box-shadow: var(--shadow-orange); }

.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.pkg-card { background: var(--white); border-radius: var(--radius-card); border: 1px solid rgba(26,26,46,0.06); padding: 32px 28px; position: relative; overflow: hidden; transition: transform var(--transition-ease), box-shadow var(--transition-ease), opacity 0.35s ease; }
.pkg-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--orange), var(--orange-light)); opacity: 0; transition: opacity var(--transition-ease); }
.pkg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pkg-card:hover::after { opacity: 1; }
.pkg-card:nth-child(even)::after { background: linear-gradient(90deg, var(--teal), var(--teal-light)); }
.pkg-card.hidden { opacity: 0; pointer-events: none; position: absolute; visibility: hidden; width: 0; height: 0; overflow: hidden; }
.pkg-card__badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.pkg-badge { display: inline-flex; padding: 4px 12px; border-radius: var(--radius-btn); font-size: 11px; font-weight: 600; letter-spacing: 0.3px; }
.pkg-badge--tier { background: rgba(224,123,46,0.1); color: var(--orange); }
.pkg-badge--level { background: rgba(26,26,46,0.05); color: var(--navy); }
.pkg-card__name { font-family: var(--font-serif); font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.pkg-card__list { list-style: none; padding: 0; margin: 0 0 22px; }
.pkg-card__list li { position: relative; padding-left: 18px; font-size: 14px; color: var(--gray-600); line-height: 1.7; margin-bottom: 5px; }
.pkg-card__list li::before { content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.pkg-card__cta { display: inline-flex; align-items: center; gap: 8px; padding: 11px 24px; border-radius: var(--radius-btn); background: linear-gradient(135deg, var(--orange), var(--orange-light)); color: var(--white); font-size: 14px; font-weight: 700; cursor: pointer; transition: transform var(--transition-ease), box-shadow var(--transition-ease); }
.pkg-card__cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-orange); }

.packages-empty { text-align: center; padding: 60px 24px; color: var(--gray-600); font-size: 15px; display: none; }
.packages-empty.visible { display: block; }

@media (max-width: 860px) {
  .packages-filters { flex-direction: column; align-items: center; gap: 32px; }
  .cloche-gauge__track { height: 200px; }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) { .packages-grid { grid-template-columns: 1fr; } }

/* ======== GRAIN TEXTURE ======== */
.grain::after { content: ''; position: absolute; inset: 0; opacity: 0.03; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ======== SCROLL PROGRESS BAR ======== */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--teal), var(--orange), var(--orange-light)); z-index: 9999; width: 0%; transition: width 50ms linear; }

/* ======== REVEAL ======== */
.reveal { opacity: 0; transform: translateY(40px) scale(0.98); transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1); will-change: opacity, transform; }
.reveal.visible { opacity: 1; transform: translateY(0) scale(1); }

/* ======== TILT ======== */
.tilt-3d { perspective: 1000px; transform-style: preserve-3d; }

/* ============================================================
   PREMIUM UPGRADE - New Components
   ============================================================ */

/* ======== TESTIMONIALS ======== */
.testimonials { padding: 100px 24px; background: var(--cream); position: relative; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1140px; margin: 0 auto; }
.testimonial-card { background: #fff; border-radius: var(--radius-lg); padding: 32px 28px 28px; border: 1px solid rgba(26,26,46,0.06); box-shadow: var(--shadow-sm); position: relative; transition: all var(--transition-spring); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(224,123,46,0.2); }
.testimonial-card::before { content: '"'; position: absolute; top: -10px; left: 20px; font-family: var(--font-serif); font-size: 96px; color: var(--orange); line-height: 1; opacity: 0.25; }
.testimonial-stars { color: var(--orange); font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-quote { font-family: var(--font-serif); font-style: italic; font-size: 17px; line-height: 1.6; color: var(--navy); margin-bottom: 24px; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 14px; padding-top: 16px; border-top: 1px solid rgba(26,26,46,0.06); }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--orange); flex-shrink: 0; }
.testimonial-meta { display: flex; flex-direction: column; }
.testimonial-name { font-weight: 700; color: var(--navy); font-size: 14px; }
.testimonial-role { font-size: 12px; color: var(--gray-600); }

/* ======== FOOD GALLERY ======== */
.gallery { padding: 100px 24px; background: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; max-width: 1200px; margin: 0 auto; grid-auto-flow: dense; }
.gallery-item { position: relative; border-radius: var(--radius-card); overflow: hidden; aspect-ratio: 1; cursor: pointer; background: #f5f5f5; transition: transform var(--transition-spring), box-shadow var(--transition-spring); }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: 1 / 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.gallery-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(26,26,46,0.6)); opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover::after { opacity: 1; }
.gallery-caption { position: absolute; bottom: 16px; left: 16px; right: 16px; color: #fff; font-weight: 600; font-size: 14px; z-index: 2; opacity: 0; transform: translateY(10px); transition: all 0.3s; }
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* ======== CERTIFICATIONS ======== */
.certifications { padding: 70px 24px; background: var(--cream); border-top: 1px solid rgba(26,26,46,0.05); }
.cert-badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1000px; margin: 0 auto 50px; }
.cert-badge { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 24px 16px; background: #fff; border-radius: var(--radius-lg); border: 1px solid rgba(224,123,46,0.15); transition: all var(--transition-spring); }
.cert-badge:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--orange); }
.cert-icon { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, rgba(224,123,46,0.12), rgba(240,160,75,0.12)); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; color: var(--orange); }
.cert-icon svg { width: 28px; height: 28px; }
.cert-title { font-weight: 700; color: var(--navy); font-size: 13px; }
.cert-subtitle { font-size: 11px; color: var(--gray-600); margin-top: 2px; text-align: center; }

.client-logos-row { display: flex; flex-direction: column; align-items: stretch; gap: 14px; max-width: 1100px; margin: 0 auto; padding: 30px 0; border-top: 1px dashed rgba(26,26,46,0.12); }
.client-logos-label { text-align: center; font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: var(--gray-600); }
.client-logos-marquee { overflow: hidden; width: 100%; -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); }
.client-logos-track { display: flex; gap: 60px; width: max-content; animation: client-logos-scroll 30s linear infinite; }
.client-logos-marquee:hover .client-logos-track { animation-play-state: paused; }
.client-logo { font-family: var(--font-heading); font-weight: 700; font-size: 22px; color: rgba(26,26,46,0.35); letter-spacing: 1px; transition: color 0.3s; white-space: nowrap; flex-shrink: 0; }
.client-logo:hover { color: var(--orange); }
@keyframes client-logos-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .client-logos-track { animation: none; } }

/* ======== WHATSAPP FLOATING (circle) ======== */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #25D366; color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
  text-decoration: none;
  transition: all var(--transition-spring);
  animation: waPulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 12px 32px rgba(37,211,102,0.55);
}
.whatsapp-float .wa-icon {
  width: auto; height: auto; border-radius: 0; background: transparent;
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.whatsapp-float .wa-icon svg { width: 30px; height: 30px; }
.whatsapp-float .wa-label { display: none; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.35), 0 0 0 0 rgba(37,211,102,0.5); }
  50% { box-shadow: 0 8px 24px rgba(37,211,102,0.35), 0 0 0 14px rgba(37,211,102,0); }
}

/* ======== VIDEO LIGHTBOX ======== */
.video-lightbox { position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,0.92); backdrop-filter: blur(6px); display: none; align-items: center; justify-content: center; padding: 24px; opacity: 0; transition: opacity 0.3s; }
.video-lightbox.open { display: flex; opacity: 1; }
.video-lightbox-inner { width: 100%; max-width: 960px; aspect-ratio: 16/9; background: #000; border-radius: 12px; overflow: hidden; position: relative; box-shadow: 0 20px 60px rgba(0,0,0,0.6); transform: scale(0.95); transition: transform 0.3s; }
.video-lightbox.open .video-lightbox-inner { transform: scale(1); }
.video-lightbox-inner iframe { width: 100%; height: 100%; border: none; }
.video-close { position: absolute; top: -44px; right: 0; width: 36px; height: 36px; border-radius: 50%; border: none; background: #fff; color: var(--navy); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: transform 0.2s; }
.video-close:hover { transform: rotate(90deg); }

/* ======== CASE STUDY MODAL ======== */
.case-modal-overlay { position: fixed; inset: 0; z-index: 999; background: rgba(26,26,46,0.78); backdrop-filter: blur(8px); display: none; align-items: center; justify-content: center; padding: 24px; opacity: 0; transition: opacity 0.3s; }
.case-modal-overlay.open { display: flex; opacity: 1; }
.case-modal { background: #fff; border-radius: var(--radius-lg); width: 100%; max-width: 900px; max-height: 90vh; overflow: hidden; display: flex; flex-direction: column; transform: scale(0.95) translateY(20px); transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1); }
.case-modal-overlay.open .case-modal { transform: scale(1) translateY(0); }
.case-modal-hero { height: 260px; background-size: cover; background-position: center; position: relative; }
.case-modal-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(26,26,46,0.85)); }
.case-modal-title { position: absolute; bottom: 20px; left: 28px; right: 28px; color: #fff; z-index: 2; }
.case-modal-title .case-country { font-size: 13px; font-weight: 600; margin-bottom: 6px; opacity: 0.9; }
.case-modal-title h2 { font-family: var(--font-serif); font-size: 32px; font-weight: 700; line-height: 1.1; }
.case-modal-close { position: absolute; top: 14px; right: 14px; z-index: 3; width: 36px; height: 36px; border-radius: 50%; border: none; background: rgba(255,255,255,0.92); color: var(--navy); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: transform 0.2s; }
.case-modal-close:hover { transform: rotate(90deg); }
.case-modal-body { padding: 28px 32px; overflow-y: auto; flex: 1; }
.case-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 28px; padding: 20px; background: var(--cream); border-radius: 14px; }
.case-metric-value { font-family: var(--font-serif); font-size: 28px; font-weight: 700; color: var(--orange); line-height: 1; }
.case-metric-label { font-size: 12px; color: var(--gray-600); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.05em; }
.case-section { margin-bottom: 22px; }
.case-section h4 { font-size: 12px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.case-section p { color: var(--navy); line-height: 1.6; }
.case-quote { background: linear-gradient(135deg, rgba(224,123,46,0.06), rgba(27,122,110,0.04)); border-left: 3px solid var(--orange); padding: 18px 22px; border-radius: 8px; font-family: var(--font-serif); font-style: italic; color: var(--navy); margin-top: 20px; }
.case-quote-author { display: block; margin-top: 10px; font-style: normal; font-size: 13px; color: var(--gray-600); font-family: var(--font-body); }

/* ======== INSTANT QUOTE CALCULATOR ======== */
.quote-calc { max-width: 900px; margin: 0 auto 60px; background: #fff; border-radius: var(--radius-lg); padding: 32px; border: 1px solid rgba(224,123,46,0.15); box-shadow: var(--shadow-md); }
.quote-calc-header { text-align: center; margin-bottom: 28px; }
.quote-calc-header h3 { font-family: var(--font-serif); font-size: 26px; color: var(--navy); font-weight: 700; }
.quote-calc-header p { color: var(--gray-600); font-size: 14px; margin-top: 6px; }
.quote-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 22px; }
.quote-field label { display: block; font-size: 12px; font-weight: 600; color: var(--navy); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.quote-range { display: flex; align-items: center; gap: 12px; }
.quote-range input[type=range] { flex: 1; height: 6px; -webkit-appearance: none; appearance: none; background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 100%); border-radius: 999px; outline: none; }
.quote-range input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 3px solid var(--orange); cursor: pointer; box-shadow: 0 2px 6px rgba(0,0,0,0.15); }
.quote-range .quote-value { font-weight: 700; color: var(--orange); min-width: 60px; text-align: right; }
.quote-select-group { display: flex; gap: 8px; flex-wrap: wrap; }
.quote-pill { padding: 8px 14px; border-radius: 999px; background: var(--cream); border: 1px solid rgba(26,26,46,0.08); cursor: pointer; font-size: 13px; font-weight: 600; color: var(--gray-600); transition: all 0.2s; }
.quote-pill.active { background: linear-gradient(135deg, var(--orange), var(--orange-light)); color: #fff; border-color: transparent; }
.quote-result { margin-top: 22px; padding: 24px; background: linear-gradient(135deg, rgba(224,123,46,0.08), rgba(240,160,75,0.08)); border-radius: 16px; text-align: center; }
.quote-result-label { font-size: 13px; color: var(--gray-600); margin-bottom: 6px; }
.quote-result-value { font-family: var(--font-serif); font-size: 34px; font-weight: 800; color: var(--navy); }
.quote-result-sub { font-size: 12px; color: var(--gray-600); margin-top: 4px; }
.quote-result button { margin-top: 16px; }

/* ======== TEAM SECTION ======== */
.team { padding: 100px 24px; background: #fff; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1140px; margin: 0 auto; }
.team-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(26,26,46,0.06); box-shadow: var(--shadow-sm); transition: all var(--transition-spring); }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-photo { width: 100%; aspect-ratio: 1; background-size: cover; background-position: center top; background-color: var(--cream); }
.team-photo--empty {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(224,123,46,0.08), rgba(240,160,75,0.06), rgba(27,122,110,0.05));
  color: rgba(224,123,46,0.45);
}
.team-photo--empty svg { width: 40%; height: 40%; max-width: 90px; max-height: 90px; }
.team-info { padding: 18px; text-align: center; }
.team-name { font-weight: 700; color: var(--navy); font-size: 16px; }
.team-role { font-size: 12px; color: var(--orange); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; font-weight: 600; }
.team-bio { font-size: 13px; color: var(--gray-600); line-height: 1.5; margin-top: 8px; }

/* ======== SUSTAINABILITY ======== */
.sustainability { padding: 100px 24px; background: linear-gradient(135deg, rgba(27,122,110,0.04), rgba(43,168,154,0.04)); }
.sust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.sust-card { background: #fff; padding: 32px 26px; border-radius: var(--radius-lg); text-align: center; border: 1px solid rgba(27,122,110,0.15); transition: all var(--transition-spring); }
.sust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal); }
.sust-icon { width: 64px; height: 64px; margin: 0 auto 18px; background: linear-gradient(135deg, rgba(27,122,110,0.12), rgba(43,168,154,0.12)); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--teal); }
.sust-icon svg { width: 32px; height: 32px; }
.sust-card h3 { font-family: var(--font-serif); font-size: 20px; color: var(--navy); margin-bottom: 10px; font-weight: 700; }
.sust-card p  { color: var(--gray-600); font-size: 14px; line-height: 1.55; }

/* ======== FAQ ACCORDION ======== */
.faq { padding: 80px 24px; background: var(--white); }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.faq-card { background: #fff; border-radius: var(--radius-card); border: 1px solid rgba(26,26,46,0.08); overflow: hidden; transition: all var(--transition-spring); cursor: pointer; }
.faq-card:hover { border-color: var(--orange); }
.faq-card.open { border-color: var(--orange); box-shadow: var(--shadow-md); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; font-weight: 600; color: var(--navy); font-size: 15px; }
.faq-chevron { transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1); flex-shrink: 0; margin-left: 12px; color: var(--orange); }
.faq-card.open .faq-chevron { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1); padding: 0 22px; color: var(--gray-600); font-size: 14px; line-height: 1.65; }
.faq-card.open .faq-a { max-height: 400px; padding: 0 22px 20px; }
@media (max-width: 640px) { .faq-grid { grid-template-columns: 1fr; } }

/* ======== RESPONSE BADGE ======== */
.response-section { padding: 48px 24px 80px; background: var(--cream); text-align: center; }
.response-badge { display: inline-flex; align-items: center; gap: 16px; background: var(--white); border-radius: 20px; padding: 24px 36px; border: 1px solid rgba(26,26,46,0.06); box-shadow: var(--shadow-sm); }
.response-icon { width: 48px; height: 48px; border-radius: 14px; background: rgba(224,123,46,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.response-icon svg { width: 22px; height: 22px; stroke: var(--orange); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.response-text { text-align: left; }
.response-text strong { font-family: var(--font-heading); font-weight: 700; font-size: 16px; color: var(--navy); display: block; margin-bottom: 2px; }
.response-text span { font-size: 13px; color: var(--gray-600); }

/* ======== PAGE TITLE HERO (for sub-pages) ======== */
.page-hero { padding: 140px 24px 70px; background: linear-gradient(135deg, #FFF8F0 0%, #FDEBD4 100%); text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(26,26,46,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(26,26,46,0.02) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%); }
.page-hero-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.page-hero h1 { font-family: var(--font-serif); font-size: clamp(36px, 5vw, 56px); font-weight: 900; color: var(--navy); letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 16px; }
.page-hero h1 .gold-text { background: linear-gradient(135deg, var(--orange), var(--orange-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-hero p { color: var(--gray-600); font-size: clamp(15px, 1.8vw, 18px); line-height: 1.7; max-width: 600px; margin: 0 auto; }

/* ======== RESPONSIVE for new components ======== */
@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .cert-badges { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide, .gallery-item.tall { grid-column: span 1; grid-row: span 1; aspect-ratio: 1; }
  .sust-grid { grid-template-columns: 1fr; }
  .case-metrics { grid-template-columns: 1fr; }
  .quote-row { grid-template-columns: 1fr; }
  .case-modal-hero { height: 180px; }
  .case-modal-title h2 { font-size: 22px; }
}
@media (max-width: 540px) {
  .team-grid { grid-template-columns: 1fr; }
  .cert-badges { grid-template-columns: 1fr 1fr; }
  .client-logos-track { gap: 30px; }
  .client-logo { font-size: 16px; }
}

/* ======== GENERAL RESPONSIVE ======== */
@media (min-width: 1440px) { .container { max-width: 1200px; } .stats-grid, .about-grid, .services-grid, .why-grid, .values-grid { max-width: 1140px; } .hero-content { max-width: 800px; } .contact-grid { max-width: 1060px; } }
@media (max-width: 375px) {
  .hero-title { letter-spacing: -1px; font-size: 38px; }
  .hero-subtitle { font-size: 15px; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .section-heading { font-size: 28px; letter-spacing: -0.5px; }
  .navbar { width: calc(100% - 24px); }
  .service-card { padding: 28px 22px; }
  .contact-form-card { padding: 24px; }
  .footer-brand-desc { max-width: 100%; }
}
@media (max-width: 540px) {
  .hero-title { letter-spacing: -1px; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .section-heading { letter-spacing: -0.5px; }
}
