/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a2e;
  background: #ffffff;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── VARIABLES ────────────────────────────────────────────── */
:root {
  --gold:        #b8860b;
  --gold-light:  #d4a843;
  --gold-pale:   #fdf6e3;
  --dark:        #1a1a2e;
  --dark2:       #16213e;
  --mid:         #0f3460;
  --text:        #333344;
  --text-light:  #666680;
  --white:       #ffffff;
  --off-white:   #f8f7f4;
  --border:      #e8e4d9;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.12);
  --max-w:       1200px;
  --hdr-h:       72px;
}

/* ── UTILITIES ────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-tag {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid rgba(184,134,11,0.2);
}
.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 42px); color: var(--dark); margin-bottom: 14px; }
.section-header p { color: var(--text-light); font-size: 17px; max-width: 580px; margin: 0 auto; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 26px; border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
  cursor: pointer; border: 2px solid transparent;
  transition: all 0.22s ease; white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-primary:hover { background: var(--dark); border-color: var(--dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(184,134,11,0.3); }
.btn-secondary { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn-secondary:hover { background: var(--dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: var(--white); color: var(--dark); }
.btn-white { background: var(--white); color: var(--dark); border-color: var(--white); }
.btn-white:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--dark); }
.btn-lg { padding: 14px 34px; font-size: 16px; }

/* ── HEADER ──────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--hdr-h);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--hdr-h); gap: 24px;
}
.logo { display: flex; align-items: center; gap: 8px; }
.logo-icon { font-size: 28px; color: var(--gold); line-height: 1; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--dark); }
.logo-text strong { color: var(--gold); }
.main-nav ul { display: flex; gap: 4px; align-items: center; }
.main-nav ul li { position: relative; }
.main-nav a {
  display: block; padding: 8px 14px; font-size: 14px; font-weight: 500;
  color: var(--text); border-radius: var(--radius); transition: all 0.18s;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); }
.main-nav a.active { font-weight: 600; }
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: ' ▾'; font-size: 10px; opacity: 0.6; }
.dropdown {
  visibility: hidden; opacity: 0; pointer-events: none;
  position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 230px; padding: 8px 0; z-index: 2000;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  visibility: visible; opacity: 1; pointer-events: all;
}
.dropdown a { padding: 10px 18px; font-size: 13px; display: block; color: var(--text); white-space: nowrap; }
.dropdown a:hover { background: var(--off-white); color: var(--gold); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.26s ease; }
/* Animated X when open */
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV ──────────────────────────────────────────── */
.mobile-nav {
  position: fixed; top: var(--hdr-h); left: 0; right: 0; z-index: 999;
  background: var(--white); border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg); padding: 20px 24px 24px;
  transform: translateY(-100%); opacity: 0;
  pointer-events: none; transition: all 0.28s ease;
}
.mobile-nav.open { transform: none; opacity: 1; pointer-events: all; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a { display: block; padding: 12px 16px; font-size: 16px; font-weight: 500; color: var(--dark); border-radius: var(--radius); }
.mobile-nav a:hover { background: var(--off-white); color: var(--gold); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 88vh;
  display: flex; align-items: center;
  background: var(--dark2); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 50%, #1a1a2e 100%);
}
.hero-bg::before {
  content: '∞';
  position: absolute; right: -60px; top: 50%;
  transform: translateY(-50%);
  font-size: 600px; font-family: 'Playfair Display', serif;
  color: rgba(184,134,11,0.06); line-height: 1;
  pointer-events: none; user-select: none;
}
.hero-content { position: relative; z-index: 1; max-width: 720px; padding: 80px 24px; }
.hero-tag { font-size: 13px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 20px; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 6vw, 72px); line-height: 1.1;
  color: var(--white); margin-bottom: 22px; font-weight: 700;
}
.hero h1 em { color: var(--gold-light); font-style: italic; }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.75); max-width: 580px; margin-bottom: 36px; line-height: 1.65; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 700; color: var(--gold-light); line-height: 1; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* ── ABOUT STRIP ─────────────────────────────────────────── */
.about-strip { padding: 90px 0; background: var(--off-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.about-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.5vw, 40px); color: var(--dark); margin-bottom: 18px; }
.about-text p { color: var(--text-light); margin-bottom: 16px; font-size: 16px; }
.about-text .btn { margin-top: 12px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.feature-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow); transition: transform 0.22s; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon { font-size: 28px; margin-bottom: 10px; }
.feature-card h3 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.feature-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ── SERVICES PREVIEW ────────────────────────────────────── */
.services-preview { padding: 90px 0; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  display: block; background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 22px;
  transition: all 0.22s; cursor: pointer;
}
.service-card:hover { border-color: var(--gold); background: var(--white); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card:hover .read-more { color: var(--gold); }
.service-icon { font-size: 32px; margin-bottom: 14px; }
.service-card h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.service-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }
.read-more { font-size: 13px; font-weight: 600; color: var(--text-light); transition: color 0.18s; }
.service-card-cta { border-color: rgba(184,134,11,0.3); background: var(--gold-pale); }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials { padding: 90px 0; background: var(--dark2); }
.testimonials .section-tag { background: rgba(184,134,11,0.15); border-color: rgba(184,134,11,0.3); }
.testimonials .section-header h2 { color: var(--white); }
.testimonials .section-header p { color: rgba(255,255,255,0.6); }
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.testimonial-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 36px 32px;
  position: relative;
}
.quote-mark { font-family: 'Playfair Display', serif; font-size: 80px; line-height: 0.5; color: var(--gold); opacity: 0.4; margin-bottom: 20px; display: block; }
.testimonial-card p { color: rgba(255,255,255,0.8); font-size: 15px; line-height: 1.7; margin-bottom: 22px; font-style: italic; }
.testimonial-author strong { display: block; color: var(--white); font-size: 14px; font-weight: 700; }
.testimonial-author span { color: var(--gold-light); font-size: 13px; }
.testimonial-note { margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 12px; color: rgba(255,255,255,0.4); }

/* ── WHY US ──────────────────────────────────────────────── */
.why-us { padding: 90px 0; background: var(--off-white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.why-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.5vw, 40px); color: var(--dark); margin-bottom: 28px; }
.why-list { margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.why-list li { display: flex; gap: 12px; font-size: 15px; color: var(--text); }
.check { flex-shrink: 0; width: 24px; height: 24px; background: var(--gold); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; margin-top: 2px; }
.why-image-block { display: flex; flex-direction: column; gap: 20px; }
.why-image-card { background: var(--dark2); border-radius: var(--radius-lg); padding: 36px; color: var(--white); }
.why-image-card h3 { font-family: 'Playfair Display', serif; font-size: 22px; margin-bottom: 14px; color: var(--gold-light); }
.why-image-card p { font-size: 15px; color: rgba(255,255,255,0.75); margin-bottom: 22px; }
.badge-row { display: flex; flex-wrap: wrap; gap: 8px; }
.badge { background: rgba(184,134,11,0.2); border: 1px solid rgba(184,134,11,0.4); color: var(--gold-light); padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; }

/* ── CTA BANNER ──────────────────────────────────────────── */
.cta-banner { background: var(--gold); padding: 60px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-banner h2 { font-family: 'Playfair Display', serif; font-size: clamp(24px, 3vw, 34px); color: var(--white); margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 16px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero { background: var(--dark2); padding: 70px 0 60px; text-align: center; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(32px, 5vw, 56px); color: var(--white); margin-bottom: 14px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-bottom: 20px; font-size: 13px; color: rgba(255,255,255,0.4); }
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.about-body { padding: 80px 0; }
.about-body-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-body h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 3.5vw, 36px); color: var(--dark); margin-bottom: 20px; }
.about-body p { color: var(--text-light); margin-bottom: 16px; font-size: 16px; }
.team-section { padding: 80px 0; background: var(--off-white); }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 48px; }
.team-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); }
.team-card h3 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--dark); margin-bottom: 4px; }
.team-card .role { font-size: 13px; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.team-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.stats-band { background: var(--dark2); padding: 60px 0; }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.stats-row .stat-num { font-family: 'Playfair Display', serif; font-size: 52px; color: var(--gold-light); font-weight: 700; }
.stats-row .stat-label { font-size: 14px; color: rgba(255,255,255,0.65); margin-top: 6px; }

/* ── SERVICES PAGE ───────────────────────────────────────── */
.services-body { padding: 80px 0; }
.services-nav { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 60px; justify-content: center; }
.services-nav a { padding: 8px 18px; border: 1px solid var(--border); border-radius: 20px; font-size: 13px; font-weight: 600; color: var(--text); transition: all 0.18s; }
.services-nav a:hover, .services-nav a.active { background: var(--gold); color: var(--white); border-color: var(--gold); }
.service-block { display: grid; grid-template-columns: 1fr 2fr; gap: 52px; align-items: start; padding: 60px 0; border-bottom: 1px solid var(--border); }
.service-block:last-child { border-bottom: none; }
.service-block.reverse { grid-template-columns: 2fr 1fr; }
.service-block.reverse .service-detail { order: -1; }
.service-number { font-family: 'Playfair Display', serif; font-size: 80px; color: var(--gold); opacity: 0.15; line-height: 1; margin-bottom: 12px; }
.service-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.service-side h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 3vw, 34px); color: var(--dark); margin-bottom: 14px; }
.service-side p { font-size: 15px; color: var(--text-light); margin-bottom: 20px; }
.service-features { display: flex; flex-direction: column; gap: 10px; }
.service-feature { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--text); }
.service-feature::before { content: '✓'; width: 20px; height: 20px; background: var(--gold-pale); border: 1px solid rgba(184,134,11,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.faq-section { background: var(--off-white); padding: 70px 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.faq-item h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.faq-item p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-body { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 3vw, 34px); color: var(--dark); margin-bottom: 14px; }
.contact-info p { color: var(--text-light); margin-bottom: 28px; font-size: 15px; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-icon { width: 44px; height: 44px; background: var(--gold-pale); border: 1px solid rgba(184,134,11,0.2); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-detail h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.contact-detail p, .contact-detail a { font-size: 14px; color: var(--text-light); }
.contact-detail a:hover { color: var(--gold); }
.contact-form { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; }
.contact-form h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--dark); margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text);
  background: var(--white); outline: none;
  transition: border-color 0.18s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,134,11,0.1); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-success { display: none; background: #f0fdf4; border: 1px solid #86efac; border-radius: var(--radius); padding: 16px; text-align: center; font-size: 14px; color: #16a34a; font-weight: 600; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer { background: var(--dark); padding: 70px 0 0; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 60px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-text strong { color: var(--gold-light); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.55); margin: 14px 0 22px; line-height: 1.65; }
.social-links { display: flex; gap: 12px; }
.social-links a { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.5); transition: color 0.18s; border: 1px solid rgba(255,255,255,0.15); border-radius: 20px; padding: 4px 12px; }
.social-links a:hover { color: var(--gold-light); border-color: var(--gold-light); }
.footer-links h4, .footer-contact h4 { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 18px; }
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.18s; }
.footer-links a:hover { color: var(--white); }
.footer-contact p { font-size: 14px; color: rgba(255,255,255,0.55); margin-bottom: 10px; }
.footer-contact a { color: rgba(255,255,255,0.55); transition: color 0.18s; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); text-align: center; }

/* ── CHATBOT WIDGET ──────────────────────────────────────── */
#chatbot-container { position: fixed; bottom: 28px; right: 28px; z-index: 9999; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
/* ── TABLET ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-features { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: clamp(34px, 5vw, 60px); }
}

/* ── MOBILE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .main-nav { display: none; }
  .header-inner > .btn-primary { display: none; }
  .hamburger { display: flex; }
  .logo-text { font-size: 15px; }

  /* Hero */
  .hero { min-height: auto; }
  .hero-content { padding: 50px 20px 60px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .stat-num { font-size: 32px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  /* Grids */
  .about-grid, .about-body-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-features { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .service-block, .service-block.reverse { grid-template-columns: 1fr; gap: 24px; }
  .service-block.reverse .service-detail { order: unset; }
  .faq-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }

  /* CTA */
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; flex-wrap: wrap; }

  /* Services sticky nav */
  .services-sticky-nav { overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap; }
  .services-nav { flex-wrap: nowrap; justify-content: flex-start; padding-bottom: 4px; }

  /* Sections padding */
  .about-strip, .services-preview, .testimonials, .why-us,
  .about-body, .team-section, .services-body, .faq-section,
  .contact-body { padding: 56px 0; }

  /* Cards */
  .feature-card, .service-card { padding: 20px 16px; }

  /* Contact map */
  .contact-body .contact-grid { gap: 32px; }
}

/* ── SMALL MOBILE ─────────────────────────────────── */
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
  .hero-content { padding: 40px 16px 52px; }
  .page-hero { padding: 50px 0 44px; }
  .about-features { grid-template-columns: 1fr; }
  .btn-lg { padding: 12px 24px; font-size: 15px; }
  .cta-banner { padding: 44px 0; }
  .service-number { font-size: 56px; }
}

/* ── TOUCH & PRINT IMPROVEMENTS ─────────────────────── */
button, a { -webkit-tap-highlight-color: transparent; }
* { -webkit-overflow-scrolling: touch; }

@media print {
  .site-header, .cta-banner, #chatbot-container, .hero-ctas { display: none; }
  body { font-size: 12px; }
}
