/* ═══════════════════════════════════════════════════════════════
   DEVANTH INVISIBLE GRILLS — style.css  (Shared / Global)
   TO CHANGE COLORS: update the CSS variables below in :root {}
   ═══════════════════════════════════════════════════════════════ */

/* ── BRAND COLORS ─────────────────────────────────────────────── */
:root {
  --navy:         #0d1b3e;
  --navy-light:   #1a3a6e;
  --navy-mid:     #0d3060;
  --gold:         #c9962b;
  --gold-light:   #f0c55a;
  --gold-pale:    rgba(201,150,43,0.12);
  --teal:         #1a8f8f;
  --teal-light:   #3ec6c6;
  --green:        #5aad5a;
  --white:        #ffffff;
  --off-white:    #f8f9fc;
  --light-gray:   #e8ecf0;
  --text-dark:    #0d1b3e;
  --text-mid:     #3d4d6a;
  --text-light:   #7a8fa6;

  /* ── gradients ── */
  --grad-hero:  linear-gradient(135deg, #0d1b3e 0%, #1a3a6e 55%, #0d4060 100%);
  --grad-gold:  linear-gradient(135deg, #c9962b, #f0c55a, #c9962b);
  --grad-teal:  linear-gradient(135deg, #1a8f8f, #3ec6c6);

  /* ── shadows ── */
  --shadow-sm: 0 2px 8px rgba(13,27,62,.08);
  --shadow-md: 0 8px 24px rgba(13,27,62,.14);
  --shadow-lg: 0 20px 48px rgba(13,27,62,.20);
  --shadow-xl: 0 32px 72px rgba(13,27,62,.28);

  /* ── spacing / radius ── */
  --radius:    16px;
  --radius-sm: 10px;
  --radius-xs:  6px;

  /* ── paths (relative from root) ── */
  --img: images/;
}

/* ── RESET ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: 'DM Sans', sans-serif; color: var(--text-dark); background: var(--white); overflow-x: hidden; }
a     { text-decoration: none; color: inherit; }
img   { max-width: 100%; display: block; }
ul    { list-style: none; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }

/* ── TYPOGRAPHY ───────────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(26px, 3.5vw, 42px);
  color: var(--navy); margin-bottom: 16px;
}
.section-title span { color: var(--gold); }
.section-desc {
  font-size: 16px; color: var(--text-mid); line-height: 1.8; max-width: 640px;
}
.section-head-center { text-align: center; margin-bottom: 60px; }
.section-head-center .section-desc { margin: 0 auto; }

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn-primary {
  background: var(--grad-gold);
  color: var(--navy); font-weight: 700; font-size: 15px;
  padding: 14px 30px; border-radius: 50px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .3s; box-shadow: 0 4px 20px rgba(201,150,43,.4);
  cursor: pointer; border: none; white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,150,43,.55); }

.btn-outline {
  background: transparent;
  color: var(--navy); font-weight: 600; font-size: 15px;
  padding: 13px 28px; border-radius: 50px;
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--navy); transition: all .3s; cursor: pointer;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-outline-white {
  background: transparent; color: var(--white); font-weight: 600; font-size: 15px;
  padding: 13px 28px; border-radius: 50px;
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,.45); transition: all .3s; cursor: pointer;
}
.btn-outline-white:hover { border-color: var(--teal-light); color: var(--teal-light); }

.btn-dark {
  background: var(--navy); color: var(--gold); font-weight: 700; font-size: 15px;
  padding: 14px 30px; border-radius: 50px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .3s; box-shadow: 0 4px 16px rgba(13,27,62,.3); cursor: pointer; border: none;
}
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,27,62,.4); }

/* ── NAVBAR ───────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 5%;
  background: rgba(13,27,62,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,150,43,.2);
  transition: padding .3s, box-shadow .3s;
}
.navbar.scrolled { padding: 8px 5%; box-shadow: var(--shadow-md); }

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 48px; width: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.nav-logo-text .brand  { font-family: 'Playfair Display',serif; font-size: 18px; font-weight: 700; color: var(--gold); line-height: 1; }
.nav-logo-text .tag    { font-size: 10px; color: var(--teal-light); letter-spacing: 1.5px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: rgba(255,255,255,.85); font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: 8px; transition: all .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); background: rgba(201,150,43,.12); }
.nav-cta {
  background: var(--grad-gold) !important; color: var(--navy) !important;
  font-weight: 700 !important; padding: 10px 20px !important; border-radius: 50px !important;
}
.nav-cta:hover { transform: scale(1.05); }

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

/* ── MOBILE MENU ──────────────────────────────────────────────── */
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0; z-index: 999;
  background: rgba(13,27,62,.98); padding: 16px 5%;
  border-bottom: 2px solid var(--gold);
  flex-direction: column; gap: 4px;
  max-height: calc(100vh - 68px); overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,.9); padding: 12px 16px; border-radius: 8px;
  font-size: 16px; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.07); transition: all .2s;
}
.mobile-menu a:hover { color: var(--gold); background: rgba(201,150,43,.1); }
.mobile-menu .mob-cta { color: var(--gold) !important; font-weight: 700; }

/* ── CHECK LIST ───────────────────────────────────────────────── */
.check-list { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: var(--text-mid);
}
.check-list li::before {
  content: '✓'; color: var(--teal); font-weight: 700; font-size: 15px; flex-shrink: 0;
}

/* ── SPLIT LAYOUT ─────────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1200px; margin: 0 auto; }
.split.rev { direction: rtl; }
.split.rev > * { direction: ltr; }

.split-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-xl); position: relative; }
.split-img img { width: 100%; height: 100%; object-fit: cover; max-height: 460px; }
.split-img::after {
  content: ''; position: absolute; inset: -8px; border-radius: 20px;
  border: 2px solid rgba(201,150,43,.35); pointer-events: none; z-index: -1;
}

/* ── SECTION WRAPPER ──────────────────────────────────────────── */
.section { padding: 88px 5%; }
.section-bg { background: var(--off-white); }

/* ── BADGE STRIP ──────────────────────────────────────────────── */
.badge-strip {
  background: var(--off-white); padding: 32px 5%;
  display: flex; justify-content: center; flex-wrap: wrap; gap: 14px;
}
.badge-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid var(--light-gray);
  border-radius: 50px; padding: 10px 20px;
  font-size: 14px; font-weight: 600; color: var(--navy);
  box-shadow: var(--shadow-sm); transition: all .25s;
}
.badge-item:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.badge-item .ico { color: var(--gold); font-size: 18px; }

/* ── CTA STRIP ────────────────────────────────────────────────── */
.cta-strip { background: var(--grad-gold); padding: 72px 5%; text-align: center; }
.cta-strip h2 { font-size: clamp(24px,3.5vw,38px); color: var(--navy); margin-bottom: 12px; }
.cta-strip p  { font-size: 16px; color: rgba(13,27,62,.75); margin-bottom: 28px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── FLOATING BUTTONS ─────────────────────────────────────────── */
.float-buttons { position: fixed; right: 20px; bottom: 80px; z-index: 900; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.float-group { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; overflow: hidden; max-height: 0; transition: max-height .35s ease; }
.float-group.open { max-height: 260px; }
.float-btn {
  display: flex; align-items: center; gap: 10px; border-radius: 50px;
  padding: 10px 18px 10px 10px; font-size: 14px; font-weight: 600; color: var(--white);
  text-decoration: none; box-shadow: var(--shadow-md); transition: all .25s; white-space: nowrap;
}
.float-btn:hover { transform: translateX(-4px); }
.float-btn-icon { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; background: rgba(255,255,255,.2); }
.float-call { background: #1877f2; }
.float-wa   { background: #25d366; }
.float-mail { background: var(--teal); }
.float-main-btn {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--grad-gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; cursor: pointer;
  box-shadow: 0 4px 16px rgba(201,150,43,.45);
  transition: transform .3s; border: none;
  animation: pulse-ring 2.5s infinite;
}
.float-main-btn:hover { transform: scale(1.12); }

/* ── LIGHTBOX ─────────────────────────────────────────────────── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 3000;
  background: rgba(0,0,0,.92); align-items: center; justify-content: center; padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img  { max-width: 90vw; max-height: 85vh; border-radius: 12px; }
.lightbox-close { position: absolute; top: 20px; right: 24px; color: var(--white); font-size: 36px; cursor: pointer; border: none; background: none; line-height: 1; opacity: .8; transition: opacity .2s; }
.lightbox-close:hover { opacity: 1; }

/* ── BREADCRUMB ───────────────────────────────────────────────── */
.breadcrumb {
  padding: 14px 5%; background: var(--off-white); border-bottom: 1px solid var(--light-gray);
  font-size: 13px; color: var(--text-light); display: flex; align-items: center; gap: 8px;
}
.breadcrumb a { color: var(--text-mid); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--navy); font-weight: 600; }

/* ── FOOTER ───────────────────────────────────────────────────── */
footer { background: var(--navy); color: var(--white); padding: 60px 5% 32px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px;
  max-width: 1200px; margin: 0 auto; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand img  { height: 56px; width: 56px; border-radius: 50%; object-fit: cover; margin-bottom: 14px; border: 2px solid var(--gold); }
.footer-brand p    { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.7; margin-top: 10px; max-width: 270px; }
.footer-col h4     { font-family: 'Playfair Display',serif; font-size: 15px; color: var(--gold); margin-bottom: 16px; }
.footer-col ul li  { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.f-contact { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; }
.f-contact .ico { font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.f-contact span, .f-contact a { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.5; }
.f-contact a:hover { color: var(--gold); }
.footer-bottom { max-width: 1200px; margin: 28px auto 0; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,.4); flex-wrap: wrap; gap: 8px; }

/* ── REVEAL ANIMATIONS ────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity .65s ease, transform .65s ease; }
.reveal-right { opacity: 0; transform: translateX(40px);  transition: opacity .65s ease, transform .65s ease; }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── KEYFRAMES ────────────────────────────────────────────────── */
@keyframes pulse-ring {
  0%  { box-shadow: 0 0 0 0 rgba(201,150,43,.45); }
  70% { box-shadow: 0 0 0 14px rgba(201,150,43,0); }
  100%{ box-shadow: 0 0 0 0 rgba(201,150,43,0); }
}
@keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-12px); } }
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .split, .split.rev { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .navbar { padding: 10px 5%; }
  .section { padding: 64px 5%; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .float-btn { padding: 8px 14px 8px 8px; font-size: 13px; }
  .float-btn-icon { width: 28px; height: 28px; font-size: 14px; }
}


.hws-pill-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 50px;
  text-decoration: none;
  color: #ffffff;
  font-size: 13px;
  font-family: sans-serif;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.hws-pill-badge:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #f1c40f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hws-pill-badge strong {
  color: #f1c40f; /* Gold emphasis for your brand */
  font-weight: 700;
}