/* ==========================================================================
   ASIA BOOK OF RECORDS - BILLION-DOLLAR INTERNATIONAL FLAGSHIP STYLESHEET
   Awwwards / Apple / Stripe Grade Design System (Vanilla CSS)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & VARIABLES
   -------------------------------------------------------------------------- */
#page-loader,
#loader-placeholder {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

:root {
  /* Official Palette */
  --primary: #E67E22;
  --accent: #FFB347;
  --bg-white: #FFFFFF;
  --bg-light: #FFF8F2;
  --dark: #202020;
  --grey: #666666;
  --border-light: rgba(230, 126, 34, 0.18);
  --border-subtle: rgba(0, 0, 0, 0.08);

  /* Gradients */
  --gradient-saffron: linear-gradient(135deg, #FFB347 0%, #E67E22 100%);
  --gradient-dark: linear-gradient(180deg, #181818 0%, #202020 100%);
  --gradient-glass: rgba(255, 255, 255, 0.85);

  /* Shadows & Glows */
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.14);
  --shadow-saffron: 0 10px 25px rgba(230, 126, 34, 0.28);

  /* Typography */
  --font-main: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', 'Poppins', sans-serif;

  /* Specs */
  --navbar-height: 80px;
  --container-width: 1320px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;

  /* Easing */
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s var(--ease-smooth);
}

[data-theme="dark"] {
  --bg-white: #14171A;
  --bg-light: #1A1E23;
  --dark: #F5F7FA;
  --grey: #A0AEC0;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --gradient-glass: rgba(25, 30, 38, 0.85);
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  font-size: 16px;
  color: var(--dark);
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }
img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.section-tag {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 8px;
  display: inline-block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
}

.section-title span {
  color: var(--primary);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--grey);
  margin-top: 12px;
  line-height: 1.6;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  background: var(--gradient-saffron);
  border-radius: 50px;
  box-shadow: var(--shadow-saffron);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(230, 126, 34, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  transition: all var(--transition-normal);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   SECTION 1: NAVBAR
   -------------------------------------------------------------------------- */


#header-placeholder {
  position: relative;
  z-index: 99999;
  display: block;
  width: 100%;
}

.awwwards-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  z-index: 99999;
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border-bottom: 2px solid #E67E22;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transition: all var(--transition-normal);
}


[data-theme="dark"] .awwwards-navbar {
  background: #12161B;
  border-bottom-color: #E67E22;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.45);
}

[data-theme="dark"] .brand-name,
[data-theme="dark"] .nav-link,
[data-theme="dark"] .action-icon-btn,
[data-theme="dark"] .btn-login {
  color: #F5F7FA !important;
}

[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] .nav-link.active {
  color: #FFB347 !important;
  background: rgba(230, 126, 34, 0.18) !important;
}

[data-theme="dark"] .action-icon-btn {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .mega-menu {
  background: rgba(20, 25, 32, 0.98);
  border-color: rgba(230, 126, 34, 0.35);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

[data-theme="dark"] .mega-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .mega-title { color: #F5F7FA; }
[data-theme="dark"] .mega-desc { color: #A0AEC0; }




.nav-container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  height: 100%;
  padding: 4px 0;
}

.logo-glass-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(230, 126, 34, 0.1);
  border: 1px solid rgba(230, 126, 34, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.logo-glass-badge img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}

.brand-typography {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.15;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.01em;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.brand-subtitle {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.05em;
  margin-top: 2px;
  white-space: nowrap;
}


.nav-menu { display: flex; align-items: center; list-style: none; gap: 4px; }

.nav-link {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  border-radius: 50px;
  transition: all var(--transition-normal);
}

.nav-link:hover, .nav-link.active { color: var(--primary) !important; background: rgba(230, 126, 34, 0.1); }



.nav-actions { display: flex; align-items: center; gap: 10px; }

.action-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-menu-hover);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 0.95rem;
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
  outline: none;
}

.action-icon-btn:hover {
  background: rgba(230, 126, 34, 0.12);
  border-color: var(--border-brand);
  color: var(--primary);
  transform: translateY(-1px);
}

.key-badge {
  position: absolute;
  bottom: -4px;
  right: -4px;
  background: var(--dark);
  color: #FFFFFF;
  font-size: 8px;
  font-weight: 800;
  padding: 1px 4px;
  border-radius: 4px;
  line-height: 1;
  pointer-events: none;
}

.btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  border-radius: 50px;
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.btn-login:hover {
  background: rgba(230, 126, 34, 0.08);
  color: var(--primary);
}

.btn-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF !important;
  background: var(--gradient-saffron);
  border-radius: 50px;
  text-decoration: none;
  box-shadow: var(--shadow-saffron);
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.btn-apply:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 126, 34, 0.45);
  color: #FFFFFF !important;
}

.btn-apply i { font-size: 0.82rem; transition: transform 0.25s ease; }
.btn-apply:hover i { transform: translateX(4px); }



/* SHOPIFY MOBILE DRAWER */
.drawer-backdrop-overlay {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.55); backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px); z-index: 15000;
  display: none; opacity: 0; visibility: hidden; pointer-events: none; transition: all var(--transition-normal);
}

.drawer-backdrop-overlay.active { display: block; opacity: 1; visibility: visible; pointer-events: auto; }

.awwwards-mobile-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 85vw;
  max-width: 400px;
  height: 100vh;
  z-index: 16000;
  background: var(--bg-glass-card-hover);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border-left: 1.5px solid var(--border-brand);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.25);
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform var(--transition-normal), opacity var(--transition-normal), visibility var(--transition-normal);
  overflow-y: auto;
  padding: 75px 20px 24px;
}

.awwwards-mobile-drawer.active {
  display: flex;
  flex-direction: column;
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


/* SEARCH MODAL */
.search-modal-overlay {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.65); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px); z-index: 20000;
  display: none; align-items: flex-start; justify-content: center; padding-top: 90px;
  opacity: 0; visibility: hidden; pointer-events: none; transition: all var(--transition-normal);
}

.search-modal-overlay.active { display: flex; opacity: 1; visibility: visible; pointer-events: auto; }

/* SEARCH MODAL ENHANCEMENTS */
.search-modal-card {
  width: 90%;
  max-width: 650px;
  background: #1E293B;
  border: 1.5px solid rgba(230, 126, 34, 0.4);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 12px 18px;
}

.search-input-wrapper i {
  color: #E67E22;
  font-size: 1.2rem;
}

.search-input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 500;
  font-family: inherit;
}

.search-esc-tag {
  background: rgba(255, 255, 255, 0.1);
  color: #94A3B8;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
}

.search-quick-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.quick-tag-label {
  font-size: 0.8rem;
  color: #94A3B8;
  font-weight: 600;
}

.quick-tag {
  background: rgba(230, 126, 34, 0.12);
  border: 1px solid rgba(230, 126, 34, 0.3);
  color: #F97316;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.quick-tag:hover {
  background: #E67E22;
  color: #FFFFFF;
  transform: translateY(-1px);
}

/* LIVE SEARCH RESULTS LIST */
.search-live-results {
  max-height: 380px;
  overflow-y: auto;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 4px;
}

.search-live-results::-webkit-scrollbar {
  width: 6px;
}
.search-live-results::-webkit-scrollbar-thumb {
  background: rgba(230, 126, 34, 0.4);
  border-radius: 10px;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.search-result-item:hover, .search-result-item.active {
  background: rgba(230, 126, 34, 0.18);
  border-color: rgba(230, 126, 34, 0.5);
  transform: translateX(4px);
}

.search-item-img {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-grow: 1;
}

.search-item-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
}

.search-item-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: #F97316;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.search-no-results {
  padding: 24px;
  text-align: center;
  color: #94A3B8;
  font-size: 0.95rem;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition-normal);
}

.awwwards-navbar.scrolled .icon-btn {
  background: var(--bg-pill);
  border-color: var(--border-subtle);
  color: var(--dark);
}

/* --------------------------------------------------------------------------
   SECTION 2: SHOPIFY-STYLE ULTRA-CLEAN ELEGANT HERO SECTION
   -------------------------------------------------------------------------- */
.shopify-hero-section {
  position: relative;
  padding: 60px 0 50px 0;
  background: #0B0F15;
  color: #FFFFFF;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.shopify-hero-container {
  max-width: var(--container-width, 1240px);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* TOP HEADER BLOCK */
.shopify-hero-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.shopify-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230, 126, 34, 0.12);
  border: 1px solid rgba(230, 126, 34, 0.35);
  color: #F97316;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.shopify-hero-title {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.shopify-hero-title .highlight-text {
  background: linear-gradient(135deg, #E67E22, #F75023);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.shopify-hero-subtext {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: #94A3B8;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto 30px auto;
}

.shopify-hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.shopify-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #E67E22, #F75023);
  color: #FFFFFF !important;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 34px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(230, 126, 34, 0.4);
  text-decoration: none;
  transition: all 0.3s ease;
}

.shopify-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(230, 126, 34, 0.6);
}

.shopify-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF !important;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.shopify-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(230, 126, 34, 0.5);
  transform: translateY(-2px);
}

/* SHOPIFY MEDIA SHOWCASE GRID */
.shopify-hero-media-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  width: 100%;
}

.shopify-media-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.shopify-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.shopify-media-card:hover img {
  transform: scale(1.04);
}

.shopify-media-card.main-banner {
  height: 380px;
}

.shopify-side-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 380px;
}

.shopify-media-card.side-card {
  height: 180px;
}

.shopify-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.2) 60%, transparent 100%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.shopify-card-overlay.compact {
  padding: 16px;
}

.shopify-card-tag {
  color: #F97316;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.shopify-card-title {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.25;
  margin: 0;
}

.shopify-card-overlay.compact .shopify-card-title {
  font-size: 1rem;
}

.shopify-card-desc {
  color: #CBD5E1;
  font-size: 0.85rem;
  margin-top: 4px;
  margin-bottom: 0;
}

/* TRUST STRIP */
.shopify-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 24px;
  border-radius: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(230, 126, 34, 0.15);
  color: #E67E22;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.trust-info {
  display: flex;
  flex-direction: column;
}

.trust-info strong {
  color: #FFFFFF;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 0.95rem;
  font-weight: 800;
}

.trust-info span {
  color: #94A3B8;
  font-size: 0.75rem;
}

@media (max-width: 991px) {
  .shopify-hero-media-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .shopify-media-card.main-banner {
    height: 280px;
  }
  .shopify-side-cards {
    flex-direction: row;
    height: auto;
  }
  .shopify-media-card.side-card {
    flex: 1;
    height: 160px;
  }
  .shopify-trust-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 576px) {
  .shopify-hero-section {
    padding: 40px 0 30px 0;
  }
  .shopify-hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .shopify-btn-primary, .shopify-btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .shopify-side-cards {
    flex-direction: column;
  }
  .shopify-trust-strip {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.abr-hero-glow-left {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.22) 0%, rgba(11, 15, 21, 0) 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.abr-hero-glow-right {
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 179, 71, 0.18) 0%, rgba(11, 15, 21, 0) 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.abr-hero-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 2;
  mask-image: radial-gradient(circle at center, black 50%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at center, black 50%, transparent 100%);
}

.abr-hero-container {
  position: relative;
  z-index: 10;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.abr-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.abr-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.abr-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(230, 126, 34, 0.15);
  border: 1px solid rgba(230, 126, 34, 0.4);
  color: #FFB347;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.abr-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #E67E22;
  box-shadow: 0 0 10px #E67E22;
  animation: pulseDot 1.8s infinite ease-in-out;
}

@keyframes pulseDot {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

.abr-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 900;
  line-height: 1.12;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.abr-hero-title span {
  background: var(--gradient-saffron);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.abr-hero-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 580px;
}

.abr-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF !important;
  background: var(--gradient-saffron);
  border-radius: 50px;
  box-shadow: var(--shadow-saffron);
  transition: all var(--transition-normal);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(230, 126, 34, 0.45);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF !important;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  transition: all var(--transition-normal);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.abr-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.abr-stat-val {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.abr-stat-lbl {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

/* RIGHT CAROUSEL SHOWCASE */
.abr-hero-showcase {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.abr-showcase-glass-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(230, 126, 34, 0.3);
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.abr-carousel-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: heroMarquee 35s linear infinite;
}

.abr-carousel-track:hover {
  animation-play-state: paused;
}

.abr-hero-slide-card {
  width: 260px;
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.abr-hero-slide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.abr-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.25) 60%, transparent 100%);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.abr-slide-tag {
  align-self: flex-start;
  background: var(--gradient-saffron);
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.abr-slide-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.25;
}

.abr-hero-floating-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(230, 126, 34, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 8px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.floating-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E67E22, #F75023);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.floating-badge-text {
  display: flex;
  flex-direction: column;
}

.floating-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
}

.floating-sub {
  font-size: 0.65rem;
  color: #94A3B8;
  font-weight: 600;
}

@keyframes heroMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 991px) {
  .abr-hero-master {
    padding: 85px 0 45px 0;
    text-align: center;
  }
  .abr-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .abr-hero-content {
    align-items: center;
  }
  .abr-badge-pill {
    margin: 0 auto 18px auto;
  }
  .abr-hero-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 16px;
  }
  .abr-hero-subtitle {
    font-size: 0.95rem;
    margin: 0 auto 26px auto;
    text-align: center;
  }
  .abr-hero-actions {
    justify-content: center;
    width: 100%;
    gap: 12px;
    margin-bottom: 28px;
  }
  .btn-hero-primary, .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 0.9rem;
  }
  .abr-hero-showcase {
    margin-top: 10px;
  }
  .abr-showcase-glass-card {
    padding: 10px;
    border-radius: 20px;
  }
  .abr-carousel-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    animation: none !important;
    padding-bottom: 8px;
  }
  .abr-carousel-track::-webkit-scrollbar {
    display: none;
  }
  .abr-hero-slide-card {
    scroll-snap-align: center;
    width: 230px;
    height: 310px;
  }
  .abr-hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding-top: 20px;
    margin-top: 10px;
  }
  .abr-stat-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px;
    border-radius: 14px;
  }
}

@media (max-width: 576px) {
  .abr-hero-floating-badge {
    top: 12px;
    right: 12px;
    padding: 6px 12px;
  }
  .floating-badge-icon {
    width: 26px;
    height: 26px;
    font-size: 0.75rem;
  }
  .floating-title {
    font-size: 0.72rem;
  }
  .floating-sub {
    font-size: 0.6rem;
  }
}

/* --------------------------------------------------------------------------
   SECTION 2: 100VH FULLSCREEN HERO
   -------------------------------------------------------------------------- */
.hero-100vh {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  background: #0F1215;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slider-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slider-bg.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(15, 18, 21, 0.55) 0%, rgba(15, 18, 21, 0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #FFFFFF;
  max-width: 900px;
  padding: 0 20px;
  margin-top: 40px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 50px;
  background: rgba(230, 126, 34, 0.2);
  border: 1px solid var(--primary);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title span { background: var(--gradient-saffron); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  margin-bottom: 36px;
}

.hero-counters-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(18, 22, 28, 0.82);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-light);
  padding: 20px 0;
  z-index: 15;
}

.hero-counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  color: #FFFFFF;
}

.h-counter-val {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary);
}

.h-counter-lbl { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; color: rgba(255, 255, 255, 0.7); }

/* --------------------------------------------------------------------------
   SECTION 3: WHY CHOOSE US (BENTO GRID)
   -------------------------------------------------------------------------- */
.bento-six-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bento-feature-card {
  background: var(--gradient-glass);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.bento-feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.b-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(230, 126, 34, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 22px;
}

.bento-feature-card:hover .b-icon-box { background: var(--gradient-saffron); color: #FFFFFF; }
.b-title { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.b-desc { font-size: 0.9rem; color: var(--grey); line-height: 1.6; }

/* --------------------------------------------------------------------------
   SECTION 4: FEATURED MEMBERS (SLIDER)
   -------------------------------------------------------------------------- */
.horizontal-slider-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  -webkit-overflow-scrolling: touch;
}

.horizontal-slider-track::-webkit-scrollbar { height: 6px; }
.horizontal-slider-track::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

.member-slider-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: var(--bg-white);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.member-slider-card:hover { transform: translateY(-6px); border-color: var(--primary); box-shadow: var(--shadow-md); }
.member-thumb { height: 260px; width: 100%; overflow: hidden; }
.member-thumb img { width: 100%; height: 100%; object-fit: cover; }
.member-info { padding: 22px; }
.member-name { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 800; color: var(--dark); }
.member-country { font-size: 0.8rem; font-weight: 700; color: var(--primary); margin-top: 2px; }
.member-achieve { font-size: 0.85rem; color: var(--grey); margin-top: 8px; line-height: 1.4; }

/* --------------------------------------------------------------------------
   SECTION 5 & 6: LATEST RECORDS & AWARDS
   -------------------------------------------------------------------------- */
.grid-three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.record-card-lux {
  background: var(--bg-white);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.record-card-lux:hover { transform: translateY(-6px); border-color: var(--primary); box-shadow: var(--shadow-md); }
.rec-img-holder {
  height: 210px; position: relative; overflow: hidden;
}

.mega-members { width: 580px; max-width: 90vw; display: block; padding: 20px; }
.mega-awards { width: 580px; max-width: 90vw; display: block; padding: 20px; }

.mega-members-items, .mega-awards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.mega-awards-left { display: flex; flex-direction: column; }

.mega-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--bg-glass-card);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.mega-card:hover {
  background: var(--bg-glass-card-hover);
  border-color: var(--border-brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.mega-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--bg-menu-hover);
  border: 1px solid var(--border-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--brand-primary);
  flex-shrink: 0;
}

.mega-card:hover .mega-icon-box { background: var(--brand-gradient); color: #FFFFFF; }
.mega-content { display: flex; flex-direction: column; }
.mega-title { font-family: var(--font-heading); font-size: 0.92rem; font-weight: 700; color: var(--text-dark); display: flex; align-items: center; justify-content: space-between; }
.mega-arrow { font-size: 0.75rem; color: var(--brand-primary); margin-left: 6px; transition: transform 0.2s ease; }
.mega-card:hover .mega-arrow { transform: translateX(4px); }
.mega-desc { font-size: 0.8rem; color: var(--text-muted); margin-top: 3px; line-height: 1.4; }

.mega-showcase-panel {
  background: var(--bg-glass-card-hover);
  border: 1.5px solid var(--border-brand);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.showcase-thumb-wrapper {
  width: 100%;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  margin-bottom: 12px;
  background: #000;
}

.showcase-thumb-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.showcase-badge-tag { position: absolute; top: 8px; left: 8px; background: var(--brand-gradient); color: #FFFFFF; font-size: 9px; font-weight: 800; padding: 3px 8px; border-radius: 20px; text-transform: uppercase; }
.showcase-live-title { font-family: var(--font-heading); font-size: 0.98rem; font-weight: 800; color: var(--text-dark); margin-bottom: 4px; }
.showcase-live-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; margin-bottom: 12px; }
.showcase-live-btn { font-size: 0.82rem; font-weight: 700; color: var(--brand-primary); display: inline-flex; align-items: center; gap: 6px; margin-top: auto; }

.rec-img-holder img { width: 100%; height: 100%; object-fit: cover; }
.rec-cat-badge { position: absolute; top: 12px; left: 12px; background: var(--gradient-saffron); color: #FFFFFF; font-size: 0.72rem; font-weight: 800; padding: 4px 10px; border-radius: 20px; }
.rec-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.rec-date { font-size: 0.78rem; color: var(--grey); margin-bottom: 6px; }
.rec-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800; color: var(--dark); margin-bottom: 12px; }

/* --------------------------------------------------------------------------
   SECTION 7: CATEGORIES BENTO GRID
   -------------------------------------------------------------------------- */
.categories-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cat-tile-card {
  background: var(--bg-light);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: all var(--transition-normal);
}

.cat-tile-card:hover { background: var(--gradient-saffron); color: #FFFFFF !important; transform: translateY(-4px); }
.cat-tile-card:hover .cat-tile-title { color: #FFFFFF !important; }
.cat-tile-icon { font-size: 1.8rem; color: var(--primary); margin-bottom: 12px; }
.cat-tile-card:hover .cat-tile-icon { color: #FFFFFF; }
.cat-tile-title { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 800; color: var(--dark); }

/* --------------------------------------------------------------------------
   SECTION 8: ANIMATED TIMELINE
   -------------------------------------------------------------------------- */
.timeline-workflow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
}

.t-step-item {
  background: var(--bg-white);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  position: relative;
}

.t-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gradient-saffron);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.t-name { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 800; color: var(--dark); }

/* --------------------------------------------------------------------------
   SECTION 10: MEDIA COVERAGE LOGOS
   -------------------------------------------------------------------------- */
.media-ticker-flex {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.media-logo-item { height: 60px; filter: grayscale(100%); opacity: 0.7; transition: all var(--transition-normal); }
.media-logo-item:hover { filter: grayscale(0%); opacity: 1; }

/* --------------------------------------------------------------------------
   SECTION 12: MASONRY PINTEREST GALLERY
   -------------------------------------------------------------------------- */
.masonry-grid {
  column-count: 3;
  column-gap: 20px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.masonry-item img { width: 100%; display: block; border-radius: var(--radius-md); transition: transform 0.4s ease; }
.masonry-item:hover img { transform: scale(1.04); }

/* --------------------------------------------------------------------------
   SECTION 15: FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-wrap { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-box { background: var(--bg-white); border: 1.5px solid var(--border-subtle); border-radius: var(--radius-md); overflow: hidden; }
.faq-quest { padding: 20px 24px; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-ans { display: none; padding: 0 24px 20px; color: var(--grey); line-height: 1.6; border-top: 1px solid var(--border-subtle); padding-top: 14px; }
.faq-box.active .faq-ans { display: block; }

/* --------------------------------------------------------------------------
   SECTION 16 & 17: CTA BANNER & FOOTER
   -------------------------------------------------------------------------- */
.cta-banner {
  background: var(--gradient-saffron);
  color: #FFFFFF;
  text-align: center;
  border-radius: 32px;
  padding: 80px 30px;
}

.master-abr-footer {
  background: linear-gradient(135deg, #0B1A4A 0%, #152865 100%) !important;
  color: #FFFFFF !important;
  font-family: 'Poppins', sans-serif;
  border-top: 3px solid #FFB703;
}
.master-abr-footer a {
  color: #E2E8F0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.master-abr-footer a:hover {
  color: #FFB703 !important;
}
.abr-footer-topbar {
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 0;
}
.abr-footer-main-body {
  padding: 60px 0 40px;
}
.abr-f-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFB703 !important;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-main {
  background: #0B1A4A;
  color: #FFFFFF;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.f-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800; margin-bottom: 20px; color: var(--primary); }
.f-links { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 0.9rem; color: rgba(255, 255, 255, 0.7); }
.f-links a:hover { color: var(--primary); }

/* --------------------------------------------------------------------------
   MOBILE RESPONSIVE RULES (2-COLUMN GRID SYSTEM)
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .bento-six-grid, .grid-three-col, .categories-bento-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-workflow { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry-grid { column-count: 2; }
}

}

/* ==========================================================================
   MOBILE APP-STYLE BOTTOM STICKY DOCK BAR & GLASS DRAWER
   ========================================================================== */
.mobile-app-dock {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: 65px;
    background: rgba(11, 26, 74, 0.95);
    backdrop-filter: blur(15px);
    border-top: 2px solid #FFB703;
    z-index: 99990;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.3);
}

@media (max-width: 991px) {
    .mobile-app-dock { display: flex; }
    body { padding-bottom: 65px !important; }
}

.dock-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    background: none;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    gap: 3px;
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease;
}

.dock-item i {
    font-size: 1.15rem;
}

.dock-item:active {
    transform: scale(0.92);
}

.dock-item.dock-verify i {
    color: #FFB703;
}

.dock-item.dock-apply {
    color: #F05A28;
    font-weight: 700;
}

.dock-item.dock-apply i {
    color: #F05A28;
}

/* MOBILE DRAWER SHEET */
.mobile-drawer-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(11, 26, 74, 0.85);
    backdrop-filter: blur(12px);
    z-index: 99999;
}

.mobile-drawer-overlay.open {
    display: block;
}

.mobile-drawer-card {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 85%;
    max-width: 380px;
    background: #0B1A4A;
    border-left: 2px solid #FFB703;
    padding: 30px 22px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: -15px 0 40px rgba(0,0,0,0.4);
}

.drawer-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.drawer-menu-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.drawer-menu-list a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 10px;
    transition: background 0.2s ease;
}

.drawer-menu-list a:hover {
    background: rgba(255,255,255,0.08);
}

.drawer-footer {
    margin-top: auto;
    padding-top: 20px;
}

.drawer-wa-btn {
    background: #25D366;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* ==========================================================================
   DR. ANNU KRISHNA BHARDWAJ SPOTLIGHT SECTION (WHITE THEME & LOGO COLORS)
   ========================================================================== */
.abr-leader-spotlight {
  position: relative;
  background: #FFFFFF !important;
  padding: 75px 0;
  overflow: hidden;
  border-bottom: 1.5px solid #F1F5F9;
}

.abr-spotlight-glow-bg {
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.08) 0%, rgba(247, 80, 35, 0.04) 50%, transparent 70%);
  pointer-events: none;
  filter: blur(50px);
}

.abr-spotlight-card {
  background: #FFFFFF !important;
  border: 2px solid rgba(230, 126, 34, 0.25) !important;
  border-radius: 28px !important;
  padding: 48px !important;
  box-shadow: 0 15px 45px rgba(230, 126, 34, 0.08), 0 4px 15px rgba(11, 26, 74, 0.04) !important;
  position: relative;
  z-index: 5;
}

.abr-spotlight-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 48px;
  align-items: center;
}

/* LEFT COLUMN: PORTRAIT & MINI STATS */
.abr-spotlight-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.abr-portrait-wrapper {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid #E67E22 !important;
  box-shadow: 0 12px 30px rgba(230, 126, 34, 0.18) !important;
}

.abr-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.5s ease;
}

.abr-spotlight-card:hover .abr-portrait-img {
  transform: scale(1.04);
}

.abr-portrait-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(11, 26, 74, 0.92) !important;
  backdrop-filter: blur(12px);
  border: 1px solid #E67E22 !important;
  padding: 10px 16px;
  border-radius: 12px;
  color: #FFFFFF !important;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.abr-portrait-badge i {
  color: #FFB703 !important;
  font-size: 1.1rem;
}

.abr-spotlight-mini-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.abr-mini-stat {
  background: #FFF8F2 !important;
  border: 1.5px solid rgba(230, 126, 34, 0.2) !important;
  padding: 14px 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.abr-mini-stat i {
  font-size: 1.3rem;
  color: #FFFFFF !important;
  background: var(--gradient-saffron) !important;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3) !important;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #0B1A4A !important;
  display: block;
}

.stat-lbl {
  font-size: 0.74rem;
  color: #64748B !important;
  font-weight: 600;
  line-height: 1.2;
}

/* RIGHT COLUMN: CONTENT & ACTIONS */
.abr-spotlight-content {
  display: flex;
  flex-direction: column;
}

.Crimson-pill {
  background: rgba(230, 126, 34, 0.12) !important;
  border: 1px solid #E67E22 !important;
  color: #E67E22 !important;
  align-self: flex-start;
  font-weight: 800 !important;
}

.abr-spotlight-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: #0B1A4A !important;
  line-height: 1.2;
  margin: 14px 0 10px 0;
}

.abr-spotlight-title span {
  background: var(--gradient-saffron);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.abr-spotlight-subtitle {
  font-size: 1.02rem;
  color: #475569 !important;
  line-height: 1.6;
  margin-bottom: 24px;
}

.abr-spotlight-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.spotlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #F8FAFC !important;
  border: 1.5px solid #E2E8F0 !important;
  padding: 14px 18px;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.spotlight-item:hover {
  background: #FFF8F2 !important;
  border-color: #E67E22 !important;
  transform: translateX(5px);
  box-shadow: 0 6px 18px rgba(230, 126, 34, 0.1) !important;
}

.spotlight-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--gradient-saffron) !important;
  color: #FFFFFF !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(230, 126, 34, 0.25) !important;
}

.spotlight-info h4 {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  color: #0B1A4A !important;
  margin-bottom: 3px;
}

.spotlight-info p {
  font-size: 0.86rem;
  color: #64748B !important;
  line-height: 1.4;
  margin: 0;
}

.abr-spotlight-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-spotlight-primary {
  background: var(--gradient-saffron) !important;
  color: #FFFFFF !important;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.35) !important;
  transition: all 0.3s ease;
}

.btn-spotlight-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(230, 126, 34, 0.5) !important;
  color: #FFFFFF !important;
}

.btn-spotlight-secondary {
  background: #0B1A4A !important;
  border: 1.5px solid #0B1A4A !important;
  color: #FFFFFF !important;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-spotlight-secondary:hover {
  background: #1E3A8A !important;
  border-color: #1E3A8A !important;
  transform: translateY(-3px);
  color: #FFFFFF !important;
  box-shadow: 0 6px 20px rgba(11, 26, 74, 0.25) !important;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .abr-spotlight-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .abr-spotlight-card {
    padding: 30px 24px;
  }
  .abr-portrait-wrapper {
    height: 320px;
  }
}

/* ==========================================================================
   SLEEK COMPACT FLOATING WHATSAPP BUTTON (+91 88067 69991)
   ========================================================================== */
.abr-whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #FFFFFF !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  z-index: 12000;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.abr-whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.65);
  color: #FFFFFF !important;
}

.whatsapp-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: whatsappPulse 2s infinite;
  pointer-events: none;
}

@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 0.8; }
  70% { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

.whatsapp-tooltip {
  position: absolute;
  right: 66px;
  background: #0F172A;
  color: #FFFFFF;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(10px);
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  border-width: 5px 0 5px 5px;
  border-style: solid;
  border-color: transparent transparent transparent #0F172A;
}

.abr-whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* ADJUST BACK TO TOP BUTTON SO THEY SIT NEATLY ABOVE WHATSAPP */
.back-to-top {
  bottom: 88px !important;
  right: 26px !important;
  width: 42px !important;
  height: 42px !important;
}

@media (max-width: 576px) {
  .abr-whatsapp-float {
    bottom: 20px;
    right: 16px;
    width: 50px;
    height: 50px;
    font-size: 1.7rem;
  }
  .back-to-top {
    bottom: 78px !important;
    right: 18px !important;
    width: 38px !important;
    height: 38px !important;
  }
}
.master-abr-footer {
  position: relative;
  background: #FFFFFF !important;
  color: #1e293b;
  font-family: var(--font-main);
  border-top: 1px solid #e2e8f0;
  overflow: hidden;
  margin-top: 40px;
}

.abr-footer-glow-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3.5px;
  background: linear-gradient(90deg, #F05A28, #FFB703, #0B1A4A, #F05A28);
  background-size: 200% 100%;
  animation: glowMove 4s linear infinite;
  z-index: 10;
}

@keyframes glowMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.abr-footer-topbar {
  background: #0B1A4A !important;
  border-bottom: 2px solid #FFB703 !important;
  padding: 45px 0 !important;
}

.abr-newsletter-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1.5px solid #FFB703 !important;
  border-radius: 20px;
  padding: 30px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

.abr-news-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #FFB703 !important;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.abr-news-title {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  line-height: 1.25;
  margin-bottom: 4px;
}

.abr-news-desc {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 0.92rem !important;
}

.abr-news-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 580px;
  line-height: 1.5;
}

.abr-newsletter-form {
  flex-shrink: 0;
  width: 420px;
  max-width: 100%;
}

.abr-news-input-wrap {
  display: flex;
  align-items: center;
  background: rgba(10, 14, 20, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 6px 8px 6px 18px;
  transition: all 0.3s ease;
}

.abr-news-input-wrap:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(230, 126, 34, 0.3);
}

.abr-news-input-wrap i {
  color: var(--primary);
  font-size: 1rem;
  margin-right: 10px;
}

.abr-news-input-wrap input {
  background: transparent;
  border: none;
  outline: none;
  color: #FFFFFF;
  font-size: 0.9rem;
  width: 100%;
}

.abr-news-input-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.btn-news-submit {
  background: var(--gradient-saffron);
  color: #FFFFFF;
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.btn-news-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(230, 126, 34, 0.4);
}

/* MAIN FOOTER GRID (BRAND LOGO ROYAL NAVY COLOR) */
.abr-footer-main-body {
  background: linear-gradient(135deg, #0B1A4A 0%, #152865 50%, #0B1A4A 100%) !important;
  border-top: 3.5px solid #FFB703 !important;
  border-bottom: 3.5px solid #F05A28 !important;
  padding: 70px 0 50px 0 !important;
  color: #FFFFFF !important;
}

.abr-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.9fr 1.3fr;
  gap: 40px;
}

.abr-f-heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  position: relative;
}

.abr-f-heading i {
  color: var(--primary);
}

/* COLUMN 1: RECENT NEWS / RECORDS WITH THUMBNAILS */
.abr-thumb-records-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abr-thumb-rec-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition: all 0.3s ease;
}

.abr-thumb-rec-item:hover {
  background: rgba(230, 126, 34, 0.08);
  border-color: rgba(230, 126, 34, 0.4);
  transform: translateX(4px);
}

.abr-thumb-img {
  width: 68px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.abr-thumb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.abr-thumb-rec-item:hover .abr-thumb-img img {
  transform: scale(1.1);
}

.abr-thumb-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
}

.abr-rec-date {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
}

.abr-rec-item-title {
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 700;
  color: #F1F5F9;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.abr-thumb-rec-item:hover .abr-rec-item-title {
  color: var(--primary);
}

/* COLUMN 2: NEWS & CATEGORIES (TWO COLUMNS) */
.abr-f-links-two-col {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 16px;
  padding: 0;
  margin: 0;
}

.abr-f-links-two-col a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.abr-f-links-two-col a i {
  font-size: 0.65rem;
  color: var(--primary);
  transition: transform 0.2s ease;
}

.abr-f-links-two-col a:hover {
  color: #FFFFFF;
  transform: translateX(3px);
}

.abr-f-links-two-col a:hover i {
  transform: translateX(2px);
}

/* COLUMN 3: RESOURCES LINK LIST */
.abr-f-links-single {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.abr-f-links-single a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
}

.abr-f-links-single a i {
  font-size: 0.85rem;
  color: var(--primary);
  width: 16px;
}

.abr-f-links-single a:hover {
  color: #FFFFFF;
  transform: translateX(4px);
}

/* COLUMN 4: CONTACT & OFFICES */
.abr-f-brand-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 12px 16px;
  margin-bottom: 20px;
}

.abr-f-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.abr-f-brand-info {
  display: flex;
  flex-direction: column;
}

.abr-f-brand-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
}

.abr-f-brand-sub {
  font-size: 0.74rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.abr-offices-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.abr-office-card {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.45;
  padding-left: 12px;
  border-left: 2px solid rgba(230, 126, 34, 0.5);
}

.abr-office-head {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 2px;
}

.abr-office-head i {
  color: var(--primary);
  font-size: 0.8rem;
}

.abr-office-contact {
  color: var(--primary);
  font-weight: 700;
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.abr-email-card {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  background: rgba(230, 126, 34, 0.1);
  border: 1px solid rgba(230, 126, 34, 0.3);
  padding: 10px 14px;
  border-radius: 10px;
  color: #FFFFFF;
}

.abr-email-card i {
  color: var(--primary);
}

.abr-email-card a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease;
}

.abr-email-card a:hover {
  color: var(--primary);
}

.abr-f-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.abr-s-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.abr-s-icon:hover {
  background: var(--gradient-saffron);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(230, 126, 34, 0.4);
}

/* BOTTOM COPYRIGHT BAR (PURE WHITE BACKGROUND) */
.abr-footer-bottom-bar {
  background: #FFFFFF !important;
  border-top: 2px solid #E2E8F0 !important;
  padding: 24px 0 !important;
  font-size: 0.88rem !important;
  color: #0B1A4A !important;
}

.abr-bottom-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.abr-copy-text strong {
  color: #0B1A4A !important;
}

.abr-badge-certified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #FFF8E7 !important;
  color: #F05A28 !important;
  border: 1px solid #F05A28 !important;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 800;
  margin-left: 10px;
}

.abr-bottom-legal-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.abr-bottom-legal-links a {
  color: #475569 !important;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.abr-bottom-legal-links a:hover {
  color: #F05A28 !important;
}

.dot-sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.7rem;
}

/* MEDIA QUERIES FOR FOOTER */
@media (max-width: 1199px) {
  .abr-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 991px) {
  .abr-newsletter-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 24px;
  }
  .abr-news-desc {
    margin: 0 auto;
  }
  .abr-newsletter-form {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .abr-footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .abr-f-links-two-col {
    grid-template-columns: 1fr 1fr;
  }
  .abr-bottom-flex {
    flex-direction: column;
    text-align: center;
  }
/* ==========================================================================
   LUXURY CLEAN WHITE MOBILE DRAWER (MATCHING DESKTOP NAVBAR THEME)
   ========================================================================== */
.awwwards-mobile-drawer, #mobileDrawer {
  background: #FFFFFF !important;
  color: #0B1A4A !important;
  border-left: 3px solid #F05A28 !important;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.15) !important;
}

.awwwards-mobile-drawer.active, #mobileDrawer.active, #mobileDrawer.open {
  transform: translateX(0) !important;
  display: flex !important;
  flex-direction: column !important;
}

.mobile-nav-link {
  color: #0B1A4A !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.mobile-nav-link:hover {
  color: #F05A28 !important;
}

/* ==========================================================================
   MASTER FOOTER BRAND COLOR OVERRIDES
   - Top Newsletter Bar: Pure White (#FFFFFF)
   - Main Footer Body: Brand Logo Color (Royal Navy #0B1A4A with #FFB703 Gold Ribbon)
   - Downfooter (Copyright): Pure White (#FFFFFF)
   ========================================================================== */

/* 1. TOP NEWSLETTER / ANNOUNCEMENT BAR (BRAND LOGO ROYAL NAVY COLOR #0B1A4A) */
.abr-footer-topbar {
  background: #0B1A4A !important;
  border-bottom: 2px solid #FFB703 !important;
  padding: 45px 0 !important;
  color: #FFFFFF !important;
}

.abr-newsletter-card {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 30px !important;
  flex-wrap: wrap !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1.5px solid #FFB703 !important;
  border-radius: 20px !important;
  padding: 30px 40px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
}

.abr-news-tag {
  background: rgba(255, 183, 3, 0.15) !important;
  border: 1px solid #FFB703 !important;
  color: #FFB703 !important;
  padding: 4px 14px !important;
  border-radius: 20px !important;
  font-size: 0.8rem !important;
  font-weight: 800 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  margin-bottom: 10px !important;
}

.abr-news-title {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.6rem !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  margin: 5px 0 !important;
}

.abr-news-desc {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 0.95rem !important;
  margin: 0 !important;
}

.abr-newsletter-form .abr-news-input-wrap {
  display: flex !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1.5px solid #FFB703 !important;
  padding: 5px !important;
  border-radius: 40px !important;
  align-items: center !important;
  gap: 10px !important;
}

.abr-news-input-wrap i {
  color: #FFB703 !important;
  margin-left: 15px !important;
}

.abr-news-input-wrap input {
  border: none !important;
  background: transparent !important;
  outline: none !important;
  padding: 10px 5px !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.92rem !important;
  color: #FFFFFF !important;
  width: 250px !important;
}

.abr-news-input-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.7) !important;
}

.btn-news-submit {
  background: #F05A28 !important;
  color: #FFFFFF !important;
  border: none !important;
  padding: 10px 24px !important;
  border-radius: 30px !important;
  font-weight: 800 !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  box-shadow: 0 6px 18px rgba(240, 90, 40, 0.3) !important;
}

/* 2. MAIN FOOTER BODY (BRAND LOGO ROYAL NAVY & GOLD RIBBON) */
.abr-footer-main-body {
  background: linear-gradient(135deg, #0B1A4A 0%, #152865 50%, #0B1A4A 100%) !important;
  border-top: 3.5px solid #FFB703 !important;
  border-bottom: 3.5px solid #F05A28 !important;
  padding: 70px 0 50px !important;
  color: #FFFFFF !important;
}

.abr-f-heading {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  color: #FFB703 !important;
  margin-bottom: 25px !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.abr-f-heading i {
  color: #F05A28 !important;
}

.abr-thumb-rec-item {
  display: flex !important;
  gap: 14px !important;
  align-items: center !important;
  text-decoration: none !important;
  margin-bottom: 16px !important;
}

.abr-thumb-img {
  width: 65px !important;
  height: 55px !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
  border: 1px solid rgba(255, 183, 3, 0.3) !important;
}

.abr-thumb-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.abr-rec-date {
  font-size: 0.72rem !important;
  color: #FFB703 !important;
  font-weight: 700 !important;
  display: block !important;
  margin-bottom: 3px !important;
}

.abr-rec-item-title {
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  color: #FFFFFF !important;
  margin: 0 !important;
  line-height: 1.35 !important;
}

.abr-f-links-two-col, .abr-f-links-single {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.abr-f-links-two-col {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px 18px !important;
}

.abr-f-links-two-col a, .abr-f-links-single a {
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: none !important;
  font-size: 0.9rem !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: color 0.2s ease !important;
}

.abr-f-links-two-col a:hover, .abr-f-links-single a:hover {
  color: #FFB703 !important;
}

.abr-office-card {
  background: rgba(255, 255, 255, 0.06) !important;
  border-left: 3px solid #F05A28 !important;
  padding: 12px 16px !important;
  border-radius: 8px !important;
  margin-bottom: 14px !important;
}

.abr-office-head {
  color: #FFB703 !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-bottom: 4px !important;
}

.abr-office-card p {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.85rem !important;
  margin: 0 !important;
  line-height: 1.4 !important;
}

/* 3. DOWNFOOTER / COPYRIGHT BAR (PURE WHITE BACKGROUND) */
.abr-footer-bottom-bar {
  background: #FFFFFF !important;
  border-top: 1px solid #E2E8F0 !important;
  padding: 24px 0 !important;
  color: #0B1A4A !important;
}

.abr-bottom-flex {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 15px !important;
}

.abr-copy-text {
  font-size: 0.9rem !important;
  color: #0B1A4A !important;
  font-weight: 600 !important;
}

.abr-badge-certified {
  background: #FFF8E7 !important;
  border: 1px solid #F05A28 !important;
  color: #F05A28 !important;
  padding: 3px 12px !important;
  border-radius: 20px !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  margin-left: 10px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.abr-bottom-legal-links {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
}

.abr-bottom-legal-links a {
  color: #475569 !important;
  text-decoration: none !important;
}

.abr-bottom-legal-links a:hover {
  color: #F05A28 !important;
}

.dot-sep {
  color: #CBD5E1 !important;
}

/* ==========================================================================
   UNIVERSAL MOBILE RESPONSIVE & HORIZONTAL OVERFLOW LOCK (320px - 768px)
   ========================================================================== */
html, body {
  width: 100% !important;
  max-width: 100vw !important;
  overflow-x: hidden !important;
  position: relative !important;
}

*, *::before, *::after {
  max-width: 100vw;
}

/* Prevent image and media overflow */
img, video, iframe, svg, table {
  max-width: 100% !important;
  height: auto;
}

@media (max-width: 768px) {
  /* Hero Section Mobile Optimization */
  .shopify-hero-section {
    padding: 85px 15px 40px !important;
    overflow: hidden !important;
  }
  
  .hero-watermark-left {
    width: 250px !important;
    height: 250px !important;
    left: -40px !important;
    opacity: 0.04 !important;
  }

  .hero-watermark-right {
    width: 280px !important;
    height: 280px !important;
    right: -50px !important;
    opacity: 0.04 !important;
  }

  .shopify-pill-badge {
    max-width: 92vw !important;
    font-size: 0.72rem !important;
    white-space: normal !important;
    word-break: break-word !important;
    text-align: center !important;
    padding: 6px 12px !important;
    display: inline-flex !important;
    line-height: 1.3 !important;
  }

  .shopify-hero-title {
    font-size: 1.75rem !important;
    line-height: 1.25 !important;
    margin-bottom: 12px !important;
  }

  .shopify-hero-subtext {
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
    margin-bottom: 20px !important;
  }

  /* Mobile Search Form Stack */
  form[action="records.html"] > div {
    flex-direction: column !important;
    border-radius: 20px !important;
    padding: 8px !important;
    gap: 8px !important;
  }

  form[action="records.html"] input {
    width: 100% !important;
    padding: 10px 15px !important;
    text-align: center !important;
  }

  form[action="records.html"] button {
    width: 100% !important;
    justify-content: center !important;
    padding: 10px !important;
  }

  /* CTAs & Badges Mobile Grid */
  .shopify-hero-cta-group {
    flex-direction: column !important;
    gap: 10px !important;
  }

  .shopify-hero-cta-group a {
    width: 100% !important;
    justify-content: center !important;
    padding: 12px 20px !important;
  }

  /* Containers & Section Margins */
  .container, .compact-hero-container, .form-section-wrapper, .contact-main-wrapper {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* NAVBAR MOBILE HEADER TOGGLE FIX */
  .nav-container {
    padding: 0 10px !important;
    width: 100% !important;
    max-width: 100vw !important;
    overflow: hidden !important;
  }

  .brand-typography, .brand-title, .brand-subtitle {
    display: none !important;
  }

  .nav-brand {
    gap: 0 !important;
    max-width: auto !important;
  }

  .logo-glass-badge {
    width: 42px !important;
    height: 42px !important;
    border-radius: 10px !important;
  }

  .logo-glass-badge img {
    width: 32px !important;
    height: 32px !important;
  }

  .nav-actions {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
  }

  .nav-actions .btn-apply, .nav-actions .key-badge {
    display: none !important;
  }

  .mobile-toggle {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-around !important;
    width: 38px !important;
    height: 38px !important;
    padding: 8px !important;
    background: #F05A28 !important;
    border-radius: 8px !important;
    border: none !important;
    cursor: pointer !important;
    z-index: 9999 !important;
    flex-shrink: 0 !important;
  }

  .hamburger-line {
    display: block !important;
    width: 100% !important;
    height: 2.5px !important;
    background: #FFFFFF !important;
    border-radius: 2px !important;
  }

  /* SPOTLIGHT SECTION MOBILE STACK */
  .abr-spotlight-grid {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
  }

  .abr-spotlight-mini-stats {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .abr-mini-stat {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .abr-spotlight-content {
    width: 100% !important;
    overflow: hidden !important;
  }

  .abr-spotlight-content h2, .abr-spotlight-title {
    font-size: 1.55rem !important;
    line-height: 1.3 !important;
  }

  /* FOOTER MOBILE RESPONSIVE OVERFLOW FIX */
  .master-abr-footer {
    width: 100% !important;
    max-width: 100vw !important;
    overflow: hidden !important;
  }

  .abr-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 35px !important;
  }

  .abr-footer-topbar {
    padding: 30px 15px !important;
  }

  .abr-newsletter-card {
    flex-direction: column !important;
    text-align: center !important;
    padding: 25px 15px !important;
    gap: 20px !important;
  }

  .abr-news-title {
    font-size: 1.3rem !important;
  }

  .abr-news-desc {
    font-size: 0.88rem !important;
  }

  .abr-newsletter-form {
    width: 100% !important;
  }

  .abr-newsletter-form .abr-news-input-wrap {
    flex-direction: column !important;
    width: 100% !important;
    border-radius: 20px !important;
    padding: 10px !important;
    gap: 10px !important;
  }

  .abr-news-input-wrap i {
    display: none !important;
  }

  .abr-news-input-wrap input {
    width: 100% !important;
    text-align: center !important;
    padding: 10px !important;
  }

  .btn-news-submit {
    width: 100% !important;
    justify-content: center !important;
  }

  .abr-f-links-two-col {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .abr-email-card a {
    word-break: break-all !important;
    font-size: 0.78rem !important;
  }

  .abr-bottom-flex {
    flex-direction: column !important;
    text-align: center !important;
    gap: 12px !important;
  }

  .abr-bottom-legal-links {
    flex-wrap: wrap !important;
    justify-content: center !important;
  }
}




