:root {
  --navy: #061a33;
  --blue: #0d3767;
  --blue2: #15579a;
  --gold: #d4a84f;
  --gold2: #b9862d;
  --white: #fff;
  --text: #172033;
  --muted: #64748b;
  --line: #e5edf6;
  --soft: #f5f8fc;
  --shadow: 0 18px 50px rgba(6, 26, 51, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'DM Sans', Arial, sans-serif; color: var(--text); background: #fff; line-height: 1.65; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin: auto; }

.topbar { background: linear-gradient(90deg,#04152b,#0b315f); color: #eaf2fb; font-size: 13px; border-bottom: 1px solid rgba(212,168,79,.22); }
.topbar-inner { display: flex; justify-content: space-between; gap: 20px; padding: 10px 0; }
.topbar a { margin-left: 22px; transition: .25s; }
.topbar a:hover { color: #fff; }
.topbar i { color: var(--gold); margin-right: 6px; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.88); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(6,26,51,.08); transition: .3s; }
.site-header:before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: linear-gradient(90deg,var(--gold),var(--blue2),var(--gold2)); }
.site-header.scrolled { box-shadow: 0 14px 38px rgba(6,26,51,.12); background: rgba(255,255,255,.96); }
.nav-wrap { height: 86px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark { width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center; background: linear-gradient(135deg,#f3d78a,var(--gold2)); color: var(--navy); font-family: 'Playfair Display', serif; font-size: 31px; font-weight: 800; box-shadow: 0 12px 24px rgba(185,134,45,.28); border: 1px solid rgba(255,255,255,.72); }
.brand strong { display: block; font-size: 21px; color: var(--navy); line-height: 1; }
.brand small { display: block; text-transform: uppercase; letter-spacing: 1.7px; font-size: 9px; color: var(--gold2); font-weight: 800; margin-top: 5px; }
.main-nav { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 800; background: #fff; border: 1px solid var(--line); padding: 8px; border-radius: 999px; box-shadow: 0 12px 34px rgba(6,26,51,.08); }
.main-nav a { transition: .25s; padding: 10px 14px; border-radius: 999px; color: var(--navy); }
.main-nav a:hover { color: var(--navy); background: #eef5ff; }
.nav-cta, .btn-gold { background: linear-gradient(135deg,var(--gold),var(--gold2)); color: var(--navy) !important; padding: 13px 22px; border-radius: 999px; font-weight: 800; display: inline-flex; align-items: center; gap: 9px; border: 0; cursor: pointer; box-shadow: 0 10px 24px rgba(185,134,45,.22); transition: .25s; }
.nav-cta:hover, .btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(185,134,45,.3); }
.btn-outline { display: inline-flex; padding: 12px 21px; border: 1px solid rgba(255,255,255,.55); border-radius: 8px; color: #fff; font-weight: 800; margin-left: 10px; }
.menu-toggle { display: none; background: none; border: 0; font-size: 23px; color: var(--navy); }

.hero { min-height: 720px; display: flex; align-items: center; color: #fff; background: linear-gradient(90deg,rgba(4,20,42,.96),rgba(4,26,55,.82) 52%,rgba(4,26,55,.42)), url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=2200&q=85') center/cover; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero-content { max-width: 760px; padding: 95px 0; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--gold); font-size: 13px; text-transform: uppercase; letter-spacing: 2px; font-weight: 800; margin-bottom: 18px; }
.hero h1, .page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(44px,5.8vw,76px); line-height: 1.08; margin: 0 0 22px; }
.hero p { font-size: 19px; color: #dce8f6; max-width: 670px; margin-bottom: 32px; }
.hero-card { background: rgba(255,255,255,.11); border: 1px solid rgba(255,255,255,.18); padding: 14px; backdrop-filter: blur(10px); box-shadow: 0 24px 60px rgba(0,0,0,.24); }
.hero-card img { height: 420px; width: 100%; object-fit: cover; }
.hero-card-body { display: flex; justify-content: space-between; gap: 18px; padding: 18px; color: #fff; }
.hero-card-body strong { font-size: 19px; }
.hero-card-body span { color: #dbe7f5; }

.trust-strip { margin-top: -48px; position: relative; z-index: 5; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); background: #fff; border-radius: 8px; box-shadow: var(--shadow); overflow: hidden; }
.trust-item { padding: 27px; border-right: 1px solid var(--line); display: flex; align-items: center; gap: 15px; }
.trust-item:last-child { border: 0; }
.trust-item i { font-size: 25px; color: var(--gold2); }
.trust-item strong { display: block; color: var(--navy); }
.trust-item span { font-size: 12px; color: var(--muted); }

section { padding: 95px 0; }
.section-head { max-width: 780px; margin: 0 auto 45px; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }
.section-head h2 { font-family: 'Playfair Display', serif; font-size: clamp(33px,4vw,50px); line-height: 1.16; color: var(--navy); margin: 8px 0 14px; }
.section-head p, .split-copy p { color: var(--muted); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.image-stack { position: relative; padding: 0 42px 42px 0; }
.image-stack img { height: 530px; width: 100%; object-fit: cover; border-radius: 8px; }
.image-badge { position: absolute; right: 0; bottom: 0; background: var(--navy); color: #fff; padding: 24px; border-radius: 8px; border: 5px solid #fff; }
.image-badge strong { display: block; color: var(--gold); font-size: 34px; }
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin: 25px 0; }
.checks span { display: flex; gap: 9px; align-items: flex-start; }
.checks i { color: var(--gold2); margin-top: 5px; }
.soft { background: var(--soft); }

.service-grid, .values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.card, .value-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 28px; box-shadow: 0 10px 35px rgba(6,26,51,.06); transition: .35s; position: relative; overflow: hidden; }
.card:before, .value-card:before { content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 4px; background: linear-gradient(90deg,var(--gold),var(--gold2)); transform: scaleX(0); transform-origin: left; transition: .35s; }
.card:hover, .value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.card:hover:before, .value-card:hover:before { transform: scaleX(1); }
.icon-box { width: 58px; height: 58px; border-radius: 8px; background: #eef5ff; color: var(--blue); display: grid; place-items: center; font-size: 23px; margin-bottom: 20px; }
.card h3, .value-card h3 { color: var(--navy); font-size: 18px; margin: 0 0 10px; }
.card p, .value-card p { font-size: 14px; color: var(--muted); }
.value-card>i { font-size: 30px; color: var(--gold2); margin-bottom: 18px; }
.text-link { font-weight: 800; color: var(--gold2); font-size: 14px; }

.company-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.company-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; box-shadow: 0 10px 35px rgba(6,26,51,.07); }
.company-card img { height: 190px; width: 100%; object-fit: cover; }
.company-card-body { padding: 24px; }
.company-card h3 { font-size: 18px; color: var(--navy); margin: 0 0 10px; }
.company-card p { font-size: 14px; color: var(--muted); }
.company-card span { display: block; color: var(--gold2); font-weight: 800; font-size: 13px; margin: 12px 0; }
.company-list { display: grid; gap: 34px; }
.company-row { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: 8px; padding: 24px; }
.company-row img { height: 100%; min-height: 360px; width: 100%; object-fit: cover; border-radius: 8px; }
.company-row h2 { font-family: 'Playfair Display', serif; font-size: 36px; line-height: 1.15; color: var(--navy); margin: 0 0 12px; }
.company-row p { color: var(--muted); }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.pill-row span { background: #eef5ff; border: 1px solid #dbeafe; color: var(--blue); font-size: 12px; font-weight: 800; padding: 8px 10px; border-radius: 999px; }

.why { background: linear-gradient(90deg,rgba(4,20,42,.94),rgba(7,41,79,.86)), url('https://images.unsplash.com/photo-1518684079-3c830dcef090?auto=format&fit=crop&w=1900&q=85') center/cover; color: #fff; }
.why .section-head h2 { color: #fff; }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.why-card { border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.08); backdrop-filter: blur(8px); padding: 25px; border-radius: 8px; }
.why-card i { color: var(--gold); font-size: 25px; }
.why-card p { color: #dbe7f5; }
.industry-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.industry-card { height: 300px; border-radius: 8px; overflow: hidden; position: relative; }
.industry-card img { width: 100%; height: 100%; object-fit: cover; transition: .45s; }
.industry-card:after { content: ''; position: absolute; inset: 0; background: linear-gradient(transparent,rgba(4,20,42,.92)); }
.industry-card h3 { position: absolute; z-index: 2; left: 22px; bottom: 17px; color: #fff; margin: 0; }
.industry-card:hover img { transform: scale(1.07); }
.photo-band { padding: 0; background: var(--navy); }
.photo-band-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; width: 100%; max-width: none; }
.photo-band img { height: 330px; width: 100%; object-fit: cover; }
.split-copy { columns: 2; column-gap: 50px; margin-bottom: 40px; }

.cta { padding: 75px 0; background: linear-gradient(120deg,var(--navy),var(--blue)); color: #fff; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta h2 { font-family: 'Playfair Display', serif; font-size: 42px; line-height: 1.16; margin: 0 0 8px; }
.page-hero { padding: 125px 0; color: #fff; background: linear-gradient(90deg,rgba(4,20,42,.94),rgba(4,26,55,.5)), url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1900&q=85') center/cover; }
.page-hero h1 { font-size: 58px; max-width: 980px; }
.company-hero { background-size: cover; background-position: center; }
.breadcrumbs { color: #d6e3f2; }

.content-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 35px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1/-1; }
.form-group label { font-weight: 800; font-size: 14px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 15px; border: 1px solid #dce5ef; border-radius: 8px; font: inherit; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 35px; }
.contact-list { display: grid; gap: 15px; }
.contact-item { display: flex; gap: 15px; padding: 18px; background: var(--soft); border-radius: 8px; }
.contact-item i { color: var(--gold2); font-size: 20px; }
.success-msg { background: #e9f9ef; padding: 14px; border-radius: 8px; color: #166534; }
.service-detail-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.service-detail-list span { background: var(--soft); border-radius: 8px; padding: 13px; }
.service-detail-list i { color: var(--gold2); margin-right: 8px; }

.footer { position: relative; background: radial-gradient(circle at 15% 0%,rgba(212,168,79,.16),transparent 32%), linear-gradient(135deg,#04152b 0%,#061f3e 55%,#031124 100%); color: #c8d6e6; padding: 86px 0 24px; overflow: hidden; }
.footer:before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: linear-gradient(90deg,var(--gold),var(--blue2),var(--gold2)); }
.footer:after { content: 'FRIENDS'; position: absolute; right: -18px; bottom: 18px; color: rgba(255,255,255,.035); font-family: 'Playfair Display', serif; font-size: 120px; font-weight: 800; letter-spacing: 8px; pointer-events: none; }
.footer-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.45fr .9fr 1.25fr 1.1fr; gap: 34px; align-items: start; }
.footer-grid>div { min-width: 0; }
.footer-grid>div:first-child { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 26px; box-shadow: 0 22px 50px rgba(0,0,0,.14); }
.footer h4 { color: #fff; margin: 4px 0 20px; font-size: 16px; letter-spacing: .2px; position: relative; }
.footer h4:after { content: ''; display: block; width: 36px; height: 3px; border-radius: 999px; background: var(--gold); margin-top: 9px; }
.footer p { margin-top: 18px; }
.footer-grid>div>a { display: block; margin: 10px 0; color: #c8d6e6; transition: .25s; }
.footer-grid>div>a:hover { color: var(--gold); transform: translateX(4px); }
.footer-brand strong { color: #fff; }
.footer-brand .brand-mark { box-shadow: 0 12px 30px rgba(212,168,79,.22); }
.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a { width: 39px; height: 39px; border-radius: 50%; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); display: grid !important; place-items: center; color: var(--gold); transition: .25s; }
.socials a:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }
.copyright { position: relative; z-index: 1; border-top: 1px solid rgba(255,255,255,.1); margin-top: 48px; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; font-size: 13px; color: #9fb1c6; }
.copyright a { color: #c8d6e6; }
.copyright a:hover { color: var(--gold); }

.whatsapp { position: fixed; right: 24px; bottom: 24px; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; font-size: 29px; z-index: 90; box-shadow: 0 12px 25px rgba(0,0,0,.2); }
.chat-launcher { position: fixed; right: 24px; bottom: 94px; width: 58px; height: 58px; border: 0; border-radius: 50%; background: linear-gradient(135deg,var(--blue2),var(--navy)); color: #fff; display: grid; place-items: center; z-index: 95; box-shadow: 0 12px 25px rgba(0,0,0,.2); cursor: pointer; }
.chat-launcher i { font-size: 22px; }
.chat-launcher span { font-size: 10px; font-weight: 800; margin-top: -10px; color: var(--gold); }
.chat-panel { position: fixed; right: 24px; bottom: 166px; width: min(380px, calc(100% - 32px)); height: 510px; background: #fff; border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 24px 70px rgba(6,26,51,.28); z-index: 120; display: none; overflow: hidden; padding: 0; }
.chat-panel.open { display: flex; flex-direction: column; }
.chat-head { background: var(--navy); color: #fff; padding: 16px; display: flex; align-items: center; justify-content: space-between; }
.chat-head strong, .chat-head span { display: block; }
.chat-head span { font-size: 12px; color: #cdd9e7; }
.chat-close { background: transparent; border: 0; color: #fff; font-size: 20px; cursor: pointer; }
.chat-messages { flex: 1; padding: 16px; overflow: auto; background: #f7f9fc; }
.bot-msg, .user-msg { padding: 11px 13px; border-radius: 8px; margin: 0 0 10px; max-width: 86%; font-size: 14px; }
.bot-msg { background: #fff; border: 1px solid var(--line); color: var(--text); }
.user-msg { background: var(--blue); color: #fff; margin-left: auto; }
.chat-form { display: flex; border-top: 1px solid var(--line); }
.chat-form input { border: 0; outline: 0; padding: 14px; flex: 1; font: inherit; }
.chat-form button { border: 0; background: var(--gold); color: var(--navy); width: 54px; font-size: 18px; }
.mobile-actions { display: none; }
.reveal { opacity: 0; transform: translateY(28px); transition: .7s; }
.reveal.show { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .company-grid, .service-grid, .values-grid, .industry-grid { grid-template-columns: repeat(2,1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  .main-nav { display: none; position: absolute; top: 86px; left: 20px; right: 20px; background: #fff; border-radius: 14px; padding: 14px; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; border: 1px solid var(--line); }
  .main-nav.open { display: flex; }
  .main-nav a { border-radius: 10px; padding: 12px 14px; }
  .main-nav .nav-cta { justify-content: center; margin-top: 4px; }
  .menu-toggle { display: block; }
  .grid-2, .contact-grid, .company-row { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .split-copy { columns: 1; }
}

@media (max-width: 640px) {
  .topbar { display: none; }
  .container { width: min(100% - 28px,1180px); }
  .nav-wrap { height: 70px; }
  .brand strong { font-size: 19px; }
  .hero { min-height: 660px; }
  .hero-content { padding: 70px 0; }
  .hero h1 { font-size: 42px; }
  .hero p { font-size: 16px; }
  .hero-actions { display: grid; gap: 10px; }
  .btn-outline { margin: 0; justify-content: center; }
  .trust-strip { margin-top: -20px; }
  .trust-grid, .company-grid, .service-grid, .values-grid, .why-grid, .industry-grid, .footer-grid, .form-grid, .photo-band-grid, .service-detail-list { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  section { padding: 70px 0; }
  .checks { grid-template-columns: 1fr; }
  .image-stack { padding: 0; }
  .image-stack img { height: 390px; }
  .image-badge { right: 10px; bottom: 10px; }
  .cta-inner { display: block; }
  .cta h2 { font-size: 34px; }
  .cta .btn-gold { margin-top: 20px; }
  .page-hero { padding: 85px 0; }
  .page-hero h1 { font-size: 40px; }
  .copyright { display: block; text-align: center; }
  .whatsapp { display: none; }
  .chat-launcher { right: 18px; bottom: 78px; }
  .chat-panel { right: 16px; bottom: 146px; height: 470px; }
  .mobile-actions { display: flex; position: fixed; bottom: 0; left: 0; right: 0; background: #fff; z-index: 95; box-shadow: 0 -8px 25px rgba(6,26,51,.12); justify-content: space-around; padding: 8px; }
  .mobile-actions a { display: flex; flex-direction: column; align-items: center; font-size: 11px; color: var(--navy); }
  .mobile-actions i { font-size: 18px; color: var(--gold2); }
  body { padding-bottom: 61px; }
}
