/* ==========================================================================
   JAY TULSI AGENCY - MAIN STYLESHEET
   Design Tokens, Layouts, Typography, Components & Responsive Utilities
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand Colors */
  --primary-orange: #FA5400;
  --primary-orange-hover: #E04800;
  --primary-orange-light: #FFF0E8;
  --dark-navy: #061427;
  --dark-navy-light: #0B1E38;
  --dark-navy-card: #0F2544;
  --navy-accent: #1E3A8A;

  /* Neutral Colors */
  --text-dark: #0F172A;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --bg-page: #F8FAFC;
  --bg-card: #FFFFFF;
  --border-color: #E2E8F0;
  --border-light: #F1F5F9;

  /* Card Accent Tints */
  --tint-orange-bg: #FFF7F2;
  --tint-blue-bg: #F0F4FA;
  --tint-yellow-bg: #FFFBEB;

  /* Typography */
  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-heading: 'Outfit', sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(6, 20, 39, 0.04);
  --shadow-md: 0 8px 24px rgba(6, 20, 39, 0.08);
  --shadow-lg: 0 16px 40px rgba(6, 20, 39, 0.12);
  --shadow-orange: 0 10px 25px rgba(250, 84, 0, 0.25);

  /* Transitions & Border Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Setup */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-page);
  color: var(--text-dark);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   1. TOP UTILITY HEADER
   ========================================================================== */
.top-bar {
  background-color: var(--dark-navy);
  color: #CBD5E1;
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-info-item i {
  color: var(--primary-orange);
  font-size: 14px;
}

.top-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-social a {
  color: #94A3B8;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  transition: var(--transition);
}

.top-social a:hover {
  color: #FFFFFF;
  background-color: var(--primary-orange);
}

/* ==========================================================================
   2. MAIN NAVBAR
   ========================================================================== */
.main-header {
  background-color: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

/* Brand Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon-box {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #FA5400, #FF7B33);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 22px;
  box-shadow: var(--shadow-orange);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--dark-navy);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.logo-subtitle {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-orange);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-orange);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-orange);
  border-radius: 2px;
}

/* Quick Contact Button */
.btn-primary {
  background-color: var(--primary-orange);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  background-color: var(--primary-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(250, 84, 0, 0.35);
}

.btn-navy {
  background-color: var(--dark-navy);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-navy:hover {
  background-color: var(--dark-navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  border: 1.5px solid var(--primary-orange);
  color: var(--primary-orange);
  background: transparent;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  background-color: var(--primary-orange);
  color: #FFFFFF;
}

.mobile-nav-toggle {
  display: none;
  font-size: 24px;
  color: var(--dark-navy);
}

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 30px 0 0 0;
  position: relative;
  overflow: hidden;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 40px;
  position: relative;
}

.hero-content {
  padding-bottom: 40px;
}

.hero-title {
  font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
  font-size: 50px;
  font-weight: 800;
  line-height: 1.14;
  color: var(--dark-navy);
  margin-bottom: 20px;
  letter-spacing: -1.2px;
}

.hero-title-gradient {
  background: linear-gradient(135deg, #FA5400 0%, #FF7A00 45%, #E02E00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(0 4px 14px rgba(250, 84, 0, 0.22));
}

.hero-title .highlight {
  color: var(--primary-orange);
}

.hero-subtext {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 500px;
  font-weight: 500;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Image Container with Slanted Edge */
.hero-image-box {
  position: relative;
  height: 480px;
  width: 100%;
}

.hero-image-card {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(6, 20, 39, 0.12);
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0% 100%);
  transition: transform 0.4s ease;
}

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

/* Slider Arrows */
.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #FFFFFF;
  color: var(--dark-navy);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  font-size: 15px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.slider-arrow:hover {
  background-color: var(--primary-orange);
  color: #FFFFFF;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 10px 28px rgba(250, 84, 0, 0.35);
}

.slider-arrow.prev {
  left: -18px;
}

.slider-arrow.next {
  right: 18px;
}

/* ==========================================================================
   4. STATS BANNER
   ========================================================================== */
.stats-banner {
  margin-top: 24px;
}

.stats-container {
  background-color: var(--dark-navy);
  border-radius: 16px;
  padding: 24px 32px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-orange);
  font-size: 20px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
}

.stat-label {
  font-size: 13px;
  color: #94A3B8;
  font-weight: 500;
}

/* ==========================================================================
   5. DUAL CATEGORIES SECTION (FOR HOMES vs FOR BUSINESSES) - EXACT MATCH
   ========================================================================== */
.section-padding {
  padding: 50px 0;
}

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

.category-card {
  border-radius: 24px;
  padding: 32px 32px 28px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(6, 20, 39, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 480px;
}

/* Left Card: Homes */
.category-card.homes-card {
  background: linear-gradient(135deg, #FFF6F0 0%, #FFF0E5 100%);
  border: 1px solid #FFE4D6;
}

/* Right Card: Businesses */
.category-card.businesses-card {
  background: linear-gradient(135deg, #F0F5FD 0%, #E3EEFB 100%);
  border: 1px solid #D6E4F7;
}

.category-card:hover {
  box-shadow: 0 16px 36px rgba(6, 20, 39, 0.08);
  transform: translateY(-2px);
}

/* Pill Badges */
.badge-pill {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.badge-pill.homes {
  background-color: #FA5400;
  color: #FFFFFF;
}

.badge-pill.businesses {
  background-color: #061427;
  color: #FFFFFF;
}

.card-heading {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: #061427;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
  line-height: 1.15;
}

.card-subheading {
  font-size: 14px;
  color: #64748B;
  margin-bottom: 28px;
  font-weight: 500;
}

/* 10 Items Grid - Icons with Text Outside */
.cat-items-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px 10px;
  margin-bottom: 36px;
  max-width: 65%;
  position: relative;
  z-index: 2;
}

.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.cat-item-icon {
  width: 48px;
  height: 48px;
  background-color: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(6, 20, 39, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.cat-item-icon svg {
  width: 24px;
  height: 24px;
}

.cat-item:hover .cat-item-icon {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(6, 20, 39, 0.1);
  border-color: #FA5400;
}

.cat-item-title {
  font-size: 9.5px;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.2;
  text-align: center;
  max-width: 80px;
  margin: 0 auto;
  display: block;
}

/* Right Side Product Art Positioning (Original Cutout PNGs) */
.homes-product-art {
  position: absolute;
  right: -38px;
  bottom: 36px;
  width: 38%;
  max-width: 260px;
  height: auto;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.12));
}

.businesses-product-art {
  position: absolute;
  right: -5px;
  bottom: -5px;
  width: 44%;
  max-width: 285px;
  height: auto;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.12));
}

/* Blue circle glow backdrop for B2B products */
.b2b-backdrop-glow {
  position: absolute;
  right: 20px;
  bottom: 40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.22);
  filter: blur(28px);
  z-index: 0;
  pointer-events: none;
}

/* Action Buttons at Bottom */
.card-footer-action {
  position: relative;
  z-index: 2;
  margin-top: 10px;
}

.btn-view-homes {
  background: #FFFFFF;
  border: 1.5px solid #FA5400;
  color: #FA5400;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(250, 84, 0, 0.08);
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-view-homes:hover {
  background-color: #FA5400;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(250, 84, 0, 0.25);
}

.btn-view-b2b {
  background: #061427;
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(6, 20, 39, 0.15);
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-view-b2b:hover {
  background-color: #0B1E38;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(6, 20, 39, 0.25);
}

/* ==========================================================================
   6. LATEST PROMOTIONS SECTION
   ========================================================================== */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--dark-navy);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.view-all-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  gap: 6px;
}

.view-all-link:hover {
  gap: 10px;
}

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

.promo-card {
  border-radius: var(--radius-lg);
  padding: 24px;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.promo-card-1 {
  background: linear-gradient(135deg, #061427 0%, #0F2544 100%);
}

.promo-card-2 {
  background: linear-gradient(135deg, #FFA900 0%, #FA5400 100%);
}

.promo-card-3 {
  background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%);
}

.promo-card-4 {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.promo-content {
  position: relative;
  z-index: 2;
  max-width: 65%;
}

.promo-badge {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

.promo-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 6px;
}

.promo-desc {
  font-size: 12px;
  opacity: 0.9;
  margin-bottom: 16px;
}

.btn-shop-sm {
  background-color: var(--primary-orange);
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
}

.promo-card-2 .btn-shop-sm,
.promo-card-4 .btn-shop-sm {
  background-color: var(--dark-navy);
}

.promo-graphic {
  position: absolute;
  right: -15px;
  bottom: -15px;
  width: 175px;
  height: 175px;
  object-fit: contain;
  z-index: 1;
  opacity: 1;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.promo-card:hover .promo-graphic {
  transform: scale(1.06) translateY(-2px);
}

/* ==========================================================================
   7. TRIPLE SECTION (CLIENTS, BRANDS, INDUSTRIES)
   ========================================================================== */
.triple-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 24px;
}

.info-block-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 24px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.block-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 20px;
}

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

.logo-box {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background-color: #FAFAFA;
  transition: var(--transition);
}

.logo-box:hover {
  border-color: var(--primary-orange);
  background-color: #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.client-logo-img {
  max-height: 36px;
  max-width: 85%;
  object-fit: contain;
}

.brand-svg {
  max-height: 32px;
  max-width: 100%;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px 8px;
}

.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 4px;
}

.industry-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #F1F5F9;
  color: var(--dark-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-bottom: 6px;
}

.industry-item:hover .industry-icon {
  background-color: var(--primary-orange);
  color: #FFFFFF;
}

.industry-name {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-dark);
}

/* ==========================================================================
   8. AUTHORISED DEALERS & CATALOGUE DOWNLOAD
   ========================================================================== */
.dealers-catalogue-wrapper {
  display: grid;
  grid-template-columns: 3.5fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.certificates-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.cert-card {
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  border-radius: 8px;
  padding: 14px 10px 10px 10px;
  text-align: center;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 175px;
  transition: all 0.25s ease;
}

.cert-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: #C2410C;
}

/* Double Hairline Vintage Certificate Border */
.cert-card::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 1px solid #C2410C;
  border-radius: 4px;
  pointer-events: none;
}

.cert-card::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 7px;
  right: 7px;
  bottom: 7px;
  border: 0.5px solid #F59E0B;
  border-radius: 3px;
  opacity: 0.5;
  pointer-events: none;
}

/* Corner Flourish Accents */
.cert-corner {
  position: absolute;
  width: 6px;
  height: 6px;
  border-color: #C2410C;
  border-style: solid;
  z-index: 2;
  pointer-events: none;
}

.corner-tl {
  top: 3px;
  left: 3px;
  border-width: 2px 0 0 2px;
}

.corner-tr {
  top: 3px;
  right: 3px;
  border-width: 2px 2px 0 0;
}

.corner-bl {
  bottom: 3px;
  left: 3px;
  border-width: 0 0 2px 2px;
}

.corner-br {
  bottom: 3px;
  right: 3px;
  border-width: 0 2px 2px 0;
}

/* Logo Header Space */
.cert-logo {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  margin-bottom: 6px;
  position: relative;
  z-index: 2;
}

.cert-logo-img {
  max-height: 28px;
  max-width: 85%;
  object-fit: contain;
}

/* Asian Paints Logo Styling */
.ap-logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.ap-mark {
  font-family: serif;
  font-size: 20px;
  font-weight: 900;
  font-style: italic;
  color: #DC2626;
  line-height: 1;
}

.ap-text {
  font-family: sans-serif;
  font-size: 13px;
  font-weight: 900;
  color: #D97706;
  letter-spacing: -0.5px;
}

/* Certificate Title & Script */
.cert-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 4px;
  position: relative;
  z-index: 2;
}

.cert-script {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 8px;
  color: #64748B;
  line-height: 1.25;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
  padding: 0 4px;
}

/* Footer Row with Signature & Gold Target Seal Stamp */
.cert-footer-row {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 4px;
  position: relative;
  z-index: 2;
}

.cert-sig {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 9px;
  color: #334155;
  border-top: 1px solid #CBD5E1;
  padding-top: 2px;
}

/* Golden Certificate Target Seal Stamp */
.gold-seal-stamp {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle, #EAB308 0%, #D97706 70%, #92400E 100%);
  border: 1.5px solid #CA8A04;
  box-shadow: 0 2px 6px rgba(180, 83, 9, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.seal-inner-target {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle, #0F172A 35%, #F59E0B 40%, #0F172A 70%, #CA8A04 75%);
  border: 1px solid #FEF08A;
}

/* Download Box */
.download-box {
  background-color: var(--dark-navy);
  border-radius: var(--radius-xl);
  padding: 24px;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.download-title-area {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.download-title-area i {
  font-size: 24px;
  color: var(--primary-orange);
}

.download-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.download-btn {
  background-color: #FFFFFF;
  color: var(--dark-navy);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
}

.download-btn:hover {
  background-color: var(--primary-orange);
  color: #FFFFFF;
}

/* ==========================================================================
   9. QUICK INFO CALLOUT BANNER
   ========================================================================== */
.contact-callout-card {
  background-color: #FFFFFF;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr 1.1fr;
  overflow: hidden;
  align-items: center;
}

.callout-info-item {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-right: 1px solid var(--border-light);
}

.callout-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #F8FAFC;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-navy);
  font-size: 20px;
}

.callout-text label {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
  font-weight: 600;
}

.callout-text strong {
  font-size: 13px;
  color: var(--dark-navy);
  font-weight: 700;
  line-height: 1.3;
  display: block;
}

.callout-action-orange {
  background-color: var(--primary-orange);
  color: #FFFFFF;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.callout-action-orange h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 2px;
}

.callout-action-orange p {
  font-size: 11px;
  opacity: 0.9;
  margin-bottom: 10px;
}

.btn-white-sm {
  background-color: #FFFFFF;
  color: var(--primary-orange);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
}

.btn-white-sm:hover {
  background-color: var(--dark-navy);
  color: #FFFFFF;
}

/* ==========================================================================
   10. DEEP FOOTER
   ========================================================================== */
.main-footer {
  background-color: var(--dark-navy);
  color: #CBD5E1;
  padding: 60px 0 20px 0;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-title {
  color: #FFFFFF;
}

.footer-desc {
  font-size: 13px;
  color: #94A3B8;
  line-height: 1.6;
  margin: 16px 0 20px 0;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 13px;
  color: #94A3B8;
}

.footer-links a:hover {
  color: var(--primary-orange);
  padding-left: 4px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #94A3B8;
  margin-bottom: 12px;
}

.footer-contact-list i {
  color: var(--primary-orange);
  margin-top: 3px;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #64748B;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a:hover {
  color: #FFFFFF;
}

/* ==========================================================================
   11. MODAL POPUP
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 20, 39, 0.7);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background-color: #FFFFFF;
  border-radius: var(--radius-xl);
  width: 90%;
  max-width: 520px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(20px);
  transition: var(--transition);
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 20px;
  color: var(--text-muted);
}

.modal-close:hover {
  color: var(--primary-orange);
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 6px;
}

.modal-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(250, 84, 0, 0.15);
}

/* ==========================================================================
   11. BULK SUPPLY & CORPORATE INQUIRY BANNER
   ========================================================================== */
.bulk-inquiry-banner {
  background: linear-gradient(135deg, #FA5400 0%, #FF6A00 100%);
  border-radius: 16px;
  padding: 26px 36px;
  display: grid;
  grid-template-columns: 0.85fr 1.75fr;
  align-items: center;
  gap: 32px;
  box-shadow: 0 12px 30px rgba(250, 84, 0, 0.22);
}

.bulk-inquiry-title {
  font-family: 'Plus Jakarta Sans', var(--font-heading);
  font-size: 25px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.bulk-inquiry-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

.bulk-inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bulk-form-row-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.bulk-input,
.bulk-select {
  width: 100%;
  height: 42px;
  background: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  padding: 0 14px;
  font-size: 12.5px;
  color: #0F172A;
  font-family: var(--font-body);
  outline: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.bulk-input::placeholder {
  color: #94A3B8;
}

.bulk-input:focus,
.bulk-select:focus {
  border-color: var(--dark-navy);
  box-shadow: 0 0 0 3px rgba(6, 20, 39, 0.18);
}

.bulk-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  padding-right: 32px;
}

.bulk-form-row-message {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  background: #FFFFFF;
  border-radius: 10px;
  padding: 4px 5px 4px 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.bulk-input-message {
  border: none;
  outline: none;
  font-size: 13px;
  color: #0F172A;
  font-family: var(--font-body);
  width: 100%;
}

.bulk-input-message::placeholder {
  color: #94A3B8;
}

.btn-bulk-submit {
  background-color: var(--dark-navy);
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  height: 40px;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(6, 20, 39, 0.2);
}

.btn-bulk-submit:hover {
  background-color: #0B1E38;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(6, 20, 39, 0.3);
}

/* ==========================================================================
   12. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
  }

  .hero-image-card {
    clip-path: none;
    height: 380px;
  }

  .stats-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .dual-categories-grid {
    grid-template-columns: 1fr;
  }

  .promotions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .triple-grid {
    grid-template-columns: 1fr;
  }

  .dealers-catalogue-wrapper {
    grid-template-columns: 1fr;
  }

  .certificates-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-callout-card {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .nav-menu {
    display: none;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .hero-title {
    font-size: 34px;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .cat-items-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .promotions-grid {
    grid-template-columns: 1fr;
  }

  .contact-callout-card {
    grid-template-columns: 1fr;
  }

  .callout-info-item {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

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