/* =====================================================
   MARIS GLOBAL LLC FZ — Global Stylesheet
   Navy • Gold • White premium corporate system
   ===================================================== */

/* -------------------- Root Variables -------------------- */
:root {
  --navy: #082d50;
  --navy-2: #0a3157;
  --navy-3: #102f50;
  --navy-deep: #062038;
  --gold: #bd913b;
  --gold-2: #c59a43;
  --gold-3: #d5ae5c;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --cream: #f3f1ec;
  --cream-2: #e9e6df;
  --text: #28313b;
  --muted: #68717b;
  --line: #e4e0d7;
  --shadow-sm: 0 6px 24px rgba(8, 45, 80, 0.06);
  --shadow-md: 0 14px 44px rgba(8, 45, 80, 0.10);
  --shadow-lg: 0 24px 70px rgba(8, 45, 80, 0.16);
  --radius: 14px;
  --radius-sm: 8px;
  --container: min(1180px, calc(100% - 40px));
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --head: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --body: "Manrope", "Inter", system-ui, sans-serif;
}

/* -------------------- Reset -------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
  font-weight: 400;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* -------------------- Typography -------------------- */
h1, h2, h3, h4 { font-family: var(--head); font-weight: 600; line-height: 1.15; color: var(--navy); letter-spacing: 0.2px; }
h1 { font-size: clamp(2.4rem, 5.4vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
p { color: var(--text); }
.container { width: var(--container); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 120px) 0; }

/* Eyebrow label */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--body); font-weight: 700; font-size: 0.74rem;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 34px; height: 1.5px; background: var(--gold); display: inline-block; }
.eyebrow.center { justify-content: center; }

.lead { font-size: clamp(1.02rem, 1.6vw, 1.15rem); color: var(--muted); }
.text-center { text-align: center; }
.gold { color: var(--gold); }
.divider-gold { width: 60px; height: 2px; background: var(--gold); margin: 22px 0; }
.divider-gold.center { margin-inline: auto; }




.brand{
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo{
  width: 150px;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Tablet */
@media (max-width: 991px){
  .brand-logo{
    width: 150px;
  }
}

/* Mobile */
@media (max-width: 576px){
  .brand-logo{
    width: 165px;
  }
}

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 50px; font-weight: 700;
  font-size: 0.86rem; letter-spacing: 0.6px; position: relative;
  overflow: hidden; transition: all 0.35s var(--ease); cursor: pointer;
  border: 1.5px solid transparent;
}
.btn .arrow { transition: transform 0.35s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--navy); color: #fff; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--gold); color: #fff; }
.btn-outline { border-color: rgba(255,255,255,0.6); color: #fff; background: transparent; }
.btn-outline:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn-outline-navy { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline-navy:hover { background: var(--navy); color: #fff; }
.btn-ghost { color: var(--navy); padding-left: 0; padding-right: 0; background: transparent; border-radius: 0; }
.btn-ghost .arrow { color: var(--gold); }

/* Learn more link */
.learn {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700;
  font-size: 0.82rem; letter-spacing: 0.5px; color: var(--navy);
  text-transform: uppercase; transition: color 0.3s var(--ease);
}
.learn .arrow { color: var(--gold); transition: transform 0.3s var(--ease); }
.learn:hover { color: var(--gold); }
.learn:hover .arrow { transform: translateX(5px); }

/* =====================================================
   Header / Navbar
   ===================================================== */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  transition: all 0.4s var(--ease); background: rgba(255,255,255,0.98);
  border-bottom: 1px solid rgba(228,224,215,0.6);
}
.header.scrolled { box-shadow: 0 6px 30px rgba(8,45,80,0.10); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 96px; transition: height 0.4s var(--ease);
}
.header.scrolled .nav { height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand .logo-mark {
  width: 46px; height: 46px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  display: grid; place-items: center; position: relative;
  box-shadow: 0 6px 18px rgba(8,45,80,0.22);
}
.brand .logo-mark svg { width: 30px; height: 30px; }
.brand .logo-text { line-height: 1; }
.brand .logo-text .name {
  font-family: var(--head); font-weight: 700; font-size: 1.42rem;
  color: var(--navy); letter-spacing: 1px; display: block;
}
.brand .logo-text .tag {
  font-size: 0.6rem; letter-spacing: 2.6px; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-top: 3px;
}

.menu { display: flex; align-items: center; gap: 6px; }
.menu > li > a, .dropdown-toggle {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 10px 15px; font-size: 0.9rem; font-weight: 600; color: var(--navy);
  position: relative; transition: color 0.3s var(--ease);
}
.menu > li > a::after, .dropdown-toggle::after {
  content: ""; position: absolute; bottom: 4px; left: 15px; right: 15px;
  height: 1.5px; background: var(--gold); transform: scaleX(0);
  transform-origin: left; transition: transform 0.35s var(--ease);
}
.menu > li > a:hover, .dropdown-toggle:hover,
.menu > li > a.active { color: var(--gold); }
.menu > li > a:hover::after, .dropdown-toggle:hover::after,
.menu > li > a.active::after { transform: scaleX(1); }
.dropdown-toggle .caret { transition: transform 0.3s var(--ease); font-size: 0.7rem; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(10px);
  background: #fff; min-width: 290px; border-radius: 14px; padding: 12px;
  box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden;
  transition: all 0.32s var(--ease); border-top: 3px solid var(--gold);
}
.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown:hover .caret { transform: rotate(180deg); }
.dropdown-menu a {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px;
  border-radius: 9px; font-size: 0.9rem; font-weight: 600; color: var(--navy);
  transition: all 0.25s var(--ease);
}
.dropdown-menu a .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; transition: transform 0.25s; }
.dropdown-menu a:hover { background: var(--off-white); color: var(--gold); padding-left: 18px; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 12px 24px; }

/* Hamburger */
.hamburger {
  display: none; width: 44px; height: 44px; flex-direction: column;
  justify-content: center; align-items: center; gap: 6px; z-index: 1100;
}
.hamburger span {
  width: 26px; height: 2px; background: var(--navy); border-radius: 2px;
  transition: all 0.35s var(--ease);
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(6,32,56,0.55); z-index: 1040;
  opacity: 0; visibility: hidden; transition: all 0.4s var(--ease); backdrop-filter: blur(2px);
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

.mobile-menu {
  position: fixed; top: 0; right: 0; height: 100%; width: min(340px, 86vw);
  background: #fff; z-index: 1050; transform: translateX(100%);
  transition: transform 0.42s var(--ease); display: flex; flex-direction: column;
  box-shadow: -10px 0 50px rgba(8,45,80,0.2); overflow-y: auto;
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; border-bottom: 1px solid var(--line);
}
.mobile-close { width: 40px; height: 40px; display: grid; place-items: center; color: var(--navy); font-size: 1.6rem; }
.mobile-links { padding: 12px 24px 24px; display: flex; flex-direction: column; }
.mobile-links > a, .m-drop-toggle {
  padding: 15px 0; font-size: 1.05rem; font-weight: 600; color: var(--navy);
  border-bottom: 1px solid var(--line); display: flex; align-items: center;
  justify-content: space-between; width: 100%; text-align: left;
}
.mobile-links > a.active { color: var(--gold); }
.m-drop-toggle .caret { transition: transform 0.3s var(--ease); color: var(--gold); }
.m-drop-toggle.open .caret { transform: rotate(180deg); }
.m-drop-panel { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.m-drop-panel a {
  display: block; padding: 12px 0 12px 16px; font-size: 0.95rem; font-weight: 500;
  color: var(--muted); border-bottom: 1px solid var(--line);
}
.m-drop-panel a:hover { color: var(--gold); }
.mobile-cta { margin: 24px; }
.mobile-cta .btn { width: 100%; justify-content: center; }
.mobile-contact { padding: 0 24px 30px; margin-top: auto; }
.mobile-contact p { font-size: 0.88rem; color: var(--muted); margin-bottom: 6px; }
.mobile-contact a { color: var(--navy); font-weight: 600; }
body.no-scroll { overflow: hidden; }

/* =====================================================
   Hero (Home)
   ===================================================== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  color: #fff; overflow: hidden; padding-top: 86px;
}
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  animation: kenburns 22s ease-in-out infinite alternate; z-index: 0;
}
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.12); } }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(110deg, rgba(6,32,56,0.94) 0%, rgba(8,45,80,0.82) 45%, rgba(8,45,80,0.5) 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 780px; padding: 40px 0; }
.hero .eyebrow { color: var(--gold-3); }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero .sub {
  font-family: var(--head); font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  color: var(--gold-3); font-style: italic; margin-bottom: 22px; font-weight: 500;
}
.hero p { color: rgba(255,255,255,0.9); max-width: 620px; margin-bottom: 34px; font-size: 1.08rem; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.scroll-cue {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2;
  color: rgba(255,255,255,0.7); font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-cue .line { width: 1px; height: 40px; background: rgba(255,255,255,0.4); position: relative; overflow: hidden; }
.scroll-cue .line::after { content:""; position:absolute; top:-40px; left:0; width:100%; height:40px; background: var(--gold); animation: scrolldown 2s infinite; }
@keyframes scrolldown { to { top: 100%; } }

/* =====================================================
   Inner Page Hero
   ===================================================== */
.page-hero {
  position: relative; padding: 190px 0 90px; color: #fff; overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.page-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(6,32,56,0.95) 0%, rgba(8,45,80,0.78) 100%);
}
.page-hero-inner { position: relative; z-index: 2; max-width: 760px; }
.page-hero .eyebrow { color: var(--gold-3); }
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.9); font-size: 1.08rem; max-width: 600px; }
.breadcrumb { display: flex; gap: 8px; font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-bottom: 20px; letter-spacing: 0.5px; }
.breadcrumb a:hover { color: var(--gold-3); }
.breadcrumb .sep { color: var(--gold-3); }

/* =====================================================
   About preview / split sections
   ===================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; height: 100%; object-fit: cover; min-height: 340px; }
.frame-accent { position: absolute; border: 2px solid var(--gold); border-radius: var(--radius); z-index: -1; }
.frame-accent.br { right: -18px; bottom: -18px; width: 60%; height: 60%; }
.split-body h2 { margin-bottom: 8px; }
.split-body p { color: var(--muted); margin-bottom: 18px; }
.check-list { display: grid; gap: 12px; margin: 22px 0 28px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-weight: 600; color: var(--navy); font-size: 0.98rem; }
.check-list li .ic { color: var(--gold); flex-shrink: 0; margin-top: 3px; }

/* =====================================================
   Section head
   ===================================================== */
.section-head { max-width: 680px; margin: 0 auto 54px; }
.section-head.left { margin-left: 0; }
.section-head p { color: var(--muted); margin-top: 12px; }

/* =====================================================
   Service cards
   ===================================================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 38px 30px; transition: all 0.4s var(--ease); position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-num { font-family: var(--head); font-size: 1rem; color: var(--gold); font-weight: 700; letter-spacing: 1px; margin-bottom: 8px; }
.service-icon {
  width: 58px; height: 58px; border-radius: 12px; display: grid; place-items: center;
  background: var(--off-white); color: var(--navy); margin-bottom: 20px; transition: all 0.4s var(--ease);
}
.service-card:hover .service-icon { background: var(--navy); color: var(--gold-3); }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 20px; }

/* =====================================================
   Approach columns
   ===================================================== */
.approach-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.approach-card {
  padding: 34px 26px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line);
  transition: all 0.4s var(--ease); position: relative;
}
.approach-card:hover { background: var(--navy); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.approach-card:hover h3, .approach-card:hover p { color: #fff; }
.approach-card .num { font-family: var(--head); font-size: 2.4rem; color: var(--gold); font-weight: 700; line-height: 1; margin-bottom: 16px; }
.approach-card h3 { font-size: 1.25rem; margin-bottom: 10px; transition: color 0.4s; }
.approach-card p { color: var(--muted); font-size: 0.92rem; transition: color 0.4s; }

/* =====================================================
   Why us feature blocks
   ===================================================== */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.why-card {
  display: flex; gap: 22px; padding: 34px; background: #fff; border-radius: var(--radius);
  border: 1px solid var(--line); transition: all 0.4s var(--ease);
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(189,145,59,0.4); }
.why-card .ic {
  width: 56px; height: 56px; border-radius: 12px; flex-shrink: 0; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: var(--gold-3);
}
.why-card h3 { font-size: 1.28rem; margin-bottom: 8px; }
.why-card p { color: var(--muted); font-size: 0.95rem; }

/* =====================================================
   CTA strip
   ===================================================== */
.cta-strip {
  position: relative; padding: clamp(64px, 8vw, 100px) 0; color: #fff; overflow: hidden;
  background: linear-gradient(120deg, var(--navy-deep) 0%, var(--navy-2) 100%);
}
.cta-strip::before {
  content: ""; position: absolute; right: -80px; top: -80px; width: 340px; height: 340px;
  border: 2px solid rgba(189,145,59,0.25); border-radius: 50%;
}
.cta-strip::after {
  content: ""; position: absolute; right: 20px; bottom: -120px; width: 260px; height: 260px;
  border: 2px solid rgba(189,145,59,0.18); border-radius: 50%;
}
.cta-inner { position: relative; z-index: 2; max-width: 720px; }
.cta-strip .eyebrow { color: var(--gold-3); }
.cta-strip h2 { color: #fff; margin-bottom: 16px; }
.cta-strip p { color: rgba(255,255,255,0.88); margin-bottom: 30px; }
.cta-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* =====================================================
   Timeline / Process
   ===================================================== */
.process { position: relative; }
.timeline { position: relative; max-width: 860px; margin: 0 auto; padding-left: 20px; }
.timeline::before {
  content: ""; position: absolute; left: 27px; top: 8px; bottom: 8px; width: 2px;
  background: var(--line);
}
.timeline .progress-line {
  content: ""; position: absolute; left: 27px; top: 8px; width: 2px; background: var(--gold);
  height: 0; transition: height 1.4s var(--ease);
}
.tl-item { position: relative; padding: 0 0 44px 68px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: 12px; top: 0; width: 32px; height: 32px; border-radius: 50%;
  background: #fff; border: 2px solid var(--line); display: grid; place-items: center;
  font-size: 0.72rem; font-weight: 800; color: var(--muted); z-index: 2; transition: all 0.5s var(--ease);
}
.tl-item.revealed .tl-dot { border-color: var(--gold); background: var(--gold); color: #fff; }
.tl-item h3 { font-size: 1.25rem; margin-bottom: 6px; }
.tl-item .step-label { font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.tl-item p { color: var(--muted); font-size: 0.96rem; margin-top: 4px; }

/* =====================================================
   Feature detail blocks (service pages)
   ===================================================== */
.detail-block {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 40px;
  transition: all 0.4s var(--ease);
}
.detail-block:hover { box-shadow: var(--shadow-md); }
.detail-block .db-head { display: flex; align-items: center; gap: 18px; margin-bottom: 20px; }
.detail-block .db-ic {
  width: 54px; height: 54px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0;
  background: var(--off-white); color: var(--navy);
}
.detail-block h3 { font-size: 1.4rem; }
.detail-block .tag-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin-top: 6px; }
.detail-block .tag-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 0.94rem; }
.detail-block .tag-list li .ic { color: var(--gold); flex-shrink: 0; margin-top: 4px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }

/* Alternating big sections */
.alt-section { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 70px); align-items: center; margin-bottom: clamp(50px, 7vw, 90px); }
.alt-section:last-child { margin-bottom: 0; }
.alt-section.reverse .alt-media { order: 2; }
.alt-media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.alt-body .service-num { display: inline-block; }
.alt-body h2 { margin-bottom: 14px; }
.alt-body p { color: var(--muted); margin-bottom: 18px; }

/* =====================================================
   Contact
   ===================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.contact-info-card {
  background: var(--navy); color: #fff; border-radius: var(--radius); padding: 44px; position: relative; overflow: hidden;
}
.contact-info-card::after {
  content:""; position:absolute; right:-60px; bottom:-60px; width:200px; height:200px;
  border:2px solid rgba(189,145,59,0.2); border-radius:50%;
}
.contact-info-card h3 { color: #fff; margin-bottom: 6px; font-size: 1.7rem; }
.contact-info-card .ci-tag { color: var(--gold-3); font-style: italic; font-family: var(--head); margin-bottom: 26px; }
.contact-item { display: flex; gap: 16px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.12); position: relative; z-index: 2; }
.contact-item .ic { width: 44px; height: 44px; border-radius: 10px; background: rgba(255,255,255,0.08); display: grid; place-items: center; color: var(--gold-3); flex-shrink: 0; }
.contact-item .ci-label { font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.contact-item a, .contact-item span { color: #fff; font-weight: 600; font-size: 0.98rem; }
.contact-item a:hover { color: var(--gold-3); }

.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 44px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--navy); margin-bottom: 7px; letter-spacing: 0.4px; }
.form-group label .req { color: var(--gold); }
.form-control {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.95rem; color: var(--text); background: var(--off-white);
  transition: all 0.3s var(--ease);
}
.form-control:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(189,145,59,0.12); }
textarea.form-control { resize: vertical; min-height: 120px; }
.field-error { color: #c0392b; font-size: 0.78rem; margin-top: 5px; display: none; }
.form-group.error .form-control { border-color: #c0392b; }
.form-group.error .field-error { display: block; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 16px; text-align: center; }
.form-success {
  display: none; padding: 16px; background: rgba(189,145,59,0.1); border: 1px solid var(--gold);
  border-radius: var(--radius-sm); color: var(--navy); font-weight: 600; margin-bottom: 18px; font-size: 0.92rem;
}
.form-success.show { display: block; }

.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* =====================================================
   Footer
   ===================================================== */
.footer { background: var(--navy-deep); color: rgba(255,255,255,0.75); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1.4fr; gap: 44px; padding-bottom: 50px; }
.footer .brand .logo-text .name { color: #fff; }
.footer-about p { margin: 20px 0; font-size: 0.92rem;  color: #fff; line-height: 1.8; max-width: 320px; }
.footer h4 { color: #fff; font-family: var(--body); font-size: 0.82rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 22px; font-weight: 700; }
.footer h4 .accent { color: var(--gold); }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 0.92rem; transition: all 0.3s var(--ease); display: inline-flex; align-items: center; gap: 8px; }
.footer-links a::before { content: ""; width: 0; height: 1px; background: var(--gold); transition: width 0.3s var(--ease); }
.footer-links a:hover { color: #fff; }
.footer-links a:hover::before { width: 12px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 16px; font-size: 0.92rem; }
.footer-contact .ic { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-contact a:hover { color: #fff; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18); display: grid; place-items: center; color: rgba(255,255,255,0.7); transition: all 0.3s var(--ease); }
.footer-social a:hover { background: var(--gold); color: #fff; border-color: var(--gold); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.84rem; color: rgba(255,255,255,0.55); }
.footer-bottom .fb-links { display: flex; gap: 20px; }
.footer-bottom .fb-links a { font-size: 0.84rem; }
.footer-bottom .fb-links a:hover { color: var(--gold); }

/* =====================================================
   WhatsApp float + back to top
   ===================================================== */
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 900; width: 58px; height: 58px;
  border-radius: 50%; background: #25d366; display: grid; place-items: center;
  box-shadow: 0 8px 26px rgba(37,211,102,0.45); transition: transform 0.3s var(--ease);
}
.wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%; background: #25d366;
  animation: wapulse 2.4s ease-out infinite; z-index: -1;
}
@keyframes wapulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.7); opacity: 0; } }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }
.wa-tooltip {
  position: absolute; right: 70px; top: 50%; transform: translateY(-50%) translateX(10px);
  background: var(--navy); color: #fff; padding: 8px 14px; border-radius: 8px; font-size: 0.8rem;
  white-space: nowrap; font-weight: 600; opacity: 0; visibility: hidden; transition: all 0.3s var(--ease); pointer-events: none;
}
.wa-tooltip::after { content:""; position:absolute; right:-5px; top:50%; transform:translateY(-50%); border-left:6px solid var(--navy); border-top:5px solid transparent; border-bottom:5px solid transparent; }
.wa-float:hover .wa-tooltip { opacity: 1; visibility: visible; transform: translateY(-50%) translateX(0); }

.back-top {
  position: fixed; right: 26px; bottom: 92px; z-index: 890; width: 46px; height: 46px;
  border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center;
  box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: all 0.35s var(--ease);
}
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { background: var(--gold); }

/* =====================================================
   Custom cursor (desktop only)
   ===================================================== */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; border-radius: 50%; mix-blend-mode: normal; }
.cursor-dot { width: 7px; height: 7px; background: var(--gold); transform: translate(-50%, -50%); transition: opacity 0.2s; }
.cursor-ring { width: 34px; height: 34px; border: 1.5px solid rgba(8,45,80,0.5); transform: translate(-50%, -50%); transition: width 0.25s var(--ease), height 0.25s var(--ease), border-color 0.25s; }
.cursor-ring.hover { width: 50px; height: 50px; border-color: var(--gold); }

/* =====================================================
   Scroll reveal
   ===================================================== */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

/* Stat / pill row */
.pill-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 9px 18px; background: var(--off-white); border: 1px solid var(--line); border-radius: 50px; font-size: 0.84rem; font-weight: 600; color: var(--navy); }
.pill .ic { color: var(--gold); }

.bg-cream { background: var(--off-white); }
.bg-cream-2 { background: var(--cream); }

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 1080px) {
  .menu { display: none; }
  .hamburger { display: flex; }
  .nav-cta .btn { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 860px) {
  body { font-size: 16px; }
  .split, .alt-section, .contact-grid { grid-template-columns: 1fr; }
  .split.reverse .split-media, .alt-section.reverse .alt-media { order: 0; }
  .why-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .detail-block .tag-list { grid-template-columns: 1fr; }
  .frame-accent.br { display: none; }
  .split-media img, .alt-media img { min-height: 260px; }
  .cursor-dot, .cursor-ring { display: none; }
}
@media (max-width: 620px) {
  .services-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-btns .btn, .cta-btns .btn { width: 100%; justify-content: center; }
  .contact-form, .contact-info-card, .detail-block { padding: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .brand .logo-text .name { font-size: 1.2rem; }
  .brand .logo-mark { width: 42px; height: 42px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .hero-bg { animation: none; }
  .reveal { opacity: 1; transform: none; }
}



/* ==========================================
   ACCESSIBLE SERVICES DROPDOWN FIX
========================================== */
.menu .dropdown {
  position: relative;
}

.menu .dropdown > .dropdown-menu {
  display: block !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(12px) !important;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease !important;
}

.menu .dropdown.is-open > .dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

.dropdown-toggle .caret,
.m-drop-toggle .caret {
  display: inline-block;
  transition: transform 0.25s ease;
}

.dropdown.is-open > .dropdown-toggle .caret,
.m-drop-toggle.is-open .caret {
  transform: rotate(180deg);
}

.m-drop-panel {
  display: block !important;
  max-height: 0 !important;
  margin-block: 0 !important;
  padding-block: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  overflow: hidden !important;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease, visibility 0.25s ease !important;
}

.m-drop-panel.is-open {
  max-height: 520px !important;
  margin-top: 4px !important;
  padding-block: 8px !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Focus visibility */
a:focus-visible, button:focus-visible, .form-control:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
