/* ================================================================
   AGSAR PAINTS — BERGER-INSPIRED PREMIUM CSS v4.0
   Font: DM Sans (body) + Playfair Display (headings)
   Style: Clean white, warm accents — like Berger Paints
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Playfair+Display:wght@500;600;700;800&display=swap');

/* ── VARIABLES ── */
:root {
  --red:       #D32F2F;
  --red-dark:  #B71C1C;
  --red-soft:  #FFF5F5;
  --red-mid:   #FFEBEE;
  --gold:      #F59E0B;
  --dark:      #1C1C2E;
  --ink:       #2D2D2D;
  --mid:       #4A4A5A;
  --muted:     #78788C;
  --border:    #E8E8F0;
  --light:     #F7F7FB;
  --cream:     #FAFAF8;
  --white:     #FFFFFF;

  --grad-red:  linear-gradient(135deg,#D32F2F 0%,#B71C1C 100%);
  --grad-hero: linear-gradient(160deg,#FFFFFF 0%,#FFF8F7 40%,#FFF0EE 100%);
  --grad-dark: linear-gradient(135deg,#1C1C2E 0%,#2D1B2E 60%,#D32F2F 100%);

  --shadow-xs: 0 1px 4px rgba(28,28,46,.06);
  --shadow-sm: 0 2px 12px rgba(28,28,46,.08);
  --shadow-md: 0 8px 32px rgba(28,28,46,.11);
  --shadow-lg: 0 20px 60px rgba(28,28,46,.15);
  --shadow-red:0 8px 24px rgba(211,47,47,.30);

  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --font:   'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Calibri, sans-serif;
  --serif:  'Playfair Display', Georgia, serif;
  --ease:   cubic-bezier(.4,0,.2,1);
  --trans:  all 0.3s cubic-bezier(.4,0,.2,1);
}

/* ── BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--mid);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }

/* ── TYPE ── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--serif);
  line-height: 1.2;
  color: var(--ink);
}
.section-label {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(26px,3.5vw,42px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 18px;
}
.section-title span { color: var(--red); }
.section-subtitle {
  font-family: var(--font);
  font-size: 16px;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.8;
}

/* ════════════════════════════════════
   TOP UTILITY BAR (Berger-style)
════════════════════════════════════ */
#top-bar {
  background: var(--ink);
  padding: 7px 0;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left { display: flex; align-items: center; gap: 20px; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-item {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
}
.topbar-item:hover { color: var(--gold); }
.topbar-item i { font-size: 11px; }
.topbar-divider { width: 1px; height: 14px; background: rgba(255,255,255,.15); }

/* ════════════════════════════════════
   MAIN HEADER (Berger-style)
════════════════════════════════════ */
#agsar-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: var(--white);
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(0,0,0,.05);
  transition: var(--trans);
}

#agsar-header .navbar-brand img {
  height: 50px;
  width: auto;
}

/* Nav Links */
#agsar-header .nav-link {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink) !important;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: var(--trans);
  letter-spacing: .1px;
  display: flex;
  align-items: center;
  gap: 5px;
}
#agsar-header .nav-link:hover,
#agsar-header .nav-link.active {
  color: var(--red) !important;
  background: var(--red-soft);
}

/* Dropdown */
#agsar-header .dropdown-menu {
  border: none;
  border-radius: 18px;
  padding: 12px;
  margin-top: 6px;
  box-shadow: var(--shadow-lg);
  animation: dropFade .22s var(--ease);
  min-width: 210px;
  border-top: 3px solid var(--red);
}
@keyframes dropFade {
  from { opacity:0; transform:translateY(8px); }
  to   { opacity:1; transform:translateY(0); }
}

#agsar-header .dropdown-item {
  border-radius: 10px;
  padding: 9px 12px;
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--trans);
}
#agsar-header .dropdown-item:hover {
  background: var(--red-soft);
  color: var(--red);
  padding-left: 16px;
}

.menu-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}

/* CTA button in nav */
.nav-cta {
  background: var(--grad-red) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  box-shadow: var(--shadow-red);
  letter-spacing: .2px;
}
.nav-cta:hover {
  background: var(--red-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(211,47,47,.4) !important;
}

/* Mega menu products grid */
.mega-products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  min-width: 420px;
}

/* ════════════════════════════════════
   HERO — WARM WHITE (Berger-style)
   NOT dark. Clean, light, premium.
════════════════════════════════════ */
#hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--grad-hero);
  overflow: hidden;
}

/* Geometric accent */
#hero-section::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(211,47,47,.04) 0%, rgba(211,47,47,.08) 100%);
  clip-path: polygon(12% 0%,100% 0%,100% 100%,0% 100%);
  pointer-events: none;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.hero-bg-shapes::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(211,47,47,.07) 0%, transparent 70%);
  right: -100px; top: -80px;
}
.hero-bg-shapes::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,.05) 0%, transparent 70%);
  left: 5%; bottom: -60px;
}

.hero-content { position: relative; z-index: 2; padding: 110px 0 80px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--red);
  padding: 7px 18px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 22px;
  box-shadow: var(--shadow-xs);
  animation: fadeInDown .8s ease both;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp .9s ease .1s both;
}
.hero-title .highlight { color: var(--red); }

.hero-subtitle {
  font-family: var(--font);
  font-size: 17px;
  color: var(--muted);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 34px;
  animation: fadeInUp 1s ease .2s both;
}

.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  animation: fadeInUp 1.1s ease .3s both;
}

.hero-stats {
  display: flex; gap: 36px; flex-wrap: wrap;
  margin-top: 48px; padding-top: 32px;
  border-top: 1.5px solid var(--border);
  animation: fadeInUp 1.2s ease .4s both;
}
.hero-stat-num {
  font-family: var(--serif);
  font-size: 36px; font-weight: 800;
  color: var(--red); line-height: 1; display: block;
}
.hero-stat-label {
  font-family: var(--font);
  font-size: 12px; color: var(--muted); font-weight: 500; margin-top: 4px;
}

.hero-visual {
  position: relative; z-index: 2; text-align: center;
  animation: fadeInRight 1s ease .2s both;
}
.hero-visual img {
  max-width: 100%;
  filter: drop-shadow(0 24px 48px rgba(211,47,47,.18));
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }

/* ── QUICK ACCESS (Berger-style icon row) ── */
.quick-access {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.qa-inner {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
}
.qa-inner::-webkit-scrollbar { display: none; }
.qa-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 28px;
  border-right: 1px solid var(--border);
  text-decoration: none;
  transition: var(--trans);
  min-width: 120px;
  text-align: center;
  flex: 1;
}
.qa-item:last-child { border-right: none; }
.qa-item:hover { background: var(--red-soft); }
.qa-item:hover .qa-icon { background: var(--red); }
.qa-item:hover .qa-icon img { filter: brightness(0) invert(1); }
.qa-item:hover .qa-label { color: var(--red); }
.qa-icon {
  width: 52px; height: 56px;
  border-radius: 14px;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  transition: var(--trans);
}
.qa-label {
  font-family: var(--font);
  font-size: 12px; font-weight: 600;
  color: var(--ink);
  transition: var(--trans);
  white-space: nowrap;
}

/* ════════════════════════════════════
   BUTTONS
════════════════════════════════════ */
.btn-primary-custom {
  background: var(--grad-red);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font);
  font-weight: 600; font-size: 15px;
  border: none;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
  transition: var(--trans);
  box-shadow: var(--shadow-red);
}
.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(211,47,47,.4);
  color: var(--white);
}

.btn-outline-custom {
  background: var(--white);
  color: var(--red);
  padding: 12px 26px;
  border-radius: 50px;
  font-family: var(--font);
  font-weight: 600; font-size: 15px;
  border: 2px solid var(--red);
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
  transition: var(--trans);
}
.btn-outline-custom:hover {
  background: var(--red); color: var(--white);
  transform: translateY(-3px); box-shadow: var(--shadow-red);
}

.btn-red {
  background: var(--grad-red);
  color: var(--white);
  padding: 12px 26px;
  border-radius: 50px;
  font-family: var(--font);
  font-weight: 600; font-size: 14px;
  border: none;
  display: inline-flex; align-items: center; gap: 7px;
  text-decoration: none;
  transition: var(--trans);
  box-shadow: var(--shadow-red);
}
.btn-red:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(211,47,47,.4);
  color: var(--white);
}

/* ════════════════════════════════════
   PRODUCT CATEGORY CARDS
   IMAGE: 800×500px recommended
════════════════════════════════════ */
.product-cat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: var(--trans);
  border: 1.5px solid var(--border);
  text-decoration: none;
  display: block;
  height: 100%;
}
.product-cat-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
}
/* IMAGE SIZE: Product category card → 480 × 260px */
.product-cat-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}
.product-cat-card-img > span { font-size: 60px; position: relative; z-index: 1; }
.product-cat-card-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform .5s var(--ease);
}
.product-cat-card:hover .product-cat-card-img img { transform: scale(1.06); }

.product-cat-card-body { padding: 20px; }
.product-cat-card-body h4 {
  font-family: var(--serif);
  font-size: 17px; font-weight: 700;
  color: var(--ink); margin-bottom: 7px;
  transition: var(--trans);
}
.product-cat-card:hover .product-cat-card-body h4 { color: var(--red); }
.product-cat-card-body p {
  font-family: var(--font);
  font-size: 13px; color: var(--muted); margin: 0; line-height: 1.6;
}
.product-cat-card-footer {
  padding: 13px 20px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.product-cat-card-footer span {
  font-family: var(--font);
  font-size: 12px; font-weight: 700; color: var(--red);
}

/* ════════════════════════════════════
   ABOUT SECTION
════════════════════════════════════ */
.about-section { background: var(--cream); }
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
/* IMAGE: About → 800 × 560px */
.about-img-main img {
  width: 100%; height: 460px;
  object-fit: cover; object-position: center;
  display: block;
}
.about-badge-float {
  position: absolute; bottom: 24px; left: -24px;
  background: var(--white); border-radius: var(--radius);
  padding: 16px 20px; box-shadow: var(--shadow-lg); min-width: 160px;
}
.about-badge-float .num {
  font-family: var(--serif);
  font-size: 38px; font-weight: 800; color: var(--red); line-height: 1;
}
.about-badge-float .lbl {
  font-family: var(--font);
  font-size: 11px; color: var(--muted); font-weight: 600;
}
.about-check-list { list-style: none; padding: 0; }
.about-check-list li {
  display: flex; align-items: flex-start; gap: 11px;
  margin-bottom: 12px;
  font-family: var(--font); font-size: 14.5px; color: var(--mid);
}
.about-check-list li::before {
  content: '✓'; width: 20px; height: 20px; border-radius: 50%;
  background: var(--red); color: white;
  font-size: 10px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 3px;
}

/* ════════════════════════════════════
   WHY CHOOSE US
════════════════════════════════════ */
.why-section { background: var(--dark); }
.why-card {
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.09);
  border-radius: var(--radius-lg);
  padding: 30px 24px; transition: var(--trans); height: 100%;
}
.why-card:hover {
  background: rgba(211,47,47,.12);
  border-color: rgba(211,47,47,.35);
  transform: translateY(-6px);
}
.why-icon {
  width: 58px; height: 58px; border-radius: 16px;
  background: rgba(211,47,47,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 20px; transition: var(--trans);
}
.why-card:hover .why-icon { background: var(--red); }
.why-card h4 { font-family: var(--serif); color: var(--white); font-size: 18px; margin-bottom: 10px; }
.why-card p { font-family: var(--font); color: rgba(255,255,255,.56); font-size: 13.5px; margin: 0; line-height: 1.75; }

/* ════════════════════════════════════
   STATS SECTION
════════════════════════════════════ */
.stats-section { background: var(--grad-red); }
.stat-card { text-align: center; padding: 20px; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(38px,5vw,60px); font-weight: 800;
  color: var(--white); line-height: 1; display: block;
}
.stat-label {
  font-family: var(--font);
  font-size: 13px; color: rgba(255,255,255,.75); font-weight: 500;
  margin-top: 7px; display: block;
}

/* ════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════ */
.testimonials-section { background: var(--cream); }
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm);
  transition: var(--trans); position: relative;
  border: 1.5px solid var(--border); height: 100%;
}
.testi-card::before {
  content: '"'; font-family: var(--serif); font-size: 80px;
  color: var(--red-mid); position: absolute;
  top: -8px; left: 16px; line-height: 1; font-weight: 700;
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--red); }
.testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 12px; }
.testi-text {
  font-family: var(--font); font-size: 14.5px; color: var(--mid);
  line-height: 1.8; margin-bottom: 20px; text-align: left !important;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad-red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 17px; color: white; font-weight: 700; flex-shrink: 0;
}
.testi-info strong { font-family: var(--font); font-size: 13.5px; font-weight: 700; color: var(--ink); display: block; }
.testi-info span { font-family: var(--font); font-size: 11px; color: var(--muted); }

/* ════════════════════════════════════
   NEWS CARDS
   IMAGE: 800 × 500px (16:10 ratio)
════════════════════════════════════ */
.news-section { background: var(--white); }
.news-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-xs);
  border: 1.5px solid var(--border); transition: var(--trans);
  height: 100%; display: flex; flex-direction: column;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* Proper aspect-ratio — no crop distortion */
.news-img {
  position: relative; width: 100%;
  aspect-ratio: 16 / 10;   /* Upload: 800×500px */
  overflow: hidden; background: var(--light); flex-shrink: 0;
}
.news-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block; transition: transform .5s ease;
}
.news-card:hover .news-img img { transform: scale(1.04); }
.news-date-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--red); color: white;
  padding: 4px 12px; border-radius: 50px;
  font-family: var(--font); font-size: 11px; font-weight: 700; z-index: 1;
}
.news-body {
  padding: 20px; flex: 1; display: flex; flex-direction: column;
}
.news-body h4 {
  font-family: var(--serif);
  font-size: 16px; font-weight: 700; color: var(--ink);
  margin-bottom: 8px; line-height: 1.4;
}
.news-body p {
  font-family: var(--font); font-size: 13px; color: var(--muted);
  margin-bottom: 14px; line-height: 1.65; flex: 1;
}
.news-link {
  font-family: var(--font); font-size: 13px; font-weight: 700;
  color: var(--red); text-decoration: none;
  display: inline-flex; align-items: center; gap: 5px;
  transition: var(--trans); margin-top: auto;
}
.news-link:hover { gap: 9px; }

/* ════════════════════════════════════
   PRODUCT TICKER
════════════════════════════════════ */
.products-ticker { background: var(--light); padding: 48px 0; }
.products-ticker-title { text-align: center; margin-bottom: 28px; }
.ticker-track { display: flex; overflow: hidden; }
.ticker-inner {
  display: flex; gap: 28px;
  animation: ticker 22s linear infinite;
}
.ticker-inner a img {
  height: 100px; width: auto; object-fit: contain;
  transition: var(--trans);
}
.ticker-inner a:hover img { transform: scale(1.07); }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ════════════════════════════════════
   CTA SECTION
════════════════════════════════════ */
.cta-section { background: var(--grad-dark); position: relative; overflow: hidden; }
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-content {
  position: relative; z-index: 2;
  text-align: center; padding: 70px 0;
}
.cta-content h2 {
  font-family: var(--serif); color: var(--white);
  font-size: clamp(26px,4vw,42px); margin-bottom: 12px;
}
.cta-content p {
  font-family: var(--font); color: rgba(255,255,255,.65);
  font-size: 16px; margin-bottom: 30px;
  max-width: 500px; margin-left: auto; margin-right: auto;
}

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
#agsar-footer { background: #111827; color: rgba(255,255,255,.7); }
.footer-top { padding: 68px 0 44px; }
.footer-brand img { height: 48px; margin-bottom: 16px; }
.footer-about {
  font-family: var(--font); font-size: 13.5px;
  line-height: 1.8; color: rgba(255,255,255,.52); margin-bottom: 20px;
}
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: 13px;
  text-decoration: none; transition: var(--trans);
}
.footer-social a:hover { background: var(--red); color: white; transform: translateY(-3px); }
.footer-heading {
  font-family: var(--font); font-size: 10px; font-weight: 700;
  color: var(--white); letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  font-family: var(--font); font-size: 13px;
  color: rgba(255,255,255,.5); text-decoration: none;
  display: flex; align-items: center; gap: 5px; transition: var(--trans);
}
.footer-links a:hover { color: var(--gold); padding-left: 3px; }
.footer-links a::before { content: '›'; font-size: 14px; opacity: .4; }
.footer-contact-item {
  display: flex; gap: 10px;
  font-family: var(--font); font-size: 13px;
  color: rgba(255,255,255,.55); margin-bottom: 12px;
}
.footer-contact-item i { width: 16px; flex-shrink: 0; color: var(--gold); margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0;
  text-align: center;
  font-family: var(--font); font-size: 12px; color: rgba(255,255,255,.35);
}
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ════════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════════ */
.page-hero {
  background: var(--grad-dark);
  padding: 66px 0 50px; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.page-hero h1 {
  font-family: var(--serif);
  color: var(--white); font-size: clamp(24px,4vw,42px); margin-bottom: 10px;
}
.breadcrumb-modern {
  display: flex; list-style: none; padding: 0; margin: 0;
  font-family: var(--font); font-size: 13px;
}
.breadcrumb-modern li { color: rgba(255,255,255,.42); }
.breadcrumb-modern li a { color: rgba(255,255,255,.65); text-decoration: none; }
.breadcrumb-modern li a:hover { color: var(--gold); }
.breadcrumb-modern li+li::before { content: '/'; margin: 0 8px; }

/* ════════════════════════════════════
   PRODUCT CARDS
   IMAGE: 600 × 600px (1:1 square)
════════════════════════════════════ */
.prod-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-xs);
  border: 1.5px solid var(--border); transition: var(--trans); height: 100%;
}
.prod-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--red); }
.prod-card-img {
  aspect-ratio: 1/1; overflow: hidden;
  background: var(--light); display: flex;
  align-items: center; justify-content: center;
}
.prod-card-img img {
  width: 100%; height: 100%;
  object-fit: contain; padding: 14px;
  transition: transform .5s ease;
}
.prod-card:hover .prod-card-img img { transform: scale(1.08); }
.prod-card-body { padding: 16px; }
.prod-card-body h5 { font-family: var(--serif); font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 5px; }
.prod-card-body p { font-family: var(--font); font-size: 12.5px; color: var(--muted); margin: 0; line-height: 1.6; }
.prod-badge {
  display: inline-block; background: var(--red-soft); color: var(--red);
  font-family: var(--font); font-size: 10px; font-weight: 700;
  padding: 2px 9px; border-radius: 50px; margin-bottom: 8px; letter-spacing: .5px;
}

/* ════════════════════════════════════
   FORMS
════════════════════════════════════ */
.modern-form .form-control, .modern-form .form-select {
  border: 1.5px solid var(--border); border-radius: 10px;
  padding: 11px 15px; font-family: var(--font); font-size: 14px; transition: var(--trans);
}
.modern-form .form-control:focus, .modern-form .form-select:focus {
  border-color: var(--red); box-shadow: 0 0 0 3px rgba(211,47,47,.10);
}
.modern-form label {
  font-family: var(--font); font-size: 12.5px; font-weight: 600; color: var(--ink); margin-bottom: 5px;
}

/* ════════════════════════════════════
   GALLERY
   IMAGE: 800 × 600px (4:3)
════════════════════════════════════ */
.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 4/3; }
.gallery-item img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block; transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(28,28,46,.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--trans);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: white; font-size: 24px; }

/* ════════════════════════════════════
   MISC CARDS
════════════════════════════════════ */
.career-card {
  background: var(--white); border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow-xs); border: 1.5px solid var(--border);
  border-left: 4px solid var(--red); transition: var(--trans);
}
.career-card:hover { transform: translateX(5px); box-shadow: var(--shadow-md); }
.dealer-card {
  background: var(--white); border-radius: var(--radius); padding: 20px;
  box-shadow: var(--shadow-xs); border: 1.5px solid var(--border); transition: var(--trans);
}
.dealer-card:hover { box-shadow: var(--shadow-md); border-color: var(--red); }
.contact-info-card { background: var(--cream); border-radius: var(--radius-lg); padding: 32px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-icon {
  width: 46px; height: 46px; border-radius: 12px; background: var(--red);
  display: flex; align-items: center; justify-content: center; color: white; font-size: 18px; flex-shrink: 0;
}

/* ════════════════════════════════════
   FLOATING BUTTONS
════════════════════════════════════ */
.float-whatsapp {
  position: fixed; bottom: 24px; right: 24px;
  width: 54px; height: 54px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: white; font-size: 24px; text-decoration: none;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  z-index: 9998; transition: var(--trans);
  animation: waBounce 2.5s ease-in-out infinite;
}
.float-whatsapp:hover { transform: scale(1.12); color: white; animation: none; }
@keyframes waBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }

#scrollTop {
  position: fixed; bottom: 86px; right: 24px;
  width: 42px; height: 42px; background: var(--red);
  color: white; border: none; border-radius: 10px; font-size: 16px;
  cursor: pointer; box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none; transition: var(--trans);
  z-index: 9997; display: flex; align-items: center; justify-content: center;
}
#scrollTop.visible { opacity: 1; pointer-events: all; }
#scrollTop:hover { background: var(--red-dark); transform: translateY(-3px); }

/* ════════════════════════════════════
   SECTION SPACING
════════════════════════════════════ */
.section-pad    { padding: 88px 0; }
.section-pad-sm { padding: 60px 0; }

/* ════════════════════════════════════
   ANIMATIONS
════════════════════════════════════ */
@keyframes fadeInUp    { from{opacity:0;transform:translateY(26px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInDown  { from{opacity:0;transform:translateY(-18px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInRight { from{opacity:0;transform:translateX(32px)} to{opacity:1;transform:translateX(0)} }

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media(max-width:991px) {
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .about-badge-float { left: 6px; }
  .mega-products-grid { grid-template-columns: 1fr; min-width: 100%; }
  #top-bar { display: none; }
  .qa-item { min-width: 100px; padding: 16px 14px; }
}
@media(max-width:767px) {
  .section-pad { padding: 60px 0; }
  .hero-content { padding: 96px 0 52px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 16px; }
  .hero-visual { margin-top: 32px; }
  .about-img-main img { height: 280px; }
  .about-badge-float { display: none; }
  #agsar-header .navbar-collapse {
    background: white; border-radius: 14px; padding: 12px;
    margin-top: 8px; box-shadow: var(--shadow-lg);
  }
}

/* ==================================================
   PREMIUM MENU MAKEOVER – Slim, Animated, Modern
   (Overrides existing styles – keeps all functionality)
================================================== */

/* 1. Make navbar slimmer */
#agsar-header .navbar {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.navbar-brand img {
  height: 44px; /* slightly smaller logo */
  transition: transform 0.2s ease;
}
.navbar-brand img:hover {
  transform: scale(1.02);
}

/* 2. Nav links: better font, less padding, animated underline */
.navbar-nav .nav-link {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5rem 0.7rem !important;
  color: #1e293b;
  position: relative;
  transition: color 0.2s;
}

/* Animated underline (centered) */
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #C8392B;
  transition: width 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  transform: translateX(-50%);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 70%;
}
.navbar-nav .nav-link:hover {
  color: #C8392B;
}

/* 3. Become a Dealer button (special) */
.nav-cta {
  background: #C8392B;
  color: #fff !important;
  border-radius: 40px;
  padding: 0.35rem 1rem !important;
  margin-left: 0.5rem;
  transition: all 0.2s;
}
.nav-cta:hover {
  background: #a62b1f;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(200,57,43,0.3);
}
.nav-cta::after {
  display: none !important;
}

/* 4. Dropdown menus – smooth fade + slide */
.dropdown-menu {
  border: none;
  border-radius: 0.75rem;
  box-shadow: 0 15px 30px -12px rgba(0,0,0,0.1);
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  display: block !important; /* override Bootstrap's inline style */
}
.dropdown:hover .dropdown-menu,
.dropdown.show .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-item {
  font-size: 0.8rem;
  padding: 0.4rem 1.2rem;
  transition: all 0.2s;
}
.dropdown-item:hover {
  background: #fff5f4;
  color: #C8392B;
  padding-left: 1.5rem;
}

/* 5. Mega menu product grid – cleaner */
.mega-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.25rem;
}
.mega-products-grid .dropdown-item {
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
}

/* 6. Quick access row – more compact, hover lift */
.quick-access {
  background: #fff;
  border-top: 1px solid #eff3f6;
  border-bottom: 1px solid #eff3f6;
  padding: 0;
}
.qa-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.25rem;
}
.qa-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  color: #334155;
  transition: all 0.2s;
  border-radius: 40px;
}
.qa-item:hover {
  background: #fff5f4;
  color: #C8392B;
  transform: translateY(-2px);
}
.qa-icon {
  font-size: 1.1rem;
}

/* 7. Top bar – keep but refine spacing */
#top-bar {
  padding: 4px 0;
  font-size: 11px;
}
.topbar-item {
  font-size: 11px;
}

/* 8. Sticky header with slight blur */
#agsar-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 10px rgba(0,0,0,0.02);
}

/* 9. Mobile responsive adjustments */
@media (max-width: 991px) {
  .navbar-nav .nav-link {
    padding: 0.5rem 0 !important;
  }
  .nav-cta {
    margin-left: 0;
    margin-top: 0.5rem;
    text-align: center;
  }
  .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding-left: 1rem;
  }
  .dropdown:hover .dropdown-menu { display: none; }
  .dropdown.show .dropdown-menu { display: block !important; }
}
<link rel="stylesheet" href="css/agsar-category-banner-responsive-final.css">