/* =====================================================
   IMMICONNECT SERVICES PVT LTD
   Shared Stylesheet — Navy + Teal + Green Theme
   Colours sourced directly from brand logo
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ── VARIABLES ── */
:root {
  /* Core brand (from logo) */
  --navy:          #0B1E3A;
  --navy-mid:      #112244;
  --navy-light:    #1A3566;

  /* Teal — logo globe/icon accent */
  --teal:          #0A9B8A;
  --teal-light:    #12C4AF;
  --teal-pale:     #E0F9F6;
  --teal-border:   rgba(10,155,138,.25);

  /* Green — logo "CONNECT" gradient energy */
  --green:         #28A85F;
  --green-light:   #36D47C;
  --green-pale:    #E6F9EE;

  /* Backwards-compat aliases (keeps old refs working) */
  --gold:          var(--teal);
  --gold-light:    var(--teal-light);
  --gold-pale:     var(--teal-pale);
  --gold-border:   var(--teal-border);

  /* Neutrals */
  --white:         #FFFFFF;
  --off-white:     #F5F7F9;
  --cream:         #EFF4F2;
  --text-dark:     #0F1E35;
  --text-mid:      #4A5568;
  --text-light:    rgba(255,255,255,.55);
  --border:        #DDE5E2;
  --footer-bg:     #060F1E;

  /* Layout */
  --nav-h:         70px;
  --r:             12px;
  --r-lg:          20px;
  --shadow:        0 4px 24px rgba(11,30,58,.08);
  --shadow-lg:     0 16px 56px rgba(11,30,58,.16);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.15; }

/* ── UTILITIES ── */
.container { width: 92%; max-width: 1180px; margin: 0 auto; }
.page-body  { padding-top: var(--nav-h); }
.section    { padding: 88px 0; }
.section-sm { padding: 60px 0; }
.section-light  { background: var(--off-white); }
.section-cream  { background: var(--cream); }
.section-navy   { background: var(--navy); }
.section-footer { background: var(--footer-bg); }

/* ── EYEBROW ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 14px;
}
.eyebrow::before {
  content: ''; width: 26px; height: 2px;
  background: var(--teal); border-radius: 2px;
}

/* ── SECTION TITLES ── */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 700; color: var(--navy);
  line-height: 1.15; margin-bottom: 14px;
}
.section-title-white { color: var(--white); }
.section-lead { font-size: 17px; line-height: 1.75; color: var(--text-mid); max-width: 560px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--r);
  font-family: 'Outfit', sans-serif;
  font-size: 15px; font-weight: 600;
  cursor: pointer; border: none;
  transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold, .btn-teal {
  background: var(--teal); color: var(--white);
  box-shadow: 0 4px 20px rgba(10,155,138,.3);
}
.btn-gold:hover, .btn-teal:hover {
  background: var(--teal-light);
  box-shadow: 0 8px 32px rgba(10,155,138,.45);
}

.btn-green {
  background: var(--green); color: var(--white);
  box-shadow: 0 4px 20px rgba(40,168,95,.3);
}
.btn-green:hover { background: var(--green-light); box-shadow: 0 8px 32px rgba(40,168,95,.4); }

.btn-navy {
  background: var(--navy); color: var(--white);
}
.btn-navy:hover { background: var(--navy-light); box-shadow: var(--shadow-lg); }

.btn-outline {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--teal); background: var(--teal-pale); }

.btn-outline-light {
  background: transparent; color: rgba(255,255,255,.75);
  border: 1.5px solid rgba(255,255,255,.2);
}
.btn-outline-light:hover { border-color: var(--teal-light); color: var(--teal-light); }

.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 15px 32px; font-size: 16px; }

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow .3s;
}
.site-nav.scrolled { box-shadow: 0 2px 20px rgba(11,30,58,.1); }

.nav-wrap {
  height: 100%;
  width: 92%; max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; gap: 11px; }
.nav-logo-img {
  height: 48px; width: auto; display: block;
  image-rendering: -webkit-optimize-contrast;
}
@media (max-width: 600px) { .nav-logo-img { height: 38px; } }

.nav-links {
  display: flex; align-items: center; gap: 2px; list-style: none;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-dark);
  padding: 8px 13px; border-radius: 8px;
  transition: background .18s, color .18s;
}
.nav-links a:hover  { background: var(--teal-pale); color: var(--teal); }
.nav-links a.active { background: var(--teal-pale); color: var(--teal); font-weight: 600; }

.nav-links .nav-cta {
  background: var(--teal); color: var(--white) !important;
  padding: 9px 20px !important; border-radius: 9px !important;
  font-weight: 600 !important;
  position: relative; overflow: hidden;
}
.nav-links .nav-cta::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--green-light);
}
.nav-links .nav-cta:hover { background: var(--teal-light) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 6px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px; transition: all .3s;
}

.mobile-nav {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999;
  overflow-y: auto; padding: 16px;
  flex-direction: column; gap: 2px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block; padding: 14px 16px;
  font-size: 16px; font-weight: 500; color: var(--text-dark);
  border-radius: var(--r); border-bottom: 1px solid var(--border);
}
.mobile-nav a.m-active { color: var(--teal); font-weight: 700; }
.mobile-nav a:hover  { background: var(--teal-pale); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy); padding: 68px 0 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 70% at 85% 50%, rgba(10,155,138,.1) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(10,155,138,.4), rgba(40,168,95,.3), transparent);
}
.page-hero .page-icon { font-size: 48px; margin-bottom: 16px; display: block; }
.page-hero .eyebrow   { color: var(--teal-light); }
.page-hero .eyebrow::before { background: var(--teal-light); }
.page-hero h1 { color: var(--white); font-size: clamp(28px, 4vw, 52px); }
.page-hero p  { color: rgba(255,255,255,.5); font-size: 17px; line-height: 1.7; max-width: 580px; margin-top: 14px; }

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.35); margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,.35); transition: color .2s; }
.breadcrumb a:hover { color: var(--teal-light); }
.breadcrumb-sep { opacity: .3; }

/* ── CARDS ── */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--teal-border); }

/* ── CHECKLIST ── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.55;
}
.check-list li::before {
  content: '✓'; width: 22px; height: 22px;
  background: var(--teal); color: var(--white);
  border-radius: 50%; display: grid; place-items: center;
  font-size: 11px; font-weight: 700; flex-shrink: 0; margin-top: 1px;
}

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: var(--navy); border-radius: var(--r-lg); padding: 40px;
  position: relative; overflow: hidden;
}
.highlight-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--green), transparent);
}
.highlight-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 20px;
}

/* ── FORM ── */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-dark); }
.form-control {
  padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: var(--r); font-family: 'Outfit', sans-serif;
  font-size: 14px; background: var(--white);
  color: var(--text-dark); outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(10,155,138,.1);
}
textarea.form-control { resize: vertical; min-height: 110px; }
select.form-control { cursor: pointer; }

/* ── DIVIDER ── */
.section-divider { border: none; border-top: 2px dashed var(--border); margin: 0; }

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--navy); padding: 80px 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle 500px at 50% 50%, rgba(10,155,138,.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-strip::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--green), transparent);
}
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 52px; height: 52px; background: #25D366;
  border-radius: 50%; display: grid; place-items: center;
  font-size: 24px; z-index: 998;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); }

/* ── FOOTER ── */
.site-footer {
  background: var(--footer-bg); padding: 64px 0 28px;
  color: rgba(255,255,255,.35);
  border-top: 1px solid rgba(10,155,138,.2);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand-desc { font-size: 14px; line-height: 1.7; margin: 14px 0 20px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px; display: grid; place-items: center;
  font-size: 14px; transition: background .2s, border-color .2s;
}
.footer-social a:hover { background: var(--teal); border-color: var(--teal); }
.footer-col h4 {
  font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--white); margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.35); transition: color .2s; }
.footer-links a:hover { color: var(--teal-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px; font-size: 12px;
}
.footer-bottom .fl { color: var(--teal-light); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.a1 { animation: fadeUp .6s .1s both; }
.a2 { animation: fadeUp .6s .2s both; }
.a3 { animation: fadeUp .6s .3s both; }
.a4 { animation: fadeUp .6s .4s both; }
.a5 { animation: fadeUp .6s .5s both; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .section    { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
