:root{
  --teal:#004052;
  --teal-dark:#002f3d;
  --gold:#9E8854;
  --cream:#f7f3eb;
  --text:#17272d;
  --muted:#64757b;
  --white:#ffffff;
  --line:rgba(0,64,82,.14);
  --shadow:0 24px 70px rgba(0,31,40,.12);
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:var(--cream);
  line-height:1.6;
}

img{max-width:100%}
a{color:inherit;text-decoration:none}

.container{
  width:min(1180px,calc(100% - 40px));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(247,243,235,.92);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
}

.nav-wrap{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{display:flex;align-items:center;flex:0 0 auto}

.brand img{
  width:180px;
  height:auto;
  display:block;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:28px;
  font-size:14px;
  color:var(--teal);
}

.nav a{opacity:.82}
.nav a:hover{opacity:1;color:var(--gold)}

.nav-cta,
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  font-weight:700;
  white-space:nowrap;
}

.nav-cta{
  padding:11px 18px;
  background:var(--teal);
  color:var(--white);
  font-size:14px;
}

.hero{
  position:relative;
  overflow:hidden;
  padding:92px 0 78px;
  background:
    linear-gradient(90deg,rgba(247,243,235,.96) 0%,rgba(247,243,235,.88) 46%,rgba(0,64,82,.58) 100%),
    url("/assets/images/hero-global-business.webp") center right / cover no-repeat;
}

.hero::after{
  content:"";
  position:absolute;
  right:-140px;
  top:80px;
  width:360px;
  height:360px;
  border-radius:50%;
  background:rgba(158,136,84,.12);
  filter:blur(4px);
  pointer-events:none;
}

.hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:56px;
  align-items:center;
}

.eyebrow{
  margin:0 0 14px;
  color:var(--gold);
  font-size:12px;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
}

h1,h2,h3,p{margin-top:0}

h1{
  margin-bottom:22px;
  color:var(--teal);
  font-size:clamp(42px,6vw,74px);
  line-height:1.02;
  letter-spacing:-.055em;
}

h2{
  margin-bottom:18px;
  color:var(--teal);
  font-size:clamp(30px,4vw,48px);
  line-height:1.08;
  letter-spacing:-.04em;
}

h3{
  margin-bottom:8px;
  color:var(--teal);
  font-size:24px;
  line-height:1.18;
}

.hero-text{
  max-width:650px;
  color:#385158;
  font-size:18px;
}

.hero-pills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}

.hero-pills span{
  padding:9px 14px;
  border:1px solid rgba(0,64,82,.18);
  border-radius:999px;
  background:rgba(255,255,255,.6);
  color:var(--teal);
  font-size:14px;
  font-weight:800;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:32px;
}

.btn{
  min-height:50px;
  padding:14px 22px;
  border:1px solid transparent;
}

.btn-primary{background:var(--teal);color:var(--white)}
.btn-secondary{border-color:rgba(0,64,82,.25);color:var(--teal);background:rgba(255,255,255,.55)}

.hero-panel{
  display:grid;
  gap:16px;
  padding:18px;
  border:1px solid rgba(255,255,255,.7);
  border-radius:34px;
  background:rgba(255,255,255,.6);
  box-shadow:var(--shadow);
  backdrop-filter:blur(16px);
}

.panel-item{
  padding:18px 20px;
  border:1px solid var(--line);
  border-radius:22px;
  background:rgba(255,255,255,.72);
}

.panel-item span{
  display:block;
  margin-bottom:8px;
  color:var(--gold);
  font-size:13px;
  font-weight:800;
}

.panel-item strong{
  display:block;
  color:var(--teal);
  font-size:18px;
}

.panel-item p{
  margin:6px 0 0;
  color:var(--muted);
  font-size:14px;
}

.section{padding:88px 0}

.split{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:58px;
  align-items:start;
}

.content{
  color:#41585f;
  font-size:17px;
}

.section-image{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
  margin-bottom:24px;
  border-radius:28px;
  background:linear-gradient(135deg,rgba(0,64,82,.12),rgba(158,136,84,.16));
  box-shadow:0 18px 45px rgba(0,31,40,.08);
}

.meta-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:30px;
}

.meta-grid div{
  padding:18px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
}

.meta-grid strong,
.meta-grid span{display:block}

.meta-grid strong{
  color:var(--teal);
  font-size:13px;
}

.meta-grid span{
  margin-top:5px;
  color:var(--muted);
  font-size:14px;
}

.section-dark{
  background:var(--teal);
  color:rgba(255,255,255,.78);
}

.section-dark h2,
.section-dark h3{color:#fff}

.section-head{
  max-width:760px;
  margin-bottom:42px;
}

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.service-card{
  display:flex;
  flex-direction:column;
  min-height:100%;
  padding:18px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:30px;
  background:rgba(255,255,255,.08);
  box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.service-card.featured{
  background:rgba(158,136,84,.2);
  border-color:rgba(158,136,84,.45);
}

.service-card img{
  width:100%;
  height:190px;
  object-fit:cover;
  display:block;
  margin-bottom:20px;
  border-radius:22px;
  background:linear-gradient(135deg,rgba(255,255,255,.12),rgba(158,136,84,.18));
}

.service-icon{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  margin-bottom:16px;
  border-radius:50%;
  background:rgba(158,136,84,.22);
  color:#fff;
  font-size:22px;
}

.card-subtitle{
  margin-bottom:16px;
  color:#d9cda8;
  font-weight:700;
}

.service-card ul{
  margin:8px 0 24px;
  padding-left:20px;
}

.service-card li{margin-bottom:8px}

.service-card a{
  margin-top:auto;
  color:#f5df9c;
  font-weight:800;
}

.mission-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.mission-card{
  padding:38px;
  border:1px solid var(--line);
  border-radius:34px;
  background:#fff;
  box-shadow:0 18px 50px rgba(0,31,40,.06);
}

.mission-card.gold{
  background:var(--gold);
  color:#fff;
}

.mission-card.gold h2,
.mission-card.gold .eyebrow{color:#fff}

.founders{background:#fff}

.founder-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.founder-card{
  padding:28px;
  border:1px solid var(--line);
  border-radius:32px;
  background:var(--cream);
}

.role{
  color:var(--gold);
  font-weight:800;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.why-grid div{
  padding:24px;
  border:1px solid var(--line);
  border-radius:24px;
  background:#fff;
}

.why-grid strong,
.why-grid span{display:block}

.why-grid strong{
  margin-bottom:8px;
  color:var(--teal);
}

.why-grid span{
  color:var(--muted);
  font-size:14px;
}

.contact-section{
  background:linear-gradient(135deg,var(--teal) 0%,var(--teal-dark) 100%);
  color:rgba(255,255,255,.78);
}

.contact-section h2{color:#fff}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:start;
}

.contact-card{
  padding:28px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:32px;
  background:rgba(255,255,255,.08);
}

.contact-options{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-bottom:24px;
}

.contact-options a{
  padding:15px 14px;
  border-radius:18px;
  background:rgba(255,255,255,.12);
  color:#fff;
  font-weight:800;
  text-align:center;
}

.contact-details{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.contact-details p,
.social-links{
  margin:0;
  padding:18px;
  border-radius:18px;
  background:rgba(255,255,255,.08);
}

.contact-details p:nth-child(3),
.social-links{
  grid-column:1 / -1;
}

.contact-details a{color:#f5df9c}

.social-links strong{
  display:block;
  margin-bottom:12px;
  color:#fff;
}

.social-links div{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.social-links a{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:rgba(255,255,255,.12);
  color:#f5df9c;
  font-size:17px;
  transition:transform .25s ease,background .25s ease;
}

.social-links a:hover{
  transform:translateY(-3px);
  background:rgba(255,255,255,.18);
}

.site-footer{
  padding:26px 0;
  background:#022d38;
  color:rgba(255,255,255,.72);
  font-size:14px;
}

.footer-grid{
  display:flex;
  justify-content:space-between;
  gap:20px;
}

.footer-grid p{margin:0}

.hero-content,
.hero-panel,
.service-card,
.mission-card,
.founder-card,
.why-grid > div,
.contact-card{
  animation:softReveal .75s ease both;
}

.hero-panel{animation-delay:.12s}
.service-card:nth-child(2){animation-delay:.08s}
.service-card:nth-child(3){animation-delay:.16s}

@keyframes softReveal{
  from{opacity:0;transform:translateY(18px)}
  to{opacity:1;transform:translateY(0)}
}

.btn,
.nav-cta,
.service-card,
.founder-card,
.contact-options a{
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease,background .25s ease;
}

.btn:hover,
.nav-cta:hover,
.service-card:hover,
.founder-card:hover,
.contact-options a:hover{
  transform:translateY(-3px);
}

@media (max-width:980px){
  .nav-wrap{
    min-height:auto;
    padding:18px 0;
    flex-wrap:wrap;
  }

  .brand img{width:160px}

  .nav{
    order:3;
    width:100%;
    justify-content:flex-start;
    gap:18px;
    overflow-x:auto;
    padding-top:6px;
  }

  .hero{padding:72px 0 62px}

  .hero-grid,
  .split,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .cards,
  .why-grid{
    grid-template-columns:1fr 1fr;
  }

  .meta-grid,
  .contact-options{
    grid-template-columns:1fr;
  }
}

@media (max-width:640px){
  .container{width:min(100% - 28px,1180px)}

  .brand img{width:150px}

  .nav-cta{
    padding:9px 14px;
    font-size:13px;
  }

  h1{font-size:42px}
  h2{font-size:31px}

  .hero{
    padding:64px 0 58px;
    background:
      linear-gradient(180deg,rgba(247,243,235,.96) 0%,rgba(247,243,235,.92) 60%,rgba(0,64,82,.34) 100%),
      url("/assets/images/hero-global-business.webp") center / cover no-repeat;
  }

  .hero-actions{flex-direction:column}
  .btn{width:100%}

  .hero-panel,
  .mission-card,
  .contact-card{
    border-radius:26px;
  }

  .section{padding:64px 0}

  .cards,
  .mission-grid,
  .founder-grid,
  .why-grid,
  .contact-details{
    grid-template-columns:1fr;
  }

  .service-card img{height:170px}

  .footer-grid{flex-direction:column}
}

@media (prefers-reduced-motion:reduce){
  *,
  *::before,
  *::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    scroll-behavior:auto !important;
    transition-duration:.01ms !important;
  }
}

.founder-card img{
  width:126px;
  height:126px;
  object-fit:cover;
  display:block;
  margin-bottom:18px;
  border:4px solid #fff;
  border-radius:50%;
  background:linear-gradient(135deg,rgba(0,64,82,.18),rgba(158,136,84,.24));
  box-shadow:0 16px 35px rgba(0,31,40,.12);
}

.founder-card{
  display:grid;
  grid-template-columns:126px 1fr;
  gap:22px;
  align-items:center;
  padding:28px;
}

.founder-card img{
  width:126px;
  height:126px;
  object-fit:cover;
  display:block;
  border:4px solid #fff;
  border-radius:50%;
  background:linear-gradient(135deg,rgba(0,64,82,.18),rgba(158,136,84,.24));
  box-shadow:0 16px 35px rgba(0,31,40,.12);
}

@media (max-width:640px){
  .founder-card{
    grid-template-columns:1fr;
    text-align:left;
  }
}

.floating-whatsapp{
  position:fixed;
  right:22px;
  bottom:22px;
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#25D366;
  color:#fff;
  font-size:28px;
  box-shadow:0 18px 40px rgba(0,0,0,.18);
  z-index:999;
  transition:transform .25s ease;
}

.floating-whatsapp:hover{
  transform:translateY(-3px);
}

.enquiry-form{
  display:grid;
  gap:16px;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea{
  width:100%;
  padding:16px 18px;
  border:none;
  outline:none;
  border-radius:18px;
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:15px;
  font-family:inherit;
  backdrop-filter:blur(8px);
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder{
  color:rgba(255,255,255,.68);
}

.enquiry-form select{
  appearance:none;
}

.enquiry-form option{
  color:#17272d;
}

.enquiry-form textarea{
  resize:vertical;
  min-height:140px;
}

.enquiry-form button{
  height:54px;
  border:none;
  border-radius:999px;
  background:#fff;
  color:var(--teal);
  font-size:15px;
  font-weight:800;
  cursor:pointer;
  transition:transform .25s ease, opacity .25s ease;
}

.enquiry-form button:hover{
  transform:translateY(-3px);
  opacity:.95;
}

.contact-details-left{
  margin-top:28px;
}

@media (max-width:640px){
  .form-row{
    grid-template-columns:1fr;
  }
}

.contact-info-card{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  height:100%;
}

.contact-info-card > p{
  max-width:560px;
}

.contact-section .contact-card{
  backdrop-filter:blur(10px);
}

.contact-details{
  margin-top:24px;
}

.enquiry-form{
  height:100%;
  display:flex;
  flex-direction:column;
  gap:18px;
}

.enquiry-form textarea{
  min-height:160px;
}

.enquiry-form button{
  margin-top:auto;
}