/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--charcoal); background: #fff; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== VARIABLES ===== */
:root {
  --navy:   #0B1F3A;
  --steel:  #1F4E79;
  --gold:   #C9A227;
  --gold-light: #E8C255;
  --white:  #FFFFFF;
  --charcoal: #2B2B2B;
  --gray:   #6B7280;
  --light-bg: #F4F6F9;
  --border: #DDE3EC;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --shadow: 0 4px 24px rgba(11,31,58,.08);
  --shadow-lg: 0 12px 48px rgba(11,31,58,.14);
  --radius: 10px;
  --radius-lg: 18px;
}

/* ===== CONTAINER ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

/* ===== TYPOGRAPHY ===== */
.section-label { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-title { font-family: var(--font-heading); font-size: clamp(1.75rem, 3.2vw, 2.6rem); font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.section-title.light { color: #fff; }
.section-sub { font-size: 1rem; color: var(--gray); max-width: 620px; line-height: 1.75; }
.section-head { margin-bottom: 52px; }
.section-head.centered { text-align: center; }
.section-head.centered .section-sub { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 9px; padding: 14px 30px; border-radius: 6px; font-weight: 600; font-size: .92rem; transition: all .25s; cursor: pointer; border: 2px solid transparent; font-family: var(--font-body); letter-spacing: .02em; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: .85rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,162,39,.35); }

.btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: var(--steel); border-color: var(--steel); transform: translateY(-2px); }

.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: #fff; }

/* ===== FADE-IN ===== */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== HEADER ===== */
.header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.97); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); transition: box-shadow .3s; }
.header.scrolled { box-shadow: 0 2px 20px rgba(11,31,58,.1); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 86px; }

.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-icon { width: 62px; height: 62px; flex-shrink: 0; display: block; border-radius: 10px; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; justify-content: center; gap: 4px; }
.logo-name { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 700; color: var(--navy); letter-spacing: .01em; line-height: 1; }
.logo-sub { font-size: .68rem; font-weight: 700; color: var(--gold); letter-spacing: .16em; text-transform: uppercase; line-height: 1; }
.footer-logo-link { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-img { height: 36px; width: 36px; object-fit: contain; border-radius: 6px; }

nav { display: flex; gap: 2px; }
nav a { padding: 8px 16px; border-radius: 6px; font-size: .88rem; font-weight: 500; color: var(--charcoal); transition: all .2s; }
nav a:hover, nav a.active { color: var(--navy); background: var(--light-bg); font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone { font-size: .85rem; font-weight: 600; color: var(--steel); display: flex; align-items: center; gap: 6px; }
.header-phone:hover { color: var(--navy); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE NAV ===== */
.mobile-nav { display: none; flex-direction: column; gap: 6px; padding: 16px; background: white; border-bottom: 1px solid var(--border); }
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 13px 16px; border-radius: 8px; font-weight: 600; color: var(--charcoal); background: var(--light-bg); text-align: center; transition: all .2s; }
.mobile-nav a:hover { background: var(--navy); color: white; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center;
  background: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1600&q=85') center/cover no-repeat; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(11,31,58,.93) 0%, rgba(11,31,58,.65) 55%, rgba(11,31,58,.2) 100%); }
.hero .container { position: relative; z-index: 1; padding-top: 60px; padding-bottom: 60px; }
.hero-content { max-width: 640px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.hero-eyebrow-line { width: 32px; height: 2px; background: var(--gold); }
.hero-title { font-family: var(--font-heading); font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 700; color: white; line-height: 1.1; margin-bottom: 22px; }
.hero-title span { color: var(--gold); }
.hero-desc { font-size: 1rem; color: rgba(255,255,255,.78); line-height: 1.8; margin-bottom: 36px; max-width: 560px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: rgba(255,255,255,.65); font-weight: 500; }
.hero-trust-item i { color: var(--gold); }

/* ===== WHO WE SERVE ===== */
.who-we-serve { padding: 96px 0; background: white; }
.serve-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.serve-content .section-sub { margin-bottom: 28px; }
.serve-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.serve-list-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px 20px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--light-bg); transition: all .25s; }
.serve-list-item:hover { border-color: var(--gold); background: white; box-shadow: var(--shadow); }
.serve-list-item i { color: var(--gold); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.serve-list-item span { font-size: .92rem; color: var(--charcoal); font-weight: 500; }
.serve-image { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.serve-image img { width: 100%; height: 520px; object-fit: cover; }
.serve-image-badge { position: absolute; bottom: 24px; left: 24px; background: var(--navy); color: white; padding: 14px 20px; border-radius: var(--radius); border-left: 3px solid var(--gold); }
.serve-image-badge strong { display: block; font-family: var(--font-heading); font-size: 1.1rem; color: white; }
.serve-image-badge span { font-size: .78rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .08em; }

/* ===== OUR ROLE ===== */
.our-role { padding: 96px 0; background: var(--navy); }
.role-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.role-image { border-radius: var(--radius-lg); overflow: hidden; }
.role-image img { width: 100%; height: 460px; object-fit: cover; }
.role-content .section-sub { color: rgba(255,255,255,.7); margin-bottom: 32px; }
.role-contrast { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 32px; }
.role-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 18px 20px; }
.role-card.highlight { background: rgba(201,162,39,.12); border-color: rgba(201,162,39,.35); }
.role-card .who { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin-bottom: 5px; }
.role-card p { font-size: .88rem; color: rgba(255,255,255,.7); line-height: 1.55; }
.role-card.highlight p { color: rgba(255,255,255,.85); }
.role-card.highlight .who { color: var(--gold-light); }

/* ===== SERVICES ===== */
.services { padding: 96px 0; background: var(--light-bg); }
.services-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card { background: white; border-radius: var(--radius-lg); padding: 36px 30px; border: 1px solid var(--border); transition: all .3s; display: flex; flex-direction: column; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.svc-icon { width: 54px; height: 54px; border-radius: 12px; background: var(--navy); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--gold); font-size: 1.2rem; }
.svc-card h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.svc-card p { font-size: .88rem; color: var(--gray); line-height: 1.65; margin-bottom: 20px; flex: 1; }
.svc-list { display: flex; flex-direction: column; gap: 8px; }
.svc-list li { display: flex; align-items: center; gap: 9px; font-size: .83rem; color: var(--charcoal); }
.svc-list li i { color: var(--gold); font-size: .8rem; flex-shrink: 0; }

/* ===== PROJECT TYPES ===== */
.project-types { padding: 96px 0; background: white; }
.types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 0; }
.type-card { background: var(--light-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; display: flex; align-items: center; gap: 16px; transition: all .25s; }
.type-card:hover { border-color: var(--gold); background: white; box-shadow: var(--shadow); transform: translateY(-3px); }
.type-icon { width: 44px; height: 44px; border-radius: 8px; background: var(--navy); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.type-card h3 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.type-card p { font-size: .8rem; color: var(--gray); }

/* ===== RECOVERY ===== */
.recovery { padding: 96px 0; background: var(--steel); }
.recovery .section-label { color: var(--gold); }
.recovery .section-title { color: white; }
.recovery .section-sub { color: rgba(255,255,255,.75); }
.recovery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.recovery-content { }
.recovery-list { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.recovery-item { display: flex; align-items: flex-start; gap: 14px; }
.recovery-item i { color: var(--gold); font-size: 1rem; margin-top: 3px; flex-shrink: 0; }
.recovery-item div h4 { font-size: .92rem; font-weight: 700; color: white; margin-bottom: 3px; }
.recovery-item div p { font-size: .85rem; color: rgba(255,255,255,.65); }
.recovery-image { border-radius: var(--radius-lg); overflow: hidden; }
.recovery-image img { width: 100%; height: 420px; object-fit: cover; }

/* ===== WHY HIRE US ===== */
.why-us { padding: 96px 0; background: white; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.why-image { border-radius: var(--radius-lg); overflow: hidden; }
.why-image img { width: 100%; height: 480px; object-fit: cover; }
.why-points { display: flex; flex-direction: column; gap: 22px; margin-top: 28px; }
.why-point { display: flex; align-items: flex-start; gap: 16px; padding-bottom: 22px; border-bottom: 1px solid var(--border); }
.why-point:last-child { border-bottom: none; padding-bottom: 0; }
.why-point-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--light-bg); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--navy); flex-shrink: 0; font-size: 1rem; }
.why-point h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.why-point p { font-size: .87rem; color: var(--gray); line-height: 1.6; }

/* ===== PROFESSIONAL BG ===== */
.background { padding: 96px 0; background: var(--light-bg); }
.bg-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.bg-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 22px; text-align: center; transition: all .25s; }
.bg-card:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-4px); }
.bg-card i { font-size: 1.6rem; color: var(--navy); margin-bottom: 14px; display: block; }
.bg-card p { font-size: .83rem; color: var(--charcoal); font-weight: 500; line-height: 1.5; }

/* ===== FINAL CTA ===== */
.final-cta { padding: 96px 0; background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%); text-align: center; }
.final-cta .section-title { color: white; max-width: 720px; margin: 0 auto 16px; }
.final-cta .section-sub { color: rgba(255,255,255,.7); max-width: 600px; margin: 0 auto 36px; }
.final-cta-btns { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-contact { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; margin-top: 32px; }
.cta-contact-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.75); font-size: .88rem; }
.cta-contact-item i { color: var(--gold); }
.cta-contact-item a { color: rgba(255,255,255,.9); font-weight: 600; }
.cta-contact-item a:hover { color: var(--gold); }

/* ===== FOOTER ===== */
.footer { background: #070F1C; color: rgba(255,255,255,.6); padding: 64px 0 0; }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-name { color: white; }
.footer-desc { font-size: .86rem; line-height: 1.7; color: rgba(255,255,255,.45); margin-bottom: 20px; }
.footer-contact { display: flex; flex-direction: column; gap: 9px; }
.footer-contact a, .footer-contact span { font-size: .84rem; color: rgba(255,255,255,.45); display: flex; align-items: center; gap: 8px; transition: color .2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-contact i { color: var(--gold); width: 14px; text-align: center; }
.footer-col h4 { font-size: .78rem; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: .86rem; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; font-size: .8rem; color: rgba(255,255,255,.25); flex-wrap: wrap; gap: 8px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.25); transition: color .2s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ===== FLOATING CTA ===== */
.float-cta { position: fixed; bottom: 28px; right: 28px; z-index: 99; display: flex; align-items: center; gap: 8px; background: var(--gold); color: var(--navy); padding: 14px 22px; border-radius: 50px; font-weight: 700; font-size: .86rem; box-shadow: 0 4px 20px rgba(201,162,39,.4); transition: all .3s; }
.float-cta:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(201,162,39,.5); background: var(--gold-light); }

/* ===== TOAST ===== */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(100px); background: var(--navy); color: white; display: flex; align-items: center; gap: 10px; padding: 14px 24px; border-radius: 50px; font-size: .88rem; font-weight: 600; z-index: 200; transition: transform .35s, opacity .35s; opacity: 0; }
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .serve-grid, .role-grid, .recovery-grid, .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .serve-image img, .role-image img, .recovery-image img, .why-image img { height: 320px; }
  .services-tabs { grid-template-columns: 1fr 1fr; }
  .bg-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .types-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .header-actions .btn-navy { display: none; }
  .header-phone { display: none; }
  .hero { min-height: 92vh; }
  .services-tabs { grid-template-columns: 1fr; }
  .role-contrast { grid-template-columns: 1fr; }
  .types-grid { grid-template-columns: 1fr; }
  .bg-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .float-cta span { display: none; }
  .float-cta { padding: 14px; border-radius: 50%; }
  .hero-trust { gap: 16px; }
  .cta-contact { flex-direction: column; gap: 14px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .hero-cta { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .bg-grid { grid-template-columns: 1fr; }
  .final-cta-btns { flex-direction: column; }
}
