/* ============================================================
   MEGA ARK LIMITED — Professional Website Stylesheet
   ============================================================ */

/* ===== ROOT ===== */
:root {
  --gold: #c9a227;
  --gold-light: #e2bc4a;
  --gold-dark: #a07d10;
  --black: #0d0d0d;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #222222;
  --white: #ffffff;
  --off-white: #f8f6f2;
  --gray-100: #f4f4f4;
  --gray-200: #e8e8e8;
  --gray-300: #cccccc;
  --gray-500: #888888;
  --gray-700: #444444;
  --text: #1a1a1a;
  --text-muted: #666666;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --shadow-xl: 0 40px 100px rgba(0,0,0,0.25);
  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
input, select, textarea, button { font-family: var(--font-sans); }

/* ===== LOADER ===== */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loader.out { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo { width: 100px; margin: 0 auto 16px; }
.loader-logo text { fill: white; }
.loader-text {
  font-family: var(--font-cond);
  letter-spacing: 8px;
  font-size: 13px;
  color: var(--gray-300);
  margin-bottom: 24px;
}
.loader-progress {
  width: 200px; height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px; overflow: hidden;
  margin: 0 auto;
}
.loader-bar {
  height: 100%;
  background: var(--gold);
  width: 0;
  animation: loadprog 2.2s ease forwards;
}
@keyframes loadprog { 0%{width:0} 60%{width:70%} 100%{width:100%} }

/* ===== HEADER / NAV ===== */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 20px 0;
}
#header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: var(--shadow-md);
  padding: 12px 0;
  backdrop-filter: blur(12px);
}
.navbar {
  max-width: 1360px; margin: 0 auto;
  padding: 0 32px;
  display: flex; align-items: center; gap: 40px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.brand-ma {
  width: 44px; height: 44px;
  background: var(--gold);
  color: white;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border-radius: 2px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 3px;
  color: var(--white);
  transition: color var(--transition);
}
#header.scrolled .brand-name { color: var(--black); }
.brand-sub {
  font-size: 9px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
#header.scrolled .brand-sub { color: var(--gray-500); }
.nav-menu {
  display: flex; gap: 4px;
  margin-left: auto;
}
.nav-menu li a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: var(--radius);
  position: relative;
  transition: color var(--transition);
}
.nav-menu li a::after {
  content: '';
  position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 1px; background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.nav-menu li a:hover::after { transform: scaleX(1); }
.nav-menu li a:hover { color: var(--gold-light); }
#header.scrolled .nav-menu li a { color: var(--gray-700); }
#header.scrolled .nav-menu li a:hover { color: var(--gold); }
.nav-actions {
  display: flex; align-items: center; gap: 16px;
  flex-shrink: 0;
}
.nav-phone {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  display: flex; align-items: center; gap: 6px;
  transition: color var(--transition);
}
.nav-phone:hover { color: var(--gold-light); }
#header.scrolled .nav-phone { color: var(--gray-700); }
#header.scrolled .nav-phone:hover { color: var(--gold); }
.nav-phone i { font-size: 12px; }
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 4px; margin-left: auto;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: white;
  transition: all var(--transition);
  border-radius: 2px;
}
#header.scrolled .nav-toggle span { background: var(--black); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold);
  color: white;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,162,39,0.35);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  color: white;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.8);
}
.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--gray-300);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); }

/* ===== CONTAINER ===== */
.container { max-width: 1360px; margin: 0 auto; padding: 0 32px; }

/* ===== SECTION HELPERS ===== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--gold);
}
.eyebrow.light { color: var(--gold-light); }
.eyebrow.light::before { background: var(--gold-light); }
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}
.section-head h2 em { font-style: normal; color: var(--gold); }
.section-head.light h2 { color: white; }
.section-head p { color: var(--text-muted); font-size: 17px; max-width: 560px; }
.section-head.center p { margin: 0 auto; }
.section-head.light p { color: rgba(255,255,255,0.65); }

/* ===== HERO ===== */
.hero-section { position: relative; height: 100vh; min-height: 620px; }
.heroSwiper { width: 100%; height: 100%; }
.hero-slide {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  display: flex; align-items: center;
  position: relative;
}
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.75) 40%, rgba(0,0,0,0.3) 100%);
}
.slide-content {
  position: relative; z-index: 2;
  max-width: 680px;
  padding: 0 80px;
}
.slide-tag {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(201,162,39,0.5);
  background: rgba(201,162,39,0.1);
  padding: 6px 14px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}
.slide-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
}
.slide-content h1 em { font-style: italic; color: var(--gold-light); }
.slide-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  max-width: 500px;
  line-height: 1.7;
}
.slide-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-nav {
  position: absolute; bottom: 120px; left: 80px;
  display: flex; align-items: center; gap: 16px;
  z-index: 10;
}
.hero-prev, .hero-next {
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  backdrop-filter: blur(6px);
  font-size: 14px;
}
.hero-prev:hover, .hero-next:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.hero-pagination { display: flex; gap: 8px; }
.swiper-pagination-bullet {
  width: 8px; height: 8px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition);
  opacity: 1 !important;
}
.swiper-pagination-bullet-active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
}

/* Stats bar */
.hero-stats-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: white;
  display: flex; align-items: stretch;
  z-index: 10;
  box-shadow: var(--shadow-lg);
}
.stat-item {
  flex: 1;
  padding: 24px 32px;
  display: flex; flex-direction: column; gap: 4px;
  border-right: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item::before {
  content: '';
  position: absolute; bottom: 0; left: 0;
  height: 3px; width: 0;
  background: var(--gold);
  transition: width 0.6s ease;
}
.stat-item:hover::before { width: 100%; }
.stat-item:hover { background: var(--off-white); }
.stat-n {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-plus { font-size: 24px; color: var(--gold); font-weight: 700; vertical-align: super; }
.stat-l {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  font-weight: 500;
}
.stat-sep { width: 1px; background: var(--gray-200); flex-shrink: 0; }

/* ===== ABOUT ===== */
.about-section { padding: 120px 0; background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images { position: relative; }
.img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
}
.img-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.img-main:hover img { transform: scale(1.04); }
.img-secondary {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 52%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 5px solid white;
  aspect-ratio: 4/3;
}
.img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.exp-badge {
  position: absolute; top: 40px; left: -28px;
  background: var(--gold);
  color: white;
  padding: 20px 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
  line-height: 1.2;
}
.exp-year { display: block; font-size: 11px; letter-spacing: 2px; opacity: 0.85; }
.exp-num { display: block; font-family: var(--font-serif); font-size: 42px; font-weight: 700; }
.exp-text { display: block; font-size: 11px; letter-spacing: 1px; opacity: 0.85; }
.about-content { padding-bottom: 40px; }
.about-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}
.about-content h2 em { font-style: normal; color: var(--gold); }
.lead { font-size: 18px; color: var(--text); font-weight: 400; margin-bottom: 16px; line-height: 1.7; }
.about-content > p { color: var(--text-muted); margin-bottom: 32px; line-height: 1.8; }
.about-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.af-item {
  display: flex; gap: 16px;
  padding: 16px 20px;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--gold);
  transition: box-shadow var(--transition);
}
.af-item:hover { box-shadow: var(--shadow-md); }
.af-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--gold);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 16px;
}
.af-item strong { display: block; font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.af-item p { font-size: 13px; color: var(--text-muted); margin: 0; }
.about-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== SERVICES ===== */
.services-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.services-bg {
  position: absolute; inset: 0;
}
.services-bg img { width: 100%; height: 100%; object-fit: cover; }
.services-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,13,13,0.93), rgba(13,13,13,0.88));
}
.services-section .container { position: relative; z-index: 2; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.svc-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
  position: relative;
  display: flex; flex-direction: column;
}
.svc-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,162,39,0.4);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.svc-card.featured-svc {
  border-color: var(--gold);
  background: rgba(201,162,39,0.06);
}
.svc-badge {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  background: var(--gold);
  color: white;
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 10px;
  border-radius: var(--radius);
}
.svc-img {
  height: 200px; overflow: hidden; position: relative;
}
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.svc-card:hover .svc-img img { transform: scale(1.08); }
.svc-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.6));
}
.svc-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.svc-code {
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.svc-body h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
}
.svc-body p { font-size: 14px; color: rgba(255,255,255,0.55); margin-bottom: 16px; line-height: 1.7; }
.svc-body ul { flex: 1; margin-bottom: 20px; }
.svc-body ul li {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  padding: 5px 0;
  display: flex; align-items: center; gap: 8px;
}
.svc-body ul li i { color: var(--gold); font-size: 11px; }
.svc-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(201,162,39,0.3);
  transition: all var(--transition);
  margin-top: auto;
}
.svc-link:hover { gap: 14px; border-color: var(--gold-light); }

/* ===== WHY ===== */
.why-section { padding: 120px 0; background: var(--off-white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.why-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.why-left h2 em { font-style: normal; color: var(--gold); }
.why-left > p { color: var(--text-muted); margin-bottom: 36px; line-height: 1.8; }
.why-certifications { display: flex; flex-wrap: wrap; gap: 10px; }
.cert {
  display: flex; align-items: center; gap: 8px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.cert:hover { border-color: var(--gold); color: var(--gold); }
.cert i { color: var(--gold); font-size: 14px; }
.why-item {
  display: flex; gap: 20px;
  padding: 24px;
  background: white;
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  align-items: flex-start;
}
.why-item:hover { box-shadow: var(--shadow-md); border-color: var(--gold); transform: translateX(4px); }
.wi-num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--gray-200);
  line-height: 1;
  flex-shrink: 0;
  min-width: 56px;
  transition: color var(--transition);
}
.why-item:hover .wi-num { color: var(--gold-light); }
.wi-content h4 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.wi-content p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ===== PROJECTS ===== */
.projects-section { padding: 120px 0; background: white; }
.proj-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.tab {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  background: white;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.tab:hover { border-color: var(--gold); color: var(--gold); }
.tab.active { background: var(--gold); border-color: var(--gold); color: white; }
.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}
.proj-card { border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; }
.proj-card.large { grid-column: span 1; grid-row: span 2; }
.pc-img {
  width: 100%; height: 100%;
  position: relative; overflow: hidden;
}
.pc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.proj-card:hover .pc-img img { transform: scale(1.08); }
.pc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}
.proj-card:hover .pc-overlay { opacity: 1; }
.pc-tag {
  display: inline-block;
  background: var(--gold);
  color: white;
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 10px;
  border-radius: var(--radius);
  margin-bottom: 10px;
  align-self: flex-start;
}
.pc-overlay h3 { font-family: var(--font-serif); font-size: 20px; color: white; margin-bottom: 4px; }
.pc-overlay p { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 14px; }
.pc-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold);
  color: white;
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius);
  align-self: flex-start;
  transition: all var(--transition);
}
.pc-btn:hover { background: var(--gold-light); }
.pc-meta {
  display: none;
}
.proj-card[data-aos="fade-up"] { display: block; }
.proj-card.hidden { display: none; }

/* ===== PROCESS ===== */
.process-section { padding: 120px 0; position: relative; overflow: hidden; }
.process-bg {
  position: absolute; inset: 0;
}
.process-bg img { width: 100%; height: 100%; object-fit: cover; }
.process-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,0.95) 0%, rgba(26,26,26,0.92) 100%);
}
.process-section .container { position: relative; z-index: 2; }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  text-align: center;
  padding: 40px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  position: relative;
}
.step:hover {
  background: rgba(201,162,39,0.08);
  border-color: rgba(201,162,39,0.3);
  transform: translateY(-4px);
}
.step-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 20px;
  opacity: 0.4;
  padding: 0 8px;
  margin-top: 60px;
  flex-shrink: 0;
}
.step-num {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 700;
  color: rgba(201,162,39,0.15);
  line-height: 1;
  position: absolute;
  top: 16px; right: 20px;
}
.step-icon {
  width: 64px; height: 64px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: var(--gold);
  transition: all var(--transition);
}
.step:hover .step-icon { background: var(--gold); color: white; }
.step h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin-bottom: 12px;
}
.step p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
.testi-section { padding: 120px 0; background: var(--off-white); overflow: hidden; }
.testiSwiper { padding-bottom: 64px !important; }
.testi-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  height: auto;
  display: flex; flex-direction: column; gap: 16px;
}
.tc-top {
  display: flex; align-items: center; gap: 14px;
}
.tc-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  flex-shrink: 0;
}
.tc-top strong { display: block; font-size: 16px; font-weight: 700; }
.tc-top span { font-size: 13px; color: var(--text-muted); }
.stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.tc-quote i { font-size: 28px; color: var(--gold); opacity: 0.3; }
.testi-card p { font-size: 15px; color: var(--text-muted); line-height: 1.8; font-style: italic; flex: 1; }
.tc-project {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px;
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}
.testi-pagination {
  bottom: 0 !important;
}
.testi-nav {
  position: absolute; bottom: 0; right: 0; z-index: 10;
  display: flex; gap: 8px;
}
.testi-prev, .testi-next {
  width: 44px; height: 44px;
  border: 1px solid var(--gray-200);
  background: white;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 14px;
  color: var(--text-muted);
}
.testi-prev:hover, .testi-next:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}

/* ===== BOOKING ===== */
.booking-section {
  padding: 0;
  background: var(--dark);
}
.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  min-height: 100vh;
}
.booking-info {
  padding: 100px 60px;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  position: sticky; top: 0;
  display: flex; flex-direction: column; justify-content: center;
  min-height: 100vh;
}
.booking-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 16px;
}
.booking-info h2 em { font-style: normal; color: var(--gold-light); }
.booking-info > p { color: rgba(255,255,255,0.55); font-size: 16px; margin-bottom: 36px; line-height: 1.8; }
.bk-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
.bk-f {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
}
.bk-f i { color: var(--gold); font-size: 16px; }
.bk-contact { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.bk-contact-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.bk-contact-item:hover { border-color: rgba(201,162,39,0.3); background: rgba(201,162,39,0.06); }
.bk-contact-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(201,162,39,0.15);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 16px;
}
.bk-contact-item span { display: block; font-size: 11px; letter-spacing: 1px; color: rgba(255,255,255,0.4); text-transform: uppercase; margin-bottom: 2px; }
.bk-contact-item strong { font-size: 14px; color: white; }
.bk-hours {
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
}
.bk-hours h5 {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px;
  font-family: var(--font-cond);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.bk-hours p { font-size: 14px; color: rgba(255,255,255,0.5); padding: 2px 0; }

/* Booking form */
.booking-form-wrap {
  padding: 80px 60px;
  background: var(--off-white);
  display: flex; flex-direction: column; justify-content: center;
}
.form-header { margin-bottom: 36px; }
.form-header h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}
.form-header p { color: var(--text-muted); font-size: 15px; }
.form-row {
  display: flex; gap: 16px;
  margin-bottom: 16px;
}
.field {
  flex: 1;
  display: flex; flex-direction: column; gap: 6px;
}
.field.full { flex: 100%; }
.field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--gray-700);
}
.field label span { color: var(--gold); }
.field input, .field select, .field textarea {
  width: 100%;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 13px 16px;
  font-size: 15px;
  color: var(--text);
  transition: all var(--transition);
  outline: none;
  appearance: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.12);
}
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.field textarea { min-height: 110px; resize: vertical; }
.budget-options {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.budget-opt {
  cursor: pointer;
}
.budget-opt input { display: none; }
.budget-opt span {
  display: inline-block;
  padding: 8px 16px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
  cursor: pointer;
}
.budget-opt input:checked + span {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}
.budget-opt span:hover { border-color: var(--gold); color: var(--gold); }
.check-label {
  display: flex; align-items: flex-start; gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.check-label input { margin-top: 2px; accent-color: var(--gold); flex-shrink: 0; }
.check-label a { color: var(--gold); text-decoration: underline; }
.btn-submit {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--gold);
  color: white;
  border: none;
  padding: 17px;
  border-radius: var(--radius-lg);
  font-family: var(--font-cond);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 8px;
}
.btn-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(201,162,39,0.35);
}

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: white;
  border-radius: 12px;
  padding: 52px 44px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl);
  position: relative;
  animation: modalPop 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes modalPop { from{opacity:0;transform:scale(0.88)translateY(20px)} to{opacity:1;transform:scale(1)translateY(0)} }
.modal-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none;
  font-size: 24px; cursor: pointer;
  color: var(--gray-500);
  transition: color var(--transition);
  line-height: 1;
}
.modal-close:hover { color: var(--text); }
.modal-icon {
  font-size: 64px;
  color: #2ecc71;
  margin-bottom: 16px;
  display: block;
}
.modal-box h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}
.modal-box > p { color: var(--text-muted); margin-bottom: 20px; }
.modal-summary {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  text-align: left;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 2;
}
.modal-summary span { color: var(--text-muted); font-size: 12px; font-weight: 600; letter-spacing: 0.5px; }
.modal-summary strong { color: var(--text); }
.modal-ref { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.modal-ref strong { color: var(--gold); }
.modal-btns { display: flex; gap: 12px; justify-content: center; }

/* ===== CONTACT ===== */
.contact-section { padding: 120px 0; background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.c-card {
  padding: 32px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: all var(--transition);
}
.c-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.c-icon {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.c-card h4 {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--text);
}
.c-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 4px; }
.c-card a { color: var(--gold); }
.c-hours { font-size: 12px !important; color: var(--gray-300) !important; }
.active-badge {
  background: rgba(46,204,113,0.1);
  color: #27ae60;
  border: 1px solid rgba(46,204,113,0.3);
  border-radius: 50px;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 600;
}
.c-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 8px;
}
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.map-inner { width: 100%; height: 100%; position: relative; }
.map-bg { width: 100%; height: 100%; object-fit: cover; }
.map-glass {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(2px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
}
.map-pin { font-size: 52px; color: var(--gold); text-shadow: 0 4px 20px rgba(201,162,39,0.5); }
.map-glass h3 { font-family: var(--font-serif); font-size: 26px; color: white; }
.map-glass p { color: rgba(255,255,255,0.7); margin-bottom: 8px; }

/* ===== FOOTER ===== */
.footer { background: var(--black); }
.footer-top { padding: 80px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
}
.f-brand p { color: rgba(255,255,255,0.45); font-size: 14px; line-height: 1.8; margin-top: 16px; margin-bottom: 24px; }
.f-socials { display: flex; gap: 10px; }
.f-socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  transition: all var(--transition);
}
.f-socials a:hover { background: var(--gold); border-color: var(--gold); color: white; }
.f-col h5 {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.f-col ul { display: flex; flex-direction: column; gap: 10px; }
.f-col ul li {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  display: flex; align-items: center; gap: 8px;
  transition: color var(--transition);
}
.f-col ul li:hover, .f-col ul li a:hover { color: var(--gold-light); }
.f-col ul li i { font-size: 12px; color: var(--gold); opacity: 0.7; }
.f-reg { margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.06); }
.f-reg p { font-size: 13px; color: rgba(255,255,255,0.3); padding: 2px 0; }
.f-reg strong { color: rgba(255,255,255,0.5); }
.footer-bottom { padding: 20px 0; }
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.25); }
.f-links { display: flex; gap: 20px; }
.f-links a { font-size: 12px; color: rgba(255,255,255,0.25); transition: color var(--transition); }
.f-links a:hover { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .booking-wrapper { grid-template-columns: 1fr; }
  .booking-info { min-height: auto; position: static; padding: 60px 40px; }
  .booking-form-wrap { padding: 60px 40px; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; padding: 16px; flex-direction: column; box-shadow: var(--shadow-lg); z-index: 100; }
  .nav-menu.open { display: flex; }
  .nav-menu li a { color: var(--gray-700) !important; padding: 12px 16px; }
  .nav-actions .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  #header { padding: 14px 0; }
  .hero-stats-bar { display: none; }
  .slide-content { padding: 0 40px; }
  .hero-nav { left: 40px; bottom: 80px; }
  .about-grid { grid-template-columns: 1fr; }
  .img-secondary { display: none; }
  .exp-badge { display: none; }
  .process-steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); margin: 0; padding: 8px 0; align-self: center; }
  .proj-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 240px; }
  .proj-card.large { grid-column: span 2; }
}

@media (max-width: 600px) {
  .slide-content { padding: 0 24px; }
  .slide-content h1 { font-size: 36px; }
  .slide-btns { flex-direction: column; gap: 10px; }
  .slide-btns .btn-gold, .slide-btns .btn-ghost { justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .proj-grid { grid-template-columns: 1fr; }
  .proj-card.large { grid-column: span 1; }
  .form-row { flex-direction: column; }
  .booking-info { padding: 40px 24px; }
  .booking-form-wrap { padding: 40px 24px; }
  .modal-box { padding: 36px 24px; }
  .hero-nav { display: none; }
  .process-steps { gap: 12px; }
}
