/* =========================================
   RESET & VARIABLES
========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #C9A84C;
  --gold-light: #E4C96A;
  --gold-pale: #F5EAC8;
  --gold-dim: rgba(201,168,76,0.18);
  --navy: #0A1628;
  --navy-mid: #112240;
  --navy-light: #1A3260;
  --blue-accent: #1E4D8C;
  --white: #FFFFFF;
  --off-white: #FAF9F7;
  --soft-gray: #F2F0EC;
  --text-muted: #7A8499;
  --border: rgba(201,168,76,0.2);
  --shadow-gold: 0 8px 40px rgba(201,168,76,0.15);
  --shadow-dark: 0 20px 60px rgba(10,22,40,0.25);
  --radius: 4px;
  --radius-lg: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
  line-height: 1.6;
}

/* =========================================
   SCROLLBAR
========================================= */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* =========================================
   TYPOGRAPHY
========================================= */
.display { font-family: 'Playfair Display', serif; }
.serif { font-family: 'Playfair Display', serif; }

/* =========================================
   NAVIGATION
========================================= */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 5%;
  transition: all 0.4s ease;
}

nav.scrolled {
  background: rgba(10,22,40,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 5%;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.nav-logo span {
  color: var(--gold);
  font-style: italic;
}

.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
}

.nav-links a {
  font-size: 13px; font-weight: 400; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.75);
  text-decoration: none; transition: color 0.25s;
  position: relative;
}

.nav-links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; right: 0; height: 1px;
  background: var(--gold); transform: scaleX(0);
  transform-origin: left; transition: transform 0.3s ease;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 11px 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); border: none; cursor: pointer;
  text-decoration: none; border-radius: var(--radius);
  transition: all 0.3s ease; box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--white); transition: all 0.3s;
}

/* =========================================
   HERO
========================================= */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

/* Architectural SVG background */
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 45%, #0D2444 70%, #0A1E3A 100%);
}

/* Skyline illustration layer */
.hero-skyline {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 70%; opacity: 0.18;
}

/* Gold light rays */
.hero-rays {
  position: absolute; top: 0; right: 0;
  width: 65%; height: 100%;
  background: radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.25) 0%, transparent 65%);
  pointer-events: none;
}

/* Diagonal gold line decoration */
.hero-deco {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden; pointer-events: none;
}
.hero-deco::before {
  content: '';
  position: absolute; top: -20%; right: 8%;
  width: 1px; height: 160%;
  background: linear-gradient(180deg, transparent, rgba(201,168,76,0.4) 30%, rgba(201,168,76,0.4) 70%, transparent);
  transform: rotate(8deg);
}
.hero-deco::after {
  content: '';
  position: absolute; top: -20%; right: 18%;
  width: 1px; height: 160%;
  background: linear-gradient(180deg, transparent, rgba(201,168,76,0.15) 30%, rgba(201,168,76,0.15) 70%, transparent);
  transform: rotate(8deg);
}

/* Grid texture */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 860px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 2rem;
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 40px;
  background: rgba(201,168,76,0.08);
  backdrop-filter: blur(10px);
  animation: fadeDown 0.8s ease both;
}

.hero-badge::before {
  content: '';
  display: block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--gold);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 7vw, 70px);
  font-weight: 700; line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeUp 1s ease 0.2s both;
}

.hero-headline .gold-line {
  display: block;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 300; line-height: 1.75;
  color: rgba(255,255,255,0.65);
  max-width: 700px; margin: 0 auto 2.5rem;
  animation: fadeUp 1s ease 0.35s both;
}

.hero-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap;
  animation: fadeUp 1s ease 0.5s both;
}

.btn-gold {
  font-family: 'Outfit', sans-serif;
  font-size: 14px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 18px 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); border: none; cursor: pointer;
  text-decoration: none; border-radius: var(--radius);
  transition: all 0.35s ease;
  box-shadow: 0 6px 30px rgba(201,168,76,0.4);
  display: inline-block;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.55);
}

.btn-outline {
  font-size: 14px; font-weight: 500; letter-spacing: 0.04em;
  padding: 17px 36px;
  color: var(--white); border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  text-decoration: none; border-radius: var(--radius);
  transition: all 0.3s ease;
  display: inline-flex; align-items: center; gap: 10px;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

/* Hero stats bar */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  display: flex; justify-content: center;
}

.hero-stats-inner {
  display: flex;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}

.hero-stat {
  padding: 1.5rem 3rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hero-stat:last-child { border-right: none; }

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 700;
  color: var(--gold); line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 12px; color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

/* =========================================
   SECTION UTILS
========================================= */
section { position: relative; }

.section-pad { padding: 7rem 5%; }
.section-pad-sm { padding: 5rem 5%; }

.max-w { max-width: 1200px; margin: 0 auto; }

.section-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 1rem;
}

.section-eyebrow::before {
  content: ''; display: block;
  width: 30px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 700; line-height: 1.15;
  color: var(--navy);
}

.section-title.light { color: var(--white); }

.section-title em {
  font-style: italic;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 16px; color: var(--text-muted);
  line-height: 1.8; max-width: 540px;
  margin-top: 1rem;
}

.section-sub.light { color: rgba(255,255,255,0.6); }

/* =========================================
   ABOUT
========================================= */
.about-section { background: var(--off-white); }

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}

.about-visual {
  position: relative;
}

/* Architectural abstract visual */
.about-visual-box {
  position: relative;
  height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(145deg, var(--navy-mid), var(--navy-light));
}

.about-visual-box::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(201,168,76,0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(30,77,140,0.5) 0%, transparent 50%);
}

.about-visual-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0.5;
}

.about-gold-card {
  position: absolute; bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-gold);
  min-width: 200px;
}

.about-gold-card .num {
  font-family: 'Playfair Display', serif;
  font-size: 44px; font-weight: 700;
  color: var(--navy); line-height: 1;
  margin-bottom: 4px;
}

.about-gold-card .lbl {
  font-size: 13px; font-weight: 500;
  color: rgba(10,22,40,0.7);
}

.about-badge {
  position: absolute; top: 24px; left: -24px;
  background: var(--navy);
  border: 1px solid var(--border);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dark);
}

.about-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 700;
  color: var(--gold); line-height: 1;
}

.about-badge .lbl { font-size: 12px; color: rgba(255,255,255,0.5); }

.about-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-top: 2.5rem;
}

.about-feat {
  display: flex; align-items: flex-start; gap: 14px;
}

.about-feat-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}

.about-feat-icon svg { width: 20px; height: 20px; }

.about-feat-title {
  font-size: 14px; font-weight: 600;
  color: var(--navy); margin-bottom: 3px;
}

.about-feat-text {
  font-size: 13px; color: var(--text-muted); line-height: 1.6;
}

/* =========================================
   SERVICES
========================================= */
.services-section { background: var(--white); }

.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 4rem; gap: 2rem; flex-wrap: wrap;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(145deg, rgba(201,168,76,0.04) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  box-shadow: 0 20px 50px rgba(10,22,40,0.1), 0 4px 20px rgba(201,168,76,0.12);
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }

.service-num {
  font-size: 11px; letter-spacing: 0.1em; color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.service-icon-wrap {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold-dim), rgba(201,168,76,0.08));
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: var(--gold);
}

.service-card:hover .service-icon-wrap svg path,
.service-card:hover .service-icon-wrap svg rect,
.service-card:hover .service-icon-wrap svg circle,
.service-card:hover .service-icon-wrap svg polyline,
.service-card:hover .service-icon-wrap svg line,
.service-card:hover .service-icon-wrap svg polygon {
  stroke: var(--navy) !important;
}

.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 600;
  color: var(--navy); margin-bottom: 0.75rem;
  line-height: 1.25;
}

.service-desc {
  font-size: 14px; color: var(--text-muted); line-height: 1.75;
}

/* =========================================
   PORTFOLIO
========================================= */
.portfolio-section {
  background: var(--navy);
  color: var(--white);
}

.portfolio-section .section-eyebrow { color: var(--gold-light); }
.portfolio-section .section-eyebrow::before { background: linear-gradient(90deg, var(--gold-light), var(--gold)); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s ease;
  cursor: pointer;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.2);
}

.portfolio-card:first-child {
  /*grid-column: span 2;*/
}

.portfolio-visual {
  height: 280px;
  position: relative;
  overflow: hidden;
}

.portfolio-card:first-child .portfolio-visual {
  height: 280px;
}

.portfolio-visual-inner {
  position: absolute; inset: 0;
  transition: transform 0.6s ease;
}

.portfolio-card:hover .portfolio-visual-inner {
  /*transform: scale(1.05);*/
}

/* Building visual styles */
.pv-1 {
  background: linear-gradient(160deg, #0D1F3C 0%, #1A3566 50%, #0A2040 100%);
}
.pv-2 {
  background: linear-gradient(160deg, #1A2E4A 0%, #0D3055 60%, #051A30 100%);
}
.pv-3 {
  background: linear-gradient(160deg, #152435 0%, #0A3050 60%, #061520 100%);
}

.pv-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.6) 100%);
}

.portfolio-tag {
  position: absolute; top: 1rem; left: 1rem;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); border-radius: 30px;
}

.portfolio-body { padding: 1.5rem 1.75rem 1.75rem; }

.portfolio-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 600;
  color: var(--white); 
  margin-bottom: 0rem;
}

.portfolio-metrics {
  display: flex; gap: 1.5rem;
}

.p-metric { text-align: center; }
.p-metric-num {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.p-metric-label { 
    /*font-size: 11px; */
    color: rgba(255,255,255,0.45); 
    margin-top: 3px; 
    text-align: left;
    
}

.portfolio-divider {
  width: 1px; background: rgba(255,255,255,0.1);
}

/* =========================================
   WHY KIROZ
========================================= */
.why-section { background: var(--soft-gray); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem; align-items: center;
}

.why-left .section-sub { max-width: 380px; }

.why-points {
  display: flex; flex-direction: column; gap: 1px;
}

.why-point {
  display: flex; gap: 1.5rem;
  padding: 2rem;
  background: var(--white);
  border: 1px solid rgba(10,22,40,0.06);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.why-point:hover {
  border-color: var(--border);
  box-shadow: 0 8px 30px rgba(201,168,76,0.1);
  transform: translateX(6px);
}

.why-point-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px; font-weight: 700;
  color: var(--gold-pale); line-height: 1;
  flex-shrink: 0; width: 48px;
  transition: color 0.3s;
}

.why-point:hover .why-point-num { color: var(--gold); }

.why-point-content {}

.why-point-title {
  font-size: 16px; font-weight: 600;
  color: var(--navy); margin-bottom: 6px;
}

.why-point-text {
  font-size: 14px; color: var(--text-muted); line-height: 1.7;
}

/* =========================================
   TESTIMONIALS
========================================= */
.testimonials-section {
  background: var(--navy-mid);
  color: var(--white);
}

.testimonials-section .section-eyebrow { color: var(--gold-light); }
.testimonials-section .section-eyebrow::before { background: linear-gradient(90deg, var(--gold-light), var(--gold)); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
  opacity: 0; transition: opacity 0.3s;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.testimonial-card:hover::before { opacity: 1; }

.testimonial-stars {
  display: flex; gap: 4px; margin-bottom: 1.25rem;
}

.star {
  color: var(--gold); font-size: 14px;
}

.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-style: italic;
  font-weight: 400; line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.75rem;
}

.testimonial-author {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.25rem;
}

.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dim), rgba(201,168,76,0.3));
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 600;
  color: var(--gold); flex-shrink: 0;
}

.author-name {
  font-size: 14px; font-weight: 600;
  color: var(--white);
}

.author-role { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* =========================================
   CTA SECTION
========================================= */
.cta-section {
  padding: 9rem 5%;
  background: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
}

/* Decorative gold rings */
.cta-rings {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.1);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }

.cta-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700; line-height: 1.1;
  color: var(--navy); margin-bottom: 1.25rem;
}

.cta-headline em {
  font-style: italic;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-sub {
  font-size: 17px; color: var(--text-muted);
  line-height: 1.75; max-width: 480px; margin: 0 auto 3rem;
}

.cta-gold-line {
  width: 60px; height: 2px; margin: 1.5rem auto;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

/* Contact form */
.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 620px;
  margin: 0 auto;
  text-align: left;
}

.cta-form .form-full {
  grid-column: 1 / -1;
}

.cta-form input,
.cta-form textarea {
  width: 100%; padding: 15px 18px;
  font-family: 'Outfit', sans-serif; font-size: 14px;
  color: var(--navy); border: 1.5px solid rgba(10,22,40,0.12);
  background: var(--soft-gray);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.cta-form input:focus,
.cta-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.cta-form input::placeholder,
.cta-form textarea::placeholder { color: var(--text-muted); }

.cta-form textarea {
  resize: vertical; min-height: 110px; line-height: 1.6;
}

.cta-form .form-label {
  display: block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 6px;
}

.cta-form .form-label span { color: var(--gold); }

.cta-form .form-field { display: flex; flex-direction: column; }

.cta-form button {
  grid-column: 1 / -1;
  padding: 17px 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); border: none; cursor: pointer;
  font-family: 'Outfit', sans-serif; font-size: 13px;
  font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.3s;
  white-space: nowrap;
  box-shadow: 0 6px 24px rgba(201,168,76,0.35);
}

.cta-form button:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201,168,76,0.5);
}

.cta-form input.field-error,
.cta-form textarea.field-error {
  border-color: #E24B4A;
  box-shadow: 0 0 0 3px rgba(226,75,74,0.1);
}

.cta-trust {
  display: flex; align-items: center; justify-content: center; gap: 2rem;
  margin-top: 2.5rem; flex-wrap: wrap;
}

.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-muted);
}

.trust-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
}

/* =========================================
   FOOTER
========================================= */
footer {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 5% 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr 1fr;
  /*gap: 4rem;*/
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700;
  color: var(--white); letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.footer-brand span { color: var(--gold); font-style: italic; }

.footer-tagline {
  font-size: 14px; color: rgba(255,255,255,0.45);
  line-height: 1.75; max-width: 280px; margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex; gap: 0.75rem;
}

.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none; font-size: 14px; font-weight: 600;
  transition: all 0.3s;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

.footer-col-title {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  margin-bottom: 1.5rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; padding: 0 !important;}

.footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.55);
  text-decoration: none; transition: color 0.2s;
  display: flex; align-items: center; gap: 6px;
}

.footer-links a::before {
  content: '';
  display: block; width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.footer-links a:hover { color: var(--gold-light); }
.footer-links a:hover::before { width: 12px; }

.footer-contact { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 2; }
.footer-contact strong { color: rgba(255,255,255,0.8); font-weight: 500; }

.footer-bottom {
  padding: 1.75rem 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap;
}

.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }

.footer-legal {
  display: flex; gap: 1.5rem; list-style: none;
}

.footer-legal a {
  font-size: 12px; color: rgba(255,255,255,0.25);
  text-decoration: none; transition: color 0.2s;
}

.footer-legal a:hover { color: var(--gold); }

/* =========================================
   ANIMATIONS
========================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1; transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* =========================================
   GOLD DIVIDER
========================================= */
.gold-divider {
  width: 100%;
  display: flex; align-items: center;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  height: 2px;
  opacity: 0.4;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { order: -1; }
  .about-visual-box { height: 380px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-card:first-child { grid-column: 1 / -1; }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  nav { padding: 1rem 5%; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-headline { font-size: 40px; }
  .hero-stats-inner { flex-wrap: wrap; }
  .hero-stat { flex: 1; min-width: 120px; padding: 1.25rem 1.5rem; }

  .section-pad { padding: 5rem 5%; }

  .about-features { grid-template-columns: 1fr; }
  .about-badge { left: 0; top: 16px; }
  .about-gold-card { right: 0; bottom: -12px; }

  .services-grid { grid-template-columns: 1fr; }

  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card:first-child { grid-column: auto; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.75rem; }

  .cta-form { grid-template-columns: 1fr; }
  .cta-form .form-full, .cta-form button { grid-column: 1; }
  .cta-section{padding: 3rem 5%;}
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-gold, .btn-outline { width: 100%; text-align: center; justify-content: center; }
  .portfolio-metrics { flex-wrap: wrap; gap: 1rem; }
  .hero-stats-inner { border-radius: 0; }
  .hero-stat { min-width: 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .hero-stat:last-child { border-bottom: none; }
  .cta-trust { 
      /*flex-direction: column; */
      gap: 0.75rem; }
}

/* =========================================
   MOBILE NAV OVERLAY
========================================= */
.mobile-nav {
  position: fixed; inset: 0; z-index: 999;
  background: var(--navy);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 600;
  color: var(--white); text-decoration: none;
  transition: color 0.2s;
}

.mobile-nav a:hover { color: var(--gold); }

.mobile-nav .btn-gold { font-size: 14px; margin-top: 1rem; }

.mobile-close {
  position: absolute; top: 4.5rem; right: 6%;
  background: none; border: none;
  cursor: pointer; color: var(--white); font-size: 28px;
}

/* ── Dropdown ─────────────────────────────────────────────────── */
.kz-dropdown-parent {
  position: relative;
}
 
.kz-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  /* inherits your nav link styles */
}
 
.kz-chevron {
  transition: transform 0.22s ease;
  flex-shrink: 0;
}
 
.kz-dropdown-parent.is-open .kz-chevron {
  transform: rotate(180deg);
}
 
.kz-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 248px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10), 0 2px 8px rgba(0, 0, 0, 0.06);
  z-index: 999;
  animation: kzDropIn 0.18s ease;
}
 
/* small arrow notch */
.kz-dropdown::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
 
.kz-dropdown-parent.is-open .kz-dropdown {
  display: block;
}
 
@keyframes kzDropIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
 
.kz-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 9px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}
 
.kz-dropdown-item:hover {
  background: #f6f5f2;
}
 
.kz-dd-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
 
.kz-dd-icon--video   { background: #f0eefc; color: #5a50c8; }
.kz-dd-icon--social  { background: #e4f5ef; color: #1a8a5a; }
.kz-dd-icon--brochure{ background: #fef0e8; color: #c0571a; }
 
.kz-dd-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
 
.kz-dd-title {
  font-size: 13px;
  font-weight: 600;
  color: #111;
  line-height: 1.2;
}
 
.kz-dd-desc {
  font-size: 11.5px;
  color: #888;
  line-height: 1.3;
}
 
 
/* ── Video cards — add data-video-index to existing cards ──────── */
/*
   On your existing video card elements inside #our-work, add:
     data-video-index="0"   (0, 1, 2 … matching the JS videos array)
     style="cursor:pointer"
   The JS below handles the click automatically.
*/
 
 
/* ── Modal ─────────────────────────────────────────────────────── */
.kz-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: kzFadeIn 0.2s ease;
}
 
.kz-modal-overlay[hidden] {
  display: none;
}
 
@keyframes kzFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
 
.kz-modal {
  background: #fff;
  border-radius: 18px;
  width: min(680px, 100%);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
  animation: kzSlideUp 0.22s ease;
}
 
@keyframes kzSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
.kz-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px 20px 16px;
  border-bottom: 1px solid #f0ede8;
}
 
.kz-modal-category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #aaa;
  margin: 0 0 3px;
}
 
.kz-modal-title {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  margin: 0;
  line-height: 1.3;
}
 
.kz-modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #e8e5e0;
  background: #faf9f7;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #555;
  transition: background 0.15s, color 0.15s;
}
 
.kz-modal-close:hover {
  background: #f0ede8;
  color: #111;
}
 
.kz-modal-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0a0a0a;
}
 
.kz-modal-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
 
.kz-modal-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.35);
  font-size: 13px;
  text-align: center;
  padding: 20px;
}
 
.kz-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-top: 1px solid #f0ede8;
  gap: 12px;
}
 
.kz-modal-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
 
.kz-modal-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  border: 1px solid #e0ddd8;
  border-radius: 8px;
  background: transparent;
  font-size: 13px;
  color: #555;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, color 0.15s;
}
 
.kz-modal-nav-btn:hover {
  background: #f6f4f1;
  color: #111;
}
 
.kz-modal-counter {
  font-size: 12px;
  color: #aaa;
  min-width: 40px;
  text-align: center;
}
 
.kz-modal-cta {
  display: inline-block;
  padding: 9px 22px;
  background: #111;
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  font-family: inherit;
  transition: background 0.15s;
}
 
.kz-modal-cta:hover {
  background: #333;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

.nav-links .dropdown-menu {
  border-radius: 10px;
  padding: 10px 0;
}

.nav-links .dropdown-item:hover {
  background: #f1f1f100;
}
.dropdown-item{
    padding: 10px !important;
}

.nav-links .dropdown {
  position: relative;
}

.nav-links .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
}

.dropdown-menu{
    background-color: #112240 !important;
    border: 1px solid #2c3e5e !important;
    border-radius: 5px !important;
    margin-top: 10px !important;
}

.arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.dropdown.show .arrow {
  transform: rotate(180deg); /* turns ▼ into ▲ */
}
 
/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .kz-dropdown            { background: #1c1c1c; border-color: rgba(255,255,255,0.10); }
  .kz-dropdown::before    { background: #1c1c1c; border-color: rgba(255,255,255,0.10); }
  .kz-dropdown-item:hover { background: rgba(255,255,255,0.06); }
  .kz-dd-title            { color: #f0ede8; }
  .kz-dd-desc             { color: #888; }
  .kz-modal               { background: #181818; }
  .kz-modal-header        { border-bottom-color: #2a2a2a; }
  .kz-modal-title         { color: #f0ede8; }
  .kz-modal-close         { background: #242424; border-color: #333; color: #aaa; }
  .kz-modal-close:hover   { background: #2e2e2e; color: #f0ede8; }
  .kz-modal-footer        { border-top-color: #2a2a2a; }
  .kz-modal-nav-btn       { border-color: #333; color: #aaa; }
  .kz-modal-nav-btn:hover { background: #242424; color: #f0ede8; }
  .kz-modal-counter       { color: #666; }
}
.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    display: none;
}

.mobile-submenu {
    font-size: 25px !important;
    color: #dcbf61 !important;
    line-height: 20px;
}


@media (max-width: 600px) {
  .hero-stats {
      position: relative !important;

    }
    .hero {
        display: block !important;
    }
    .hero-content {
        padding: 70px 1.5rem 40px !important;
    }
}