@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;1,400;1,700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --white: #ffffff;
  --off-white: #F7F7F7;
  --light-grey: #F2F2F2;
  --border: #E8E8E8;
  --border-mid: #E0E0E0;
  --text-primary: #0A0A0A;
  --text-secondary: #555555;
  --text-muted: #888888;
  --text-faint: #AAAAAA;
  --accent: #1C1C1C;
  --accent-hover: #333333;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --nav-h: 64px;
  --max-w: 1200px;
  --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-primary);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* ── TYPOGRAPHY ── */
.display { font-family: var(--font-display); }
.eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-faint);
  font-weight: 500;
  margin-bottom: 10px;
}
h1, h2, h3 { font-family: var(--font-display); line-height: 1.1; letter-spacing: -0.5px; }
h1 { font-size: clamp(36px, 5vw, 64px); font-weight: 800; }
h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; }
h3 { font-size: clamp(20px, 2vw, 26px); font-weight: 700; }
em { font-style: italic; color: var(--text-muted); font-weight: 400; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-dark {
  background: var(--accent);
  color: var(--white);
}
.btn-dark:hover { background: var(--accent-hover); }
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-mid);
}
.btn-outline:hover { background: var(--light-grey); }
.btn-ghost {
  background: none;
  border: none;
  padding: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--text-primary);
  padding-bottom: 2px;
  border-radius: 0;
}
.btn-wa {
  background: var(--white);
  color: var(--accent);
  border: none;
}
.btn-wa:hover { background: var(--light-grey); }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
  height: var(--nav-h);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-logo img { height: 40px; width: 40px; object-fit: cover; border-radius: 8px; display: block; }
.footer-logo-img { height: 56px; width: 56px; object-fit: cover; border-radius: 10px; margin-bottom: 12px; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); }
.nav-cta { padding: 9px 20px; font-size: 13px; }

/* ── DROPDOWN NAV ── */
.nav-links li { position: relative; }
.nav-links li.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 5px;
  vertical-align: middle;
  opacity: 0.5;
}
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 6px;
  min-width: 220px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  transform: translateX(-50%) translateY(6px);
  z-index: 200;
}
.nav-links li.has-dropdown:hover .dropdown,
.nav-links li.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}
.dropdown a:hover { background: var(--off-white); color: var(--text-primary); }
.dropdown a i { font-size: 15px; color: var(--text-faint); flex-shrink: 0; }
.dropdown-divider { height: 0.5px; background: var(--border); margin: 4px 6px; }
.dropdown a .dd-label { display: flex; flex-direction: column; gap: 1px; }
.dropdown a .dd-label span { font-size: 11px; color: var(--text-faint); font-weight: 400; }

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h));
  max-height: 760px;
  overflow: hidden;
}
.hero-left {
  padding: 64px 48px 64px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--light-grey);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--text-secondary);
  width: fit-content;
}
.hero-h1 { font-size: clamp(40px, 5.5vw, 72px); color: var(--text-primary); }
.hero-sub { font-size: 15px; color: var(--text-muted); line-height: 1.7; max-width: 400px; }
.hero-actions { display: flex; align-items: center; gap: 20px; }
.hero-stats {
  display: flex;
  gap: 28px;
  padding-top: 24px;
  border-top: 0.5px solid var(--border);
}
.stat-item { display: flex; flex-direction: column; gap: 3px; }
.stat-num { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--text-primary); letter-spacing: -1px; }
.stat-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-faint); }

.hero-right {
  position: relative;
  background: var(--light-grey);
  overflow: hidden;
}
.hero-geo-tl {
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: var(--border);
  border-radius: 0 0 0 100%;
}
.hero-geo-bl {
  position: absolute;
  bottom: 0; left: 0;
  width: 120px; height: 120px;
  background: var(--border);
  border-radius: 0 100% 0 0;
}
.photo-pill {
  position: absolute;
  top: 28px; right: 28px;
  width: 220px; height: 300px;
  border-radius: 110px 110px 16px 16px;
  overflow: hidden;
  border: 4px solid var(--white);
}
.photo-pill img { width: 100%; height: 100%; object-fit: cover; }
.photo-circle {
  position: absolute;
  bottom: 40px; left: 28px;
  width: 150px; height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--white);
}
.photo-circle img { width: 100%; height: 100%; object-fit: cover; }
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 0.5px solid var(--border);
  padding: 12px 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}
.float-card .fc-eye { font-size: 9px; text-transform: uppercase; letter-spacing: 0.7px; color: var(--text-faint); margin-bottom: 4px; }
.float-card .fc-title { font-size: 13px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.float-card .fc-meta { font-size: 11px; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.fc-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.fc-tag { font-size: 9px; background: var(--light-grey); color: var(--text-secondary); padding: 2px 8px; border-radius: 8px; display: inline-block; margin: 3px 3px 0 0; }
.stars { display: flex; gap: 2px; color: var(--accent); font-size: 12px; margin-top: 5px; }

/* ── CLIENTS BAR ── */
.clients-bar {
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 14px 0;
  background: var(--off-white);
  overflow: hidden;
}
.clients-bar-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.clients-label { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-faint); white-space: nowrap; margin-right: 8px; }
.client-pill {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 5px 14px;
  border: 0.5px solid var(--border-mid);
  border-radius: 20px;
  background: var(--white);
  white-space: nowrap;
}

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-dark { background: var(--off-white); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { font-size: 15px; color: var(--text-muted); max-width: 480px; margin: 0 auto; }

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card { background: var(--white); display: flex; flex-direction: column; }
.service-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  filter: grayscale(15%);
}
.service-card:hover .service-card-img img { transform: scale(1.04); filter: grayscale(0%); }
.service-card-img-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.12); }
.service-card-num {
  position: absolute;
  top: 14px; left: 16px;
  font-size: 10px;
  font-weight: 700;
  color: var(--white);
  background: rgba(0,0,0,0.4);
  padding: 3px 10px;
  border-radius: 20px;
}
.service-card-body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--light-grey);
  padding: 4px 11px;
  border-radius: 20px;
  font-size: 10px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}
.service-card h3 { font-size: 22px; }
.service-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; flex: 1; }
.service-pills { display: flex; flex-wrap: wrap; gap: 5px; }
.service-pill {
  font-size: 10px;
  color: var(--text-secondary);
  background: var(--off-white);
  border: 0.5px solid var(--border);
  padding: 3px 10px;
  border-radius: 8px;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  border-bottom: 1px solid var(--text-primary);
  padding-bottom: 1px;
  width: fit-content;
  margin-top: 6px;
  transition: gap var(--transition);
}
.service-card-link:hover { gap: 9px; }
.services-footer {
  background: var(--off-white);
  border-top: 0.5px solid var(--border);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.services-footer p { font-size: 13px; color: var(--text-muted); }
.services-footer strong { color: var(--text-primary); }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(15%); }
.about-year-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--accent);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
}
.about-year-badge .yr { font-family: var(--font-display); font-size: 32px; font-weight: 800; line-height: 1; }
.about-year-badge .yr-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.8px; margin-top: 4px; color: #aaa; }
.about-content { display: flex; flex-direction: column; gap: 20px; }
.about-content h2 { margin-bottom: 4px; }
.about-content p { font-size: 14px; color: var(--text-muted); line-height: 1.75; }
.exp-list { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.exp-item { display: flex; gap: 10px; font-size: 13px; color: var(--text-secondary); }
.exp-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 7px; }

/* ── PORTFOLIO ── */
.port-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 20px; }
.filter-pills { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 24px; }
.fpill {
  font-size: 11px;
  padding: 6px 16px;
  border-radius: 20px;
  border: 0.5px solid var(--border-mid);
  color: var(--text-secondary);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
  font-weight: 500;
}
.fpill:hover, .fpill.active { background: var(--accent); color: var(--white); border-color: var(--accent); }
.port-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.port-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.port-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.3s ease;
  filter: grayscale(20%);
}
.port-item:hover img { transform: scale(1.05); filter: grayscale(0%); }
.port-item-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s ease;
}
.port-item:hover .port-item-overlay { background: rgba(0,0,0,0.15); }
.port-cat {
  position: absolute;
  bottom: 10px; left: 10px;
  font-size: 10px;
  font-weight: 700;
  color: var(--white);
  background: rgba(0,0,0,0.5);
  padding: 3px 10px;
  border-radius: 10px;
  letter-spacing: 0.3px;
}

/* ── CLIENTS GRID ── */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.logo-cell {
  background: var(--white);
  padding: 24px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.logo-cell:hover { background: var(--off-white); }
.logo-cell span {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  text-align: center;
}
.clients-note { text-align: center; margin-top: 16px; font-size: 12px; color: var(--text-faint); }

/* ── FAQ ── */
.faq-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.faq-left h2 { margin-bottom: 12px; }
.faq-left p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.faq-cats { display: flex; gap: 6px; flex-wrap: wrap; }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 0.5px solid var(--border);
  padding: 18px 0;
  cursor: pointer;
}
.faq-item:first-child { border-top: 0.5px solid var(--border); }
.faq-q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.faq-q-text { font-size: 14px; font-weight: 600; color: var(--text-primary); line-height: 1.4; }
.faq-toggle { font-size: 18px; color: var(--text-muted); flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 12px;
  display: none;
}
.faq-item.open .faq-answer { display: block; }
.faq-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 48px;
}
.faq-grid-cell { background: var(--white); padding: 22px 24px; }
.faq-grid-cell h4 { font-size: 13px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; line-height: 1.4; }
.faq-grid-cell p { font-size: 12px; color: var(--text-muted); line-height: 1.65; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; }
.contact-dark {
  background: var(--accent);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}
.contact-dark .eyebrow { color: #555; }
.contact-dark h2 { color: var(--white); }
.contact-dark p { font-size: 14px; color: #777; line-height: 1.7; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info-item { display: flex; gap: 12px; }
.contact-info-item .icon { font-size: 18px; color: #555; flex-shrink: 0; margin-top: 2px; }
.contact-info-item .ci-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.7px; color: #444; margin-bottom: 3px; }
.contact-info-item .ci-val { font-size: 13px; color: #bbb; line-height: 1.5; }
.contact-form-wrap {
  background: var(--off-white);
  padding: 48px 40px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.contact-form-wrap h3 { margin-bottom: 6px; font-size: 22px; }
.contact-form-wrap > p { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-field label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.7px; color: var(--text-faint); font-weight: 600; }
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--white);
  border: 0.5px solid var(--border-mid);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 13px;
  color: var(--text-primary);
  font-family: var(--font-body);
  transition: border-color var(--transition);
  outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--accent); }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%;
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 13px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
  font-family: var(--font-body);
}
.form-submit:hover { background: var(--accent-hover); }

/* ── FOOTER ── */
.footer {
  background: #0A0A0A;
  padding: 56px 0 28px;
  color: #666;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 0.5px solid #1E1E1E;
  margin-bottom: 24px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-logo span { font-style: italic; font-weight: 400; color: #444; }
.footer-tagline { font-size: 12px; color: #444; line-height: 1.7; margin-bottom: 16px; }
.footer-socials { display: flex; gap: 8px; }
.social-btn {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  background: #161616;
  border: 0.5px solid #222;
  display: flex; align-items: center; justify-content: center;
  color: #555;
  font-size: 15px;
  transition: all var(--transition);
}
.social-btn:hover { background: #222; color: #999; }
.footer-col-title { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: #444; font-weight: 600; margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 12px; color: #555; transition: color var(--transition); }
.footer-links a:hover { color: #999; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 11px; color: #333; }
.footer-reg { font-size: 11px; color: #2A2A2A; text-align: right; line-height: 1.6; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--off-white);
  border-bottom: 0.5px solid var(--border);
  padding: 64px 0 56px;
}
.page-hero .eyebrow { margin-bottom: 12px; }
.page-hero h1 { font-size: clamp(32px, 4vw, 52px); max-width: 640px; }
.page-hero p { font-size: 15px; color: var(--text-muted); max-width: 520px; margin-top: 14px; line-height: 1.7; }
.page-hero-actions { display: flex; gap: 14px; margin-top: 24px; }

/* ── PACKAGES ── */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pkg-card {
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  transition: border-color var(--transition);
}
.pkg-card:hover { border-color: var(--accent); }
.pkg-card.featured {
  border: 2px solid var(--accent);
  background: var(--off-white);
  position: relative;
}
.pkg-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.pkg-name { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-faint); font-weight: 600; }
.pkg-price { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--text-primary); }
.pkg-price span { font-size: 14px; font-weight: 400; color: var(--text-muted); }
.pkg-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.pkg-features { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pkg-feat { display: flex; gap: 8px; font-size: 12px; color: var(--text-secondary); }
.pkg-feat-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 7px; }

/* ── BREADCRUMB ── */
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-faint); margin-bottom: 14px; }
.breadcrumb a { color: var(--text-faint); }
.breadcrumb a:hover { color: var(--text-secondary); }
.breadcrumb span { color: var(--text-primary); }

/* ── HAMBURGER BUTTON (base: hidden on desktop) ── */
.nav-toggle { display: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .hero { grid-template-columns: 1fr; max-height: none; }
  .hero-right { min-height: 340px; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-year-badge { bottom: 16px; right: 16px; }
  .port-grid { grid-template-columns: 1fr 1fr; }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-grid-2 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-dark { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .contact-form-wrap { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .packages-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-left { padding: 48px 20px !important; }
  .faq-grid-2 { display: none; }
}

/* ── HAMBURGER BUTTON ── */
.nav-toggle {
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU DRAWER ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 999;
  overflow-y: auto;
  padding: 8px 0 32px;
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.mobile-menu.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu ul li a {
  display: block;
  padding: 13px 20px;
  font-size: 16px;
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.mobile-menu ul li a:hover { background: var(--off-white); }
.mm-heading {
  padding: 16px 20px 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  font-weight: 500;
}
.mm-divider { height: 1px; background: var(--border); margin: 8px 20px; }

@media (max-width: 600px) {
  .port-grid { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  .clients-bar-inner { gap: 8px; }
}

/* ── UTILITIES ── */
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-24 { margin-bottom: 24px; }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; gap: 8px; }
