:root {
  --bg: #1C1C1C;
  --surface: #111111;
  --surface-2: #1a1a1a;
  --surface-3: #0e0e0e;
  --gold: #C89B3C;
  --gold-hover: #C89B3C;
  --link-hover: #C89B3C;
  --text: #F8F9FA;
  --secondary-text: #F8F9FA;
  --muted: #D8B65A;
  --line: #D8B65A;
  --success: #C9A227;
  --error: #D8B65A;
  --shadow: 0 24px 70px rgba(200, 155, 60, 0.2);
  --radius: 16px;
  --button-radius: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--bg);
  background: var(--gold);
  border-radius: var(--button-radius);
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(28, 28, 28);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(216, 182, 90, 0.35);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--text);
  white-space: nowrap;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--bg);
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(201, 162, 39, 0.28);
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--secondary-text);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--gold-hover);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--button-radius);
  background: var(--surface);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--gold);
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-pad {
  padding: 80px 0;
}

.compact {
  padding: 76px 0;
}

.muted {
  background: var(--surface-2);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
 background:
    linear-gradient(
        135deg,
        rgba(17, 17, 17, 1) 0%,
        rgba(28, 28, 28, 0.95) 55%,
        rgba(200, 155, 60, 0.10) 100%
    ),
    radial-gradient(
        circle at top right,
        rgba(200, 155, 60, 0.22),
        transparent 35%
    ),
    radial-gradient(
        circle at bottom left,
        rgba(60, 60, 60, 0.55),
        transparent 40%
    );
}

.hero-grid,
.two-column {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  display: inline-block;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(201, 162, 39, 0.12);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
  color: var(--text);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: 0;
  color: var(--text);
}

h3 {
  color: var(--text);
  line-height: 1.2;
}

.hero-copy p {
  max-width: 660px;
  color: var(--secondary-text);
  font-size: 19px;
  font-weight: 500;
}

.hero-actions,
.trust-row,
.stat-strip,
.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: var(--button-radius);
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(7, 26, 46, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(7, 26, 46, 0.5);
}

.btn-primary,
.btn-light {
  color: var(--bg);
  background: var(--gold);
}

.btn-primary:hover,
.btn-light:hover {
  background: var(--gold-hover);
  color: #111111 !important;
}

.btn-secondary {
  color: var(--gold);
  background: transparent;
  border: 1px solid var(--gold);
  box-shadow: none;
}

.btn-secondary:hover {
  color: var(--gold) !important;
  background: var(--bg);
}

.btn-small {
  min-height: 44px;
  padding: 0 16px;
  font-size: 13px;
}

.cta-note {
  margin: 16px 0 0;
  font-size: 14px !important;
}

.trust-row {
  margin-top: 28px;
}

.trust-row span,
.specialist-grid span,
.feature-list span {
  padding: 10px 13px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 14px;
}

.pill-icon {
  margin-right: 8px;
  color: var(--gold);
  font-size: 15px;
  line-height: 1;
}

.stat-strip > div {
    flex: 1;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-strip,
.metric-row {
  margin-top: 26px;
}

.stat-strip div,
.metric-row div {
  min-width: 120px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-strip strong,
.metric-row strong {
  display: block;
  color: var(--gold);
  font-size: 30px;
  line-height: 1;
}

.stat-strip span,
.metric-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(216, 182, 90, 0.35);
  border-radius: 24px;
}

.hero-visual img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.floating-card {
  position: absolute;
  width: min(250px, 66%);
  padding: 18px;
  background: var(--bg);
  border: 1px solid rgba(216, 182, 90, 0.4);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.card-icon {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  place-items: center;
  color: var(--bg);
  background: var(--gold);
  border-radius: 50%;
  font-size: 17px;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(201, 162, 39, 0.2);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card span {
  color: var(--secondary-text);
  font-size: 13px;
}

.card-top {
  top: 28px;
  left: -24px;
}

.card-bottom {
  right: -18px;
  bottom: 30px;
}

.section-heading {
  max-width: 790px;
}

.centered {
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading p,
.large-text {
  color: var(--secondary-text);
  font-size: 19px;
  font-weight: 500;
}

.about-media {
  display: grid;
  gap: 22px;
}

.about-media img,
.package-visual img,
.proof-panel img,
.review-image img {
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(216, 182, 90, 0.35);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-media img {
  aspect-ratio: 16 / 9;
}

.industry-grid,
.service-grid,
.why-grid,
.review-layout {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.info-card,
.service-card,
.mini-card,
.review-widget,
.testimonial,
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-card {
  position: relative;
  padding: 24px;
}

.info-card p,
.info-card span,
.service-card li,
.step p,
.testimonial p {
  color: var(--secondary-text);
}

.info-card b {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
}

.service-card {
  position: relative;
  padding: 28px;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(135deg, rgba(216, 182, 90, 0.72), rgba(16, 42, 67, 0.95)) border-box;
  border: 1px solid transparent;
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding: 8px 10px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
}

.specialists {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
     linear-gradient(
        135deg,
        rgba(17, 17, 17, 1) 0%,
        rgba(28, 28, 28, 0.95) 55%,
        rgba(200, 155, 60, 0.10) 100%
    ),
    url("https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&w=1800&q=80") center / cover;
  color: var(--text);
}

.specialists::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 12%, rgba(201, 162, 39, 0.18), transparent 34%);
}

.specialists h2,
.specialists .eyebrow {
  color: var(--text);
}

.specialist-grid,
.feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.package {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
  padding: 44px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.package p {
  color: var(--secondary-text);
}

.package-visual {
  display: grid;
  gap: 18px;
}

.package-visual img {
  aspect-ratio: 16 / 10;
}

.package .card-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  font-size: 22px;
}

.feature-list {
  justify-content: flex-start;
}

.mini-card {
  position: relative;
  padding: 22px;
  color: var(--text);
  font-weight: 900;
}

.mini-card.wide {
  grid-column: span 3;
}

.proof-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
  padding: 24px;
  background: linear-gradient(135deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.proof-panel img {
  aspect-ratio: 4 / 3;
}

.proof-panel h3 {
  max-width: 720px;
  font-size: clamp(24px, 3vw, 36px);
}

.proof-panel p {
  color: var(--secondary-text);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.step {
  position: relative;
  padding: 24px;
}

.step span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--bg);
  background: var(--gold);
  border-radius: 50%;
  font-weight: 900;
}

.step .card-icon {
  width: 36px;
  height: 36px;
  font-size: 18px;
}

.step-number{
    width:50px;
    height:50px;
    border-radius:50%;
    background: var(--gold);
    color: var(--bg);
}

.review-widget,
.testimonial {
  position: relative;
  min-height: 180px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review-image {
  min-height: 180px;
  border-radius: var(--radius);
}

.review-image img {
  height: 100%;
  min-height: 180px;
}

.review-widget {
  color: var(--gold);
  background: var(--surface-2);
  border-style: dashed;
  font-weight: 900;
  text-align: center;
}

.review-widget .card-icon {
  align-self: center;
}

.testimonial .card-icon {
  align-self: flex-start;
}

.testimonial {
  background: linear-gradient(135deg, var(--surface), var(--surface-2));
  color: var(--text);
}

.testimonial p {
  color: var(--secondary-text);
  font-size: 18px;
}

.logo-row {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.logo-row span {
  min-height: 64px;
  display: grid;
  place-items: center;
  padding: 12px;
  color: var(--secondary-text);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
  text-align: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo .brand {
    margin-bottom: 1rem;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}

details {
  padding: 20px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 900;
}

summary::marker {
  color: var(--gold);
}

details p {
  margin: 12px 0 0;
  color: var(--secondary-text);
}

.final-cta {
  background: linear-gradient(135deg, #102A43, #071A2E 54%, #102A43);
  color: var(--text);
}

.final-panel {
  max-width: 920px;
  text-align: center;
}

.final-panel h2 {
  color: var(--text);
}

.final-panel p {
  color: var(--secondary-text);
  font-size: 20px;
}

.final-panel span {
  display: block;
  margin-top: 18px;
  color: var(--muted);
}

.footer {
  padding: 60px 0;
  color: var(--secondary-text);
  background: var(--surface-2);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}

.footer h2 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 16px;
}

.footer a {
  display: block;
  margin: 8px 0;
  color: var(--secondary-text);
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--link-hover);
}

.footer-brand {
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1040px) {
  .nav .btn {
    display: none;
  }

  .nav-links {
    gap: 12px;
  }

  .timeline,
  .industry-grid,
  .service-grid,
  .why-grid,
  .review-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mini-card.wide {
    grid-column: span 2;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    padding: 18px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-grid,
  .two-column,
  .package,
  .proof-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-pad {
    padding: 72px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual img {
    aspect-ratio: 16 / 11;
  }

  .card-top {
    left: 10px;
  }

  .card-bottom {
    right: 10px;
  }

  .logo-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .container,
  .nav {
    width: min(100% - 24px, 1180px);
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .industry-grid,
  .service-grid,
  .why-grid,
  .review-layout,
  .timeline,
  .logo-row {
    grid-template-columns: 1fr;
  }

  .mini-card.wide {
    grid-column: span 1;
  }

  .package {
    padding: 26px;
  }

  .floating-card {
    position: static;
    width: 100%;
    margin-top: 12px;
  }
}

@media (max-width: 768px) {
    .stat-strip {
        flex-direction: column;
    }
}

.brand-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

/* ==========================
   Quote Form
========================== */

.quote-form .card{
    background:var(--bg);
    border-radius:24px;
    padding:45px;
    box-shadow:0 20px 60px var(--gold);
    border:1px solid var(--gold);
}

.quotation-success{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:24px;
    padding:18px 20px;
    border:2px solid #15803d;
    border-radius:12px;
    background:#dcfce7;
    color:#14532d;
    box-shadow:0 8px 24px rgba(21, 128, 61, 0.18);
}

.quotation-success-icon{
    display:flex;
    flex:0 0 44px;
    width:44px;
    height:44px;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#15803d;
    color:#fff;
    font-size:26px;
    font-weight:800;
}

.quotation-success strong{
    display:block;
    margin-bottom:4px;
    font-size:18px;
}

.quotation-success p{
    margin:0;
    color:#14532d;
    font-size:16px;
    font-weight:600;
    line-height:1.5;
}

.quote-form h2{
    color:#E5E5E5;
    font-size:2rem;
    margin-bottom:30px;
    font-weight:700;
}

.quote-form form{
    display:flex;
    flex-direction:column;
    gap:22px;
}

/* Two Columns */

.quote-form .row{
    display:flex;
    gap:20px;
}

.quote-form .col{
    flex:1;
    display:flex;
    flex-direction:column;
}

/* Labels */

.quote-form label{
    font-size:.92rem;
    font-weight:600;
    color:#E5E5E5;
    margin-bottom:8px;
}

/* Inputs */

.quote-form input,
.quote-form select,
.quote-form textarea{

    width:100%;
    padding:15px 18px;

    border:1px solid #d8e0ea;
    border-radius:14px;

    background:#f8fafc;

    color:#102A43;
    font-size:15px;

    transition:.25s ease;

    font-family:inherit;

    outline:none;

    appearance:none;
}

/* Placeholder */

.quote-form input::placeholder,
.quote-form textarea::placeholder{
    color:#93a4b5;
}

/* Focus */

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus{

    background:#fff;

    border-color:#C9A227;

    box-shadow:
        0 0 0 4px rgba(201,162,39,.15);

}

/* Textarea */

.quote-form textarea{

    resize:vertical;
    min-height:170px;
}

/* Select Arrow */

.quote-form select{

    cursor:pointer;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23071A2E' viewBox='0 0 20 20'%3E%3Cpath d='M5.5 7.5L10 12l4.5-4.5' stroke='%23071A2E' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");

    background-repeat:no-repeat;
    background-position:right 18px center;
    background-size:18px;

    padding-right:50px;
}

/* Button */

.quote-form button{

    margin-top:10px;

    background:linear-gradient(135deg,#C9A227,#b78514);

    color:#fff;

    border:none;

    border-radius:14px;

    padding:18px;

    font-size:16px;
    font-weight:700;

    cursor:pointer;

    transition:.3s;
}

.quote-form button:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(183,133,20,.35);

}

/* Mobile */

@media(max-width:768px){

    .quote-form .row{
        flex-direction:column;
    }

    .quote-form .card{
        padding:30px 22px;
    }

}

/* ===================================
   TEAM SHOWCASE
=================================== */

.team-showcase{

    background:rgb(17, 17, 17);
    color:#fff;
    overflow:hidden;
}

.team-showcase .section-heading{

    max-width:760px;
    margin:0 auto 70px;
}

.team-showcase .eyebrow{

    color:#C9A227;
}

.team-showcase h2{

    color:#fff;
    margin-bottom:18px;
}

.team-showcase p{

    color:rgba(255,255,255,.75);
}

/* GRID */

.team-grid{

    display:grid;

    grid-template-columns:repeat(4, minmax(0, 1fr));

    gap:22px;
}

.team-card{

    background:var(--bg);

    display:flex;

    flex-direction:column;

    height:100%;

    border-radius:20px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:.35s;
    border: 1px solid var(--gold);
}

.team-card img{

    width:100%;
    height:340px;

    object-fit:cover;

    display:block;

    transition:.4s;
    object-position:center 15%;
}

.team-info{

    padding:25px;

    flex:1;
}

.team-info h3{

    margin:0;

    font-size:1.3rem;

    color:#E5E5E5;

    font-weight:700;
}

.team-info span{

    display:inline-block;

    margin-top:8px;
    margin-bottom:15px;

    color:#C9A227;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:1px;

    font-size:.82rem;
}

.team-info p{

    color:#6c7a89;

    line-height:1.7;

    margin:0;
}

.team-card:hover{

    transform:translateY(-8px);

    box-shadow:0 30px 60px rgba(7,26,46,.15);
}

.team-card:hover img{

    transform:scale(1.05);
}

.team-card:hover::after{

    background:linear-gradient(
        transparent,
        rgba(201,162,39,.10),
        rgba(7,26,46,.30)
    );
}

/* RESPONSIVE */

@media (max-width:992px){

    .team-grid{

        grid-template-columns:1fr 1fr;
    }

    .team-card.large{

        grid-row:auto;
        min-height:420px;
    }

}

@media (max-width:768px){

    .team-grid{

        grid-template-columns:1fr;
    }

    .team-card,
    .team-card.large{

        min-height:260px;
    }

}

.phone-group{
    display:flex;
    gap:10px;
    align-items:center;
}

.country-code{
    width:140px !important;
    min-width:140px;
}

.phone-input{
    flex:1;
}

.phone-group select,
.phone-group input{
    padding:12px 14px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:15px;
    width:100%;
    box-sizing:border-box;
}

