/* =============================
   YINHLA CONSULTING - STYLES
   ============================= */

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

:root {
  --gold: #C9A227;
  --gold-light: #e8c45a;
  --dark: #111827;
  --dark-2: #1f2937;
  --mid: #374151;
  --text: #4b5563;
  --text-light: #9ca3af;
  --bg-light: #f9f7f2;
  --white: #ffffff;
  --border: #e5e7eb;
  --nav-h: 76px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  color: var(--dark);
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

.gold { color: var(--gold); }
.center { text-align: center; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }

.section { padding: 5rem 0; }
.bg-light { background: var(--bg-light); }

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text);
  max-width: 650px;
  margin: 1rem auto 3rem;
}

/* =============================
   BUTTONS
   ============================= */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--dark);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--dark);
  transform: translateY(-1px);
}

.btn-primary.small { padding: 0.6rem 1.4rem; font-size: 0.875rem; }
.btn-primary.full-width { width: 100%; justify-content: center; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); color: var(--white); border-color: #fff; }

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--dark);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  border: 2px solid var(--dark);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-outline-dark:hover { background: var(--dark); color: #fff; }

/* =============================
   NAVBAR
   ============================= */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--dark);
  z-index: 1000;
  border-bottom: 2px solid rgba(201, 162, 39, 0.2);
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  border-bottom-color: rgba(201,162,39,0.4);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
}

.logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-links .nav-cta {
  background: var(--gold);
  color: var(--dark) !important;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
}
.nav-links .nav-cta:hover,
.nav-links .nav-cta.active {
  background: var(--gold-light);
  color: var(--dark) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* =============================
   HERO (HOME)
   ============================= */

.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 60%, #2a1f05 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 3rem) 1.5rem 3rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,162,39,0.08) 0%, transparent 60%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(201,162,39,0.015) 40px,
      rgba(201,162,39,0.015) 41px
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  text-align: center;
}

.hero-content h1 {
  color: var(--white);
  margin: 1rem 0;
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin: 0 auto 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.3);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.4rem 1rem;
  border-radius: 100px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cards {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 1rem;
  margin-top: 4rem;
  flex-wrap: wrap;
  justify-content: center;
}

.h-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 12px;
  padding: 1.25rem 1.75rem;
  backdrop-filter: blur(10px);
  color: var(--white);
}

.h-card div { display: flex; flex-direction: column; line-height: 1.3; }
.h-card strong { font-size: 1.1rem; font-weight: 700; color: var(--white); }
.h-card span { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

/* =============================
   INTRO STRIP
   ============================= */

.intro-strip {
  background: var(--gold);
  padding: 1.5rem 0;
}

.intro-strip p {
  text-align: center;
  font-size: 1.05rem;
  color: var(--dark);
  margin: 0;
}

/* =============================
   SERVICES GRID
   ============================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s, transform 0.2s;
}

.service-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(201,162,39,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.service-card h3 { margin-bottom: 0.75rem; font-size: 1.1rem; }
.service-card p { font-size: 0.9rem; color: var(--text); margin-bottom: 1rem; }

.link-arrow {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  transition: gap 0.2s;
}
.link-arrow:hover { gap: 0.6rem; color: var(--gold-light); }

/* =============================
   WHY STRIP
   ============================= */

.why-strip {
  background: var(--dark);
  padding: 4rem 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: rgba(255,255,255,0.85);
}

.why-item i {
  font-size: 1.5rem;
  color: var(--gold);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.why-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.why-item p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* =============================
   CTA SECTION
   ============================= */

.cta-section {
  background: linear-gradient(135deg, var(--gold) 0%, #a37d10 100%);
  padding: 5rem 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.cta-section p {
  color: rgba(0,0,0,0.7);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-actions .btn-primary {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
.cta-actions .btn-primary:hover { background: #000; border-color: #000; }

/* =============================
   FOOTER
   ============================= */

.footer {
  background: var(--dark);
  padding: 4rem 0 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  margin-top: 1rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  max-width: 260px;
  line-height: 1.6;
}

.footer-links-col { display: flex; flex-direction: column; gap: 0.5rem; }

.footer-links-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer-links-col a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-links-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  gap: 1rem;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}

/* =============================
   PAGE HEADER (inner pages)
   ============================= */

.page-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: calc(var(--nav-h) + 3.5rem) 1.5rem 3.5rem;
  position: relative;
  overflow: hidden;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,162,39,0.07) 0%, transparent 60%);
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
}
.breadcrumb a { color: var(--gold); }

.page-header h1 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.page-header p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0;
}

/* =============================
   ABOUT PAGE
   ============================= */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual-box {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  border-radius: 16px;
  padding: 3rem;
  border: 1px solid rgba(201,162,39,0.2);
}

.visual-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.visual-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.visual-stat:last-child { border-bottom: none; padding-bottom: 0; }

.big-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.visual-stat span {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}

.value-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,162,39,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.value-card h3 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.value-card p { font-size: 0.9rem; margin: 0; }

.accreditation-box {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 3rem;
  margin-top: 2rem;
}

.accreditation-icon { flex-shrink: 0; }

.accreditation-content h3 { margin-bottom: 0.5rem; }
.rsp-number {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}
.rsp-number strong { font-size: 1.1rem; }

/* =============================
   SERVICES PAGE
   ============================= */

.service-detail-card {
  display: flex;
  gap: 2.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  transition: box-shadow 0.3s;
}
.service-detail-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.07); }

.service-detail-icon {
  width: 64px;
  height: 64px;
  background: rgba(201,162,39,0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  flex-shrink: 0;
}

.service-detail-content h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.service-detail-content h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin: 1.25rem 0 0.5rem;
}

.service-detail-content ul {
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
}

.service-detail-content ul li {
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.turnaround-banner {
  background: var(--dark);
  padding: 4rem 0;
}

.turnaround-banner .container {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.turnaround-banner h2 { color: var(--white); }
.turnaround-banner p { color: rgba(255,255,255,0.7); margin: 0.5rem 0 0; max-width: 550px; }
.turnaround-banner .btn-primary { margin-left: auto; flex-shrink: 0; }

/* =============================
   HOW IT WORKS
   ============================= */

.steps-container { max-width: 780px; margin: 0 auto; }

.step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  flex-shrink: 0;
  min-width: 3.5rem;
}

.step-content { flex: 1; padding-bottom: 0.5rem; }
.step-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,162,39,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.step-content h3 { margin-bottom: 0.75rem; }
.step-content ul { padding-left: 1.2rem; }
.step-content ul li { font-size: 0.9rem; margin-bottom: 0.3rem; }

.step-contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 1rem;
}
.step-contact a {
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.step-highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(201,162,39,0.08);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.step-divider {
  text-align: center;
  padding: 0.5rem 0;
  font-size: 1.2rem;
  opacity: 0.5;
  margin-left: 1.75rem;
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.doc-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.doc-item i { font-size: 1.5rem; }
.doc-item h4 { font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--dark); }
.doc-item p { font-size: 0.875rem; margin: 0; }

/* =============================
   FAQ PAGE
   ============================= */

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.faq-col { }
.faq-col h2 { margin-bottom: 2rem; }

.faq-list { display: flex; flex-direction: column; gap: 0.5rem; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 1.1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--bg-light); }
.faq-question i { flex-shrink: 0; color: var(--gold); transition: transform 0.3s; font-size: 0.875rem; }
.faq-question.open i { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 0 1.25rem 1.25rem;
  background: var(--white);
  font-size: 0.9rem;
  color: var(--text);
}
.faq-answer.open { display: block; }
.faq-answer a { font-weight: 500; }

.faq-contact-strip {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.faq-contact-strip h3 { margin-bottom: 0.25rem; font-size: 1.2rem; }
.faq-contact-strip p { margin: 0; font-size: 0.9rem; }
.faq-contact-buttons { display: flex; gap: 1rem; margin-left: auto; flex-wrap: wrap; }

/* =============================
   CONTACT PAGE
   ============================= */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-panel p.section-label { margin-bottom: 0.5rem; }
.contact-info-panel h2 { margin-bottom: 1rem; }
.contact-info-panel > p { font-size: 0.95rem; margin-bottom: 2rem; }

.contact-cards { display: flex; flex-direction: column; gap: 1rem; }

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.cc-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,162,39,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}

.contact-card a {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gold);
}

.contact-card p, .contact-card span {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0.15rem 0 0;
}

.contact-card strong.gold { font-size: 1rem; display: block; margin-bottom: 0.1rem; }

.accreditation-strip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  background: rgba(201,162,39,0.08);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
}

.contact-form-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
}

.contact-form-panel h3 { margin-bottom: 0.4rem; }
.contact-form-panel > p { font-size: 0.9rem; color: var(--text); margin-bottom: 2rem; }

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.1);
}

.form-group textarea { resize: vertical; }

.form-success {
  display: none;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  color: #15803d;
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  display: none;
  align-items: center;
  gap: 0.5rem;
}
.form-success.show { display: flex; }

.quick-contact-strip {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  text-align: center;
}

.quick-contact-strip h3 { margin-bottom: 1.5rem; }

.quick-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.quick-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  background: var(--white);
  border: 2px solid var(--border);
  color: var(--dark);
  transition: all 0.2s;
}
.quick-btn:hover { border-color: var(--gold); color: var(--gold); }
.quick-btn.whatsapp { background: #25D366; border-color: #25D366; color: #fff; }
.quick-btn.whatsapp:hover { background: #1fb855; border-color: #1fb855; color: #fff; }

/* =============================
   RESPONSIVE
   ============================= */

@media (max-width: 900px) {
  .nav-links { display: none; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--dark);
    padding: 1.5rem;
    gap: 0.25rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 999;
  }

  .nav-links.open a { display: block; padding: 0.75rem 1rem; }

  .hamburger { display: flex; }

  .two-col,
  .faq-layout,
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .accreditation-box { flex-direction: column; gap: 1.5rem; }

  .service-detail-card { flex-direction: column; gap: 1.5rem; }

  .turnaround-banner .container { flex-direction: column; }
  .turnaround-banner .btn-primary { margin-left: 0; }

  .faq-contact-strip { flex-direction: column; gap: 1rem; }
  .faq-contact-buttons { margin-left: 0; }

  .contact-form .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 3.5rem 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-cards { flex-direction: column; align-items: stretch; }
  .h-card { justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
}
