/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #222;
  background: #fff;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== CSS VARIABLES ===== */
:root {
  --blue-dark:  #b30000;
  --blue-mid:   #cc0000;
  --blue:       #e00000;
  --blue-light: #ff3333;
  --accent:     #cc0000;
  --white:      #000000;
  --gray-light: #ffffff;
  --gray:       #000000;
  --shadow:     0 8px 32px rgba(179, 0, 0, 0.12);
  --radius:     14px;
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
}

/* ===== ANIMATIONS KEYFRAMES ===== */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes bounceY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(10px); }
}
@keyframes float1 {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: .18; }
  50%       { transform: translateY(-22px) rotate(12deg); opacity: .28; }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: .14; }
  50%       { transform: translateY(18px) rotate(-10deg); opacity: .22; }
}
@keyframes float3 {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: .12; }
  50%       { transform: translateY(-14px) rotate(8deg); opacity: .2; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes navSlide {
  from { opacity: 0; transform: translateY(-100%); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(204, 0, 0, 0.4); }
  50%       { box-shadow: 0 0 0 12px rgba(204,0,0,0); }
}
@keyframes spinIn {
  from { transform: rotate(-180deg) scale(0); opacity: 0; }
  to   { transform: rotate(0deg) scale(1); opacity: 1; }
}
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(50px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ===== ANIMATION UTILITY CLASSES ===== */
.animate-fade-down { animation: fadeDown .8s ease both; }
.animate-fade-up   { animation: fadeUp .9s ease both; }
.delay-1 { animation-delay: .25s; }
.delay-2 { animation-delay: .5s; }
.delay-3 { animation-delay: .75s; }
.bounce   { animation: bounceY 1.4s ease-in-out infinite; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 16px rgba(255, 5, 5, 0.1);
  transition: background var(--transition), box-shadow var(--transition);
  animation: navSlide .6s ease both;
}
.navbar.scrolled {
  background: #ffffff;
}
.nav-container {
  max-width: 1200px; margin: auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  width: 500px;
}
.logo-img {
  height: 48px; width: auto;
  object-fit: contain;
  transition: transform var(--transition);
}
.nav-logo:hover .logo-img { transform: scale(1.07); }
.logo-fallback {
  display: none;
  align-items: center; gap: 8px;
  color: var(--blue-dark); font-size: 1.4rem; font-weight: 700;
}
.logo-fallback i { color: var(--blue-light); }
.nav-links {
  display: flex; gap: 6px; align-items: center;
}
.navbar.scrolled .nav-links li a:hover,
.navbar.scrolled .nav-links li a.active { background: rgb(255, 255, 255); }

.nav-links li a {
  color: var(--blue-dark); font-size: .96rem; font-weight: 500;
  padding: 8px 14px; border-radius: 6px;
  transition: background var(--transition), color var(--transition);
  position: relative;
}
.nav-links li a::after {
  content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 2px; background: var(--blue-light);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
  border-radius: 2px;
}
.nav-links li a:hover::after,
.nav-links li a.active::after { transform: scaleX(1); }
.nav-links li a:hover,
.nav-links li a.active { background: rgb(255, 255, 255); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 26px; height: 2px; background: var(--blue-dark);
  border-radius: 2px; transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO BANNER ===== */
.hero-banner {
  margin-top: 76px;
  width: 100%;
  line-height: 0;
  overflow: hidden; /* prevent any stray transform overflow */
}
.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transform: none !important; /* block any JS parallax leftover */
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: #fff;
  max-width: 800px; padding: 0 24px;
  margin-top: 70px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.5);
  color: #fff; font-size: .85rem; font-weight: 600;
  padding: 6px 18px; border-radius: 50px; letter-spacing: .5px;
  margin-bottom: 22px; backdrop-filter: blur(6px);
}
.hero-content h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800; line-height: 1.15; margin-bottom: 22px;
}
.hero-content h1 .highlight {
  color: var(--blue-light);
  text-shadow: 0 0 30px rgba(255,80,80,.5);
}
.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.82); line-height: 1.7;
  margin-bottom: 36px; max-width: 640px; margin-left: auto; margin-right: auto;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  font-size: 1rem; font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: pointer; border: 2px solid transparent;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 6px 24px rgba(204, 0, 0, 0.35);
  animation: pulse 2.5s ease-in-out infinite;
}
.btn-primary:hover { background: #aa0000; box-shadow: 0 10px 30px rgba(204,0,0,.5); }
.btn-outline {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover { background: rgb(255, 255, 255); border-color: #fff; }
.btn-white {
  background: #fff; color: var(--blue-dark);
  box-shadow: 0 6px 24px rgba(0,0,0,.15);
}
.btn-white:hover { background: #ffe5e5; }
.btn-outline-white {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); }

.hero-scroll-hint {
  margin-top: 48px; display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  color: rgba(255,255,255,.5); font-size: .82rem; letter-spacing: 1px;
}

/* Floating hero icons */
.hero-float {
  position: absolute; font-size: 6rem; color: rgba(255,255,255,.15);
  pointer-events: none; z-index: 1;
}
.float-1 { top: 15%; left: 8%; animation: float1 6s ease-in-out infinite; }
.float-2 { bottom: 20%; right: 7%; animation: float2 7s ease-in-out infinite 1s; }
.float-3 { top: 55%; left: 5%; animation: float3 5.5s ease-in-out infinite .5s; }

/* ===== MARQUEE STRIP ===== */
.marquee-strip {
  background: linear-gradient(90deg, var(--blue-dark), var(--blue-mid));
  padding: 13px 0; overflow: hidden; white-space: nowrap;
}
.marquee-track {
  display: inline-flex; gap: 48px;
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  color: #fff; font-size: .9rem; font-weight: 600; letter-spacing: .5px;
  display: flex; align-items: center; gap: 8px;
}
.marquee-track i { color: var(--blue-light); }

/* ===== SHARED SECTION STYLES ===== */
.section { padding: 90px 0; }
.container { max-width: 1200px; margin: auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block; background: #ffe5e5; color: var(--blue-dark);
  font-size: .8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 16px; border-radius: 50px; margin-bottom: 14px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800; color: #111; margin-bottom: 12px;
}
.section-header p { color: var(--gray); font-size: 1.05rem; max-width: 560px; margin: auto; }

/* ===== FEATURES GRID ===== */
.features { background: var(--gray-light); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.feature-card {
  background: #fff; border-radius: var(--radius);
  padding: 36px 28px; box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-bottom: 4px solid transparent;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue-dark), var(--blue-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(179,0,0,.18); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 62px; height: 62px; border-radius: 14px;
  background: color-mix(in srgb, var(--icon-color) 12%, white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--icon-color);
  margin-bottom: 20px;
  transition: transform var(--transition), background var(--transition);
}
.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(5deg);
  background: color-mix(in srgb, var(--icon-color) 22%, white);
}
.feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: #111; }
.feature-card p { color: var(--gray); line-height: 1.65; font-size: .95rem; margin-bottom: 18px; }
.card-link {
  color: var(--blue-dark); font-weight: 600; font-size: .9rem;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap var(--transition), color var(--transition);
}
.card-link:hover { gap: 10px; color: var(--accent); }

/* ===== STATS SECTION ===== */
.stats-section {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #4a0000 100%);
  padding: 70px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px; text-align: center;
}
.stat-item { color: #fff; }
.stat-item i {
  font-size: 2.2rem; color: var(--blue-light);
  margin-bottom: 14px; display: block;
  transition: transform var(--transition);
}
.stat-item:hover i { transform: scale(1.25) rotate(-8deg); }
.stat-item .stat-number {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 900; line-height: 1;
  display: inline;
}
.stat-item .stat-plus {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800; color: var(--accent);
  display: inline;
}
.stat-item p {
  margin-top: 8px; font-size: .95rem;
  color: rgba(255,255,255,.7); letter-spacing: .5px;
}

/* ===== WHY US ===== */
.why-us { background: #fff; }
.why-us-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.why-us-image {
  position: relative; border-radius: var(--radius); overflow: visible;
}
.why-us-image img {
  width: 100%; border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(179,0,0,.2);
  transition: transform var(--transition);
}
.why-us-image:hover img { transform: scale(1.02); }
.why-us-image.no-image {
  min-height: 380px;
  background: linear-gradient(135deg, #ffe5e5, #ffb3b3);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.why-us-image.no-image::after {
  content: '\f02f'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  font-size: 6rem; color: rgba(179,0,0,.2);
}
.experience-badge {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--accent); color: #fff;
  width: 110px; height: 110px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(204,0,0,.4);
  animation: spinIn .8s ease both .4s;
}
.exp-number { font-size: 1.9rem; font-weight: 900; line-height: 1; }
.exp-text    { font-size: .62rem; font-weight: 600; text-align: center; line-height: 1.3; }

.why-us-content .section-tag { margin-bottom: 12px; }
.why-us-content h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800; margin-bottom: 16px; color: #111;
}
.why-us-content > p { color: var(--gray); line-height: 1.7; margin-bottom: 28px; }
.why-list { margin-bottom: 34px; display: flex; flex-direction: column; gap: 13px; }
.why-list li {
  display: flex; align-items: flex-start; gap: 12px;
  color: #333; font-size: .98rem; line-height: 1.5;
}
.why-list li i { color: #b30000; font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }

/* ===== BRANDS SECTION ===== */
.brands-section { background: var(--gray-light); }
.brands-grid {
  display: flex; flex-wrap: wrap; gap: 20px;
  justify-content: center; align-items: center;
}
.brand-item {
  background: #fff; border-radius: 10px;
  padding: 18px 36px; font-size: 1.1rem; font-weight: 700;
  color: var(--blue-dark); box-shadow: 0 4px 16px rgba(179,0,0,.09);
  transition: transform var(--transition), box-shadow var(--transition), color var(--transition);
  cursor: default;
}
.brand-item:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 32px rgba(179,0,0,.18);
  color: var(--accent);
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative; padding: 90px 24px;
  background: linear-gradient(120deg, var(--blue-dark) 0%, #4a0000 100%);
  background-image:
    linear-gradient(120deg, rgba(179,0,0,0.92) 0%, rgba(80,0,0,0.95) 100%),
    url('../images/hero-bg.jpg');
  background-size: cover; background-position: center;
  text-align: center; overflow: hidden;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,80,80,.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 2; max-width: 700px; margin: auto; }
.cta-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; color: #000000; margin-bottom: 16px;
}
.cta-content p { color: rgba(255,255,255,.78); font-size: 1.1rem; margin-bottom: 36px; line-height: 1.6; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.slide-left  { transform: translateX(-50px); }
.reveal.slide-right { transform: translateX(50px); }
.reveal.slide-left.visible,
.reveal.slide-right.visible { transform: translateX(0); }

/* ===== FOOTER ===== */
.footer { background: #111111; color: rgba(255,255,255,.75); padding: 70px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px; margin-bottom: 50px;
}
.footer-col .footer-logo { margin-bottom: 16px; }
.footer-col .footer-logo img { height: 44px; }
.footer-logo-fallback {
  align-items: center; gap: 10px;
  color: #fff; font-size: 1.4rem; font-weight: 700;
}
.footer-logo-fallback i { color: var(--blue-light); }
.footer-col p { line-height: 1.7; font-size: .93rem; }
.footer-col h4 {
  color: #fff; font-size: 1rem; font-weight: 700;
  margin-bottom: 18px; position: relative; padding-bottom: 10px;
}
.footer-col h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 36px; height: 2px; background: var(--blue-light); border-radius: 2px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .93rem; color: rgba(255,255,255,.65);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-col ul li a:hover { color: var(--blue-light); padding-left: 6px; }
.contact-info li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .92rem; color: rgba(255,255,255,.65); line-height: 1.55;
}
.contact-info li i { color: var(--blue-light); margin-top: 3px; flex-shrink: 0; }
.social-links { display: flex; gap: 10px; margin-top: 18px; }
.social-links a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.85); font-size: 1rem;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.social-links a:hover { background: var(--blue-light); color: #fff; border-color: var(--blue-light); transform: translateY(-4px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 24px;
  text-align: center;
  font-size: .88rem;
  color: rgba(255,255,255,.5);
}
.footer-bottom p { margin: 0; line-height: 1.6; }
.footer-bottom a {
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-bottom a:hover { color: #fff; }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--blue-dark); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; box-shadow: 0 4px 18px rgba(179,0,0,.4);
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  transform: translateY(20px);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--accent); transform: translateY(-4px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-us-inner { grid-template-columns: 1fr; gap: 40px; }
  .experience-badge { bottom: -14px; right: -8px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 70px; left: 0; right: 0;
    background: #ffffff;
    padding: 12px 0; box-shadow: 0 8px 24px rgba(0,0,0,.15);
  }
  .nav-links li a { color: var(--blue-dark); }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: 12px 24px; border-radius: 0; display: block; }
  .hamburger { display: flex; }
  .hero-float { font-size: 4rem; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.9rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .experience-badge { width: 90px; height: 90px; }
  .exp-number { font-size: 1.5rem; }
}

/* ===== ABOUT PREVIEW (Homepage) ===== */
.about-preview { background: #fff; }
.about-preview-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.about-preview-image {
  position: relative; border-radius: var(--radius); overflow: visible;
}
.about-preview-image img {
  width: 100%; border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(179,0,0,.18);
  transition: transform var(--transition);
}
.about-preview-image:hover img { transform: scale(1.02); }
.about-preview-image.no-image {
  min-height: 400px;
  background: linear-gradient(135deg, #ffe5e5, #ffb3b3);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.about-preview-image.no-image::after {
  content: '\f02f'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  font-size: 7rem; color: rgba(179,0,0,.18);
}
.about-preview-content h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  font-weight: 800; color: #111; margin: 12px 0 18px;
}
.about-preview-content p {
  color: var(--gray); line-height: 1.75; font-size: .97rem; margin-bottom: 16px;
}
.about-highlights { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.about-highlight-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--gray-light); border-radius: 10px; padding: 14px 18px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.about-highlight-item:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.about-highlight-item i {
  font-size: 1.5rem; color: var(--accent); flex-shrink: 0; margin-top: 2px;
}
.about-highlight-item strong { display: block; font-size: .96rem; color: #111; }
.about-highlight-item span  { font-size: .84rem; color: var(--gray); }

@media (max-width: 1024px) {
  .about-preview-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ===== PRODUCTS PREVIEW ===== */
.products-preview { background: #fff; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}

.product-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(179,0,0,.18);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  background: #fff5f5;
  aspect-ratio: 1 / 1;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.product-card:hover .product-img-wrap img { transform: scale(1.07); }

.product-img-wrap.no-img {
  display: flex; align-items: center; justify-content: center;
}
.product-img-wrap.no-img::after {
  content: '\f02f'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  font-size: 4rem; color: rgba(179,0,0,.2);
}

/* Product badges */
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--accent); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .6px;
  text-transform: uppercase; padding: 4px 12px;
  border-radius: 50px;
}
.product-badge--new  { background: #b30000; }
.product-badge--rent { background: #333333; }

.product-info {
  padding: 20px 22px 24px;
  display: flex; flex-direction: column; flex: 1;
}
.product-brand {
  font-size: .76rem; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--blue-light);
  margin-bottom: 6px; display: block;
}
.product-info h3 {
  font-size: 1.05rem; font-weight: 700; color: #111;
  margin-bottom: 8px;
}
.product-info p {
  font-size: .9rem; color: var(--gray);
  line-height: 1.6; margin-bottom: 16px; flex: 1;
}

/* Section CTA (centred button below grids) */
.section-cta {
  text-align: center;
  margin-top: 8px;
}

/* ===== GALLERY PREVIEW ===== */
.gallery-preview { background: #fff5f5; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-bottom: 48px;
}

/* First large item spans 2 rows on the left */
.gallery-item--large:first-child {
  grid-row: span 2;
}
/* Last large item spans 2 rows on the right */
.gallery-item--large:last-child {
  grid-row: span 2;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ffcccc;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}
.gallery-item--large { aspect-ratio: unset; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-item.no-img {
  display: flex; align-items: center; justify-content: center;
}
.gallery-item.no-img::after {
  content: '\f03e'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  font-size: 3.5rem; color: rgba(179,0,0,.2);
}

/* Hover overlay */
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(179,0,0,.75) 0%, rgba(179,0,0,.15) 60%, transparent 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  gap: 6px; padding: 20px 16px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i {
  font-size: 1.8rem; color: #fff;
  transform: scale(.7);
  transition: transform var(--transition);
}
.gallery-item:hover .gallery-overlay i { transform: scale(1); }
.gallery-overlay span {
  color: #fff; font-size: .88rem; font-weight: 600;
  text-align: center; letter-spacing: .3px;
}

/* ===== RESPONSIVE — products & gallery ===== */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item--large:first-child,
  .gallery-item--large:last-child {
    grid-row: span 1;
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 768px) {
  .products-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
  .gallery-grid  { grid-template-columns: 1fr 1fr; gap: 12px; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: 1fr; }
  .gallery-item--large:first-child,
  .gallery-item--large:last-child { grid-row: span 1; aspect-ratio: 4 / 3; }
}

/* ============================================================
   PAGE HERO (shared by products / services / gallery / contact)
   ============================================================ */
.page-hero {
  position: relative; min-height: 360px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blue-dark) 0%, #4a0000 60%, #111 100%);
  background-image:
    linear-gradient(135deg, rgba(179,0,0,.92) 0%, rgba(60,0,0,.96) 100%),
    url('../images/banner1.png');
  background-size: cover; background-position: center;
  overflow: hidden; text-align: center;
  padding-top: 90px;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,80,80,.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-content {
  position: relative; z-index: 2; color: #fff; padding: 40px 24px;
}
.page-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; margin: 14px 0 12px;
  color: #ffffff;
}
.page-hero-content h1 .highlight {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.5);
  text-underline-offset: 6px;
}
.page-hero-content p {
  font-size: 1.1rem; color: rgba(255,255,255,.8); margin-bottom: 20px;
}
.breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .9rem; color: rgba(255,255,255,.65);
}
.breadcrumb a { color: var(--blue-light); transition: color var(--transition); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb i { font-size: .7rem; }

/* ============================================================
   FILTER TABS (products & gallery)
   ============================================================ */
.filter-tabs {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-bottom: 40px;
}
.filter-btn {
  padding: 9px 26px; border-radius: 50px;
  border: 2px solid #ddd; background: #fff;
  font-size: .9rem; font-weight: 600; color: #444;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--blue-dark); color: #fff; border-color: var(--blue-dark);
}

/* ============================================================
   PRODUCTS PAGE — specs list inside cards
   ============================================================ */
.products-page { background: #fff; }

.product-specs {
  margin: 10px 0 18px; display: flex; flex-direction: column; gap: 7px;
}
.product-specs li {
  display: flex; align-items: center; gap: 8px;
  font-size: .87rem; color: #444;
}
.product-specs li i { color: var(--blue-dark); font-size: .85rem; flex-shrink: 0; }

/* hidden card when filtered out */
.product-card.hidden,
.gallery-full-item.hidden { display: none; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-page { background: #fff; }

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.service-detail-card {
  display: flex; gap: 24px; align-items: flex-start;
  background: #fff; border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-left: 4px solid var(--blue-dark);
}
.service-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(179,0,0,.15);
}
.service-detail-icon {
  width: 60px; height: 60px; flex-shrink: 0; border-radius: 14px;
  background: color-mix(in srgb, var(--svc-color) 12%, white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--svc-color);
  transition: transform var(--transition), background var(--transition);
}
.service-detail-card:hover .service-detail-icon {
  transform: scale(1.15) rotate(6deg);
  background: color-mix(in srgb, var(--svc-color) 22%, white);
}
.service-detail-body h3 {
  font-size: 1.15rem; font-weight: 700; color: #111; margin-bottom: 10px;
}
.service-detail-body p {
  color: #444; line-height: 1.7; font-size: .94rem; margin-bottom: 14px;
}
.service-detail-list {
  display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px;
}
.service-detail-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: .88rem; color: #333;
}
.service-detail-list li i { color: var(--blue-dark); font-size: .88rem; }

/* HOW IT WORKS */
.how-it-works {
  background: #fff5f5;
  overflow: visible;
}
.how-it-works .container {
  overflow: visible;
}
.steps-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  overflow: visible;
}
.step-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 32px 48px;
  text-align: center;
  box-shadow: var(--shadow);
  flex: 1; min-width: 220px; max-width: 300px;
  min-height: 320px;
  position: relative;
  overflow: visible;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.step-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(179,0,0,.15); }
/* Number badge — static in normal flow, always fully visible */
.step-number {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue-dark);
  color: #fff;
  font-size: .9rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(179,0,0,.4);
  flex-shrink: 0;
  position: static;
  transform: none;
  left: auto; top: auto;
}
.step-icon {
  font-size: 2rem; color: var(--blue-dark);
  width: 64px; height: 64px; border-radius: 50%;
  background: #ffe5e5;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin: 0;
}
.step-card h3 { font-size: 1.05rem; font-weight: 700; margin: 0; color: #111; }
.step-card p  { font-size: .9rem; color: #444; line-height: 1.7; flex: 1; margin: 0; }
.step-divider {
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--blue-dark);
  padding: 0 10px;
  flex-shrink: 0;
  align-self: center;
  margin-top: 0;
}
@media (max-width: 768px) {
  .steps-grid { flex-direction: column; align-items: center; gap: 44px; padding-top: 30px; }
  .step-divider { transform: rotate(90deg); margin: 0; align-self: auto; }
  .step-card { width: 100%; max-width: 340px; }
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-page { background: #fff; }

.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  margin-bottom: 48px;
}
.gallery-full-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  background: #ffcccc;
  aspect-ratio: 1 / 1; cursor: pointer;
}
.gallery-full-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease; display: block;
}
.gallery-full-item:hover img { transform: scale(1.08); }
.gallery-full-item.no-img::after {
  content: '\f03e'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  font-size: 3rem; color: rgba(179,0,0,.2);
  display: flex; align-items: center; justify-content: center;
  height: 100%;
}

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.92);
  align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-img-wrap {
  max-width: 860px; width: 90%; text-align: center;
}
.lightbox-img-wrap img {
  max-height: 75vh; width: auto; max-width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.lightbox-img-wrap p {
  color: rgba(255,255,255,.8); margin-top: 14px; font-size: .95rem;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute; background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2); color: #fff;
  width: 46px; height: 46px; border-radius: 50%;
  font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--blue-dark); }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev  { left: 20px;  top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 20px; top: 50%; transform: translateY(-50%); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-section { background: #fff5f5; padding-bottom: 0; }

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.contact-info-card {
  background: #fff; border-radius: var(--radius);
  padding: 32px 24px; text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid var(--blue-dark);
}
.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(179,0,0,.15);
}
.contact-card-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: #ffe5e5; color: var(--blue-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 16px;
  transition: background var(--transition), color var(--transition);
}
.contact-info-card:hover .contact-card-icon { background: var(--blue-dark); color: #fff; }
.contact-info-card h4 {
  font-size: 1rem; font-weight: 700; color: #111; margin-bottom: 10px;
}
.contact-info-card p { color: #444; font-size: .93rem; line-height: 1.7; }
.contact-info-card a { color: var(--blue-dark); font-weight: 600; }
.contact-info-card a:hover { color: var(--blue-light); }

/* Contact form + map layout */
.contact-form-section { background: #fff; }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
}
.contact-form-wrap h2,
.contact-map-wrap h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800; color: #111; margin: 12px 0 10px;
}
.contact-form-wrap p,
.contact-map-wrap > p { color: #444; line-height: 1.7; margin-bottom: 28px; }

/* Form fields */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: .88rem; font-weight: 600; color: #222;
}
.form-group .required { color: var(--blue-dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px; border-radius: 10px;
  border: 2px solid #e0e0e0; font-size: .95rem;
  font-family: inherit; color: #222; background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-dark);
  box-shadow: 0 0 0 4px rgba(179,0,0,.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-success {
  color: #2e7d32; background: #e8f5e9; border-radius: 8px;
  padding: 12px 16px; font-size: .93rem; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}

/* Map placeholder */
.map-placeholder {
  background: linear-gradient(135deg, #ffe5e5, #fff);
  border-radius: var(--radius); border: 2px dashed #ffb3b3;
  min-height: 220px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  padding: 36px 24px; text-align: center; margin-bottom: 24px;
}
.map-placeholder i { font-size: 3rem; color: var(--blue-dark); }
.map-placeholder span { color: #444; font-size: .95rem; font-weight: 500; }

/* WhatsApp CTA strip */
.whatsapp-cta {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border-radius: var(--radius);
  padding: 20px 22px; box-shadow: var(--shadow);
  flex-wrap: wrap;
}
.whatsapp-cta > i {
  font-size: 2.2rem; color: #25D366; flex-shrink: 0;
}
.whatsapp-cta > div { flex: 1; }
.whatsapp-cta strong { display: block; font-size: .97rem; color: #111; }
.whatsapp-cta span  { font-size: .84rem; color: #666; }

/* ============================================================
   RESPONSIVE — new pages
   ============================================================ */
@media (max-width: 1024px) {
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .services-detail-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .gallery-full-grid { grid-template-columns: 1fr 1fr; }
  .contact-cards-grid { grid-template-columns: 1fr 1fr; }
  .service-detail-card { flex-direction: column; }
}
@media (max-width: 480px) {
  .gallery-full-grid { grid-template-columns: 1fr; }
  .contact-cards-grid { grid-template-columns: 1fr; }
  .whatsapp-cta { flex-direction: column; text-align: center; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* ===== ABOUT PAGE — TEAM SECTION ===== */
.team-about-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: start;
}
.team-about-text p {
  color: #444; line-height: 1.8; font-size: .97rem; margin-bottom: 18px;
}
.team-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.team-pillar {
  background: #fff5f5;
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  border-top: 3px solid var(--blue-dark);
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-pillar:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.pillar-icon {
  font-size: 1.8rem;
  color: var(--blue-dark);
  margin-bottom: 12px;
}
.team-pillar h4 {
  font-size: .97rem; font-weight: 700; color: #111; margin-bottom: 8px;
}
.team-pillar p {
  font-size: .86rem; color: #555; line-height: 1.6;
}

/* ===== ABOUT PAGE — WHY US SECTION ===== */
.why-us-inner-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.why-us-desc p {
  color: #444; line-height: 1.8; font-size: .97rem; margin-bottom: 18px;
}
.why-us-points {
  background: #fff5f5;
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--blue-dark);
}
.why-us-points h3 {
  font-size: 1.15rem; font-weight: 700; color: #111;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid #ffcccc;
}
.why-points-list {
  display: flex; flex-direction: column; gap: 14px;
}
.why-points-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: .95rem; color: #222; font-weight: 500;
}
.why-points-list li i {
  color: var(--blue-dark); font-size: 1rem; flex-shrink: 0;
}

/* ===== RESPONSIVE — about team & why us ===== */
@media (max-width: 1024px) {
  .team-about-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-us-inner-layout { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .team-pillars { grid-template-columns: 1fr; }
}

/* ===== NAV DROPDOWN ===== */
.nav-links li.has-dropdown { position: relative; }

.nav-links li.has-dropdown > a::after {
  content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 2px; background: var(--blue-light);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition); border-radius: 2px;
}
.nav-links li.has-dropdown > a:hover::after { transform: scaleX(1); }

.dropdown-menu {
  display: none;
  position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff;
  min-width: 240px;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,.14);
  border-top: 3px solid var(--blue-dark);
  padding: 8px 0;
  z-index: 2000;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}
.nav-links li.has-dropdown:hover .dropdown-menu,
.nav-links li.has-dropdown:focus-within .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.dropdown-menu li { list-style: none; }
.dropdown-menu li a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px;
  color: #222; font-size: .9rem; font-weight: 500;
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
  border-radius: 0;
}
.dropdown-menu li a i {
  width: 18px; text-align: center;
  color: var(--blue-dark); font-size: .85rem; flex-shrink: 0;
}
.dropdown-menu li a:hover {
  background: #fff5f5;
  color: var(--blue-dark);
  padding-left: 26px;
}
.dropdown-menu .dropdown-divider {
  height: 1px; background: #f0f0f0; margin: 6px 0;
}
.dropdown-menu .dropdown-footer {
  padding: 8px 20px 4px;
}
.dropdown-menu .dropdown-footer a {
  color: var(--blue-dark); font-weight: 700; font-size: .85rem;
  padding: 0;
}
.dropdown-menu .dropdown-footer a:hover {
  background: none; padding-left: 0; color: var(--blue-light);
}

/* Dropdown arrow indicator on parent link */
.has-dropdown > a .drop-arrow {
  font-size: .7rem; margin-left: 4px;
  transition: transform var(--transition); display: inline-block;
}
.has-dropdown:hover > a .drop-arrow { transform: rotate(180deg); }

/* Mobile dropdown */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid var(--blue-dark);
    border-radius: 0;
    margin-left: 16px;
    padding: 0;
    display: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .nav-links li.has-dropdown.open .dropdown-menu { display: block; }
  .dropdown-menu li a { padding: 10px 16px; font-size: .88rem; }
}

/* ===== PRODUCT CATEGORY CARDS (products.html) ===== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.category-card {
  display: flex; flex-direction: column;
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform var(--transition), box-shadow var(--transition);
  border-bottom: 3px solid transparent;
}
.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(179,0,0,.16);
  border-bottom-color: var(--blue-dark);
}
.category-img {
  width: 100%; aspect-ratio: 1/1;
  overflow: hidden; background: #fff5f5;
}
.category-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.category-card:hover .category-img img { transform: scale(1.07); }
.category-img.no-img::after {
  content: '\f02f'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  font-size: 3.5rem; color: rgba(179,0,0,.18);
  display: flex; align-items: center; justify-content: center; height: 100%;
}
.category-info { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.category-tag {
  display: inline-block; background: #ffe5e5; color: var(--blue-dark);
  font-size: .72rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 3px 12px; border-radius: 50px;
  margin-bottom: 8px;
}
.category-info h3 {
  font-size: 1.05rem; font-weight: 700; color: #111; margin-bottom: 6px;
}
.category-info p { font-size: .85rem; color: #777; margin-bottom: 14px; flex: 1; }
.category-link {
  font-size: .88rem; font-weight: 700; color: var(--blue-dark);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap var(--transition), color var(--transition);
}
.category-card:hover .category-link { gap: 10px; color: var(--blue-light); }

/* ===== INDIVIDUAL PRODUCT PAGE LAYOUT ===== */
.product-detail-section { background: #fff; }
.product-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
}
.product-detail-images { position: relative; }
.product-detail-main-img {
  width: 100%; border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(179,0,0,.14);
  background: #fff5f5;
}
.product-detail-main-img img {
  width: 100%; border-radius: var(--radius);
  display: block;
}
.product-detail-main-img.no-img {
  min-height: 320px; display: flex;
  align-items: center; justify-content: center;
}
.product-detail-main-img.no-img::after {
  content: '\f02f'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  font-size: 6rem; color: rgba(179,0,0,.15);
}
.product-detail-content .product-brand-label {
  font-size: .8rem; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--blue-light);
  margin-bottom: 8px; display: block;
}
.product-detail-content h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800; color: #111; margin-bottom: 16px;
}
.product-detail-content .product-desc {
  color: #444; line-height: 1.8; font-size: .97rem; margin-bottom: 24px;
}
.product-detail-specs {
  background: #fff5f5; border-radius: var(--radius);
  padding: 24px 26px; margin-bottom: 28px;
}
.product-detail-specs h4 {
  font-size: .95rem; font-weight: 700; color: #111;
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 2px solid #ffcccc;
}
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid #ffe5e5; }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td {
  padding: 9px 4px; font-size: .9rem; vertical-align: top;
}
.spec-table td:first-child {
  font-weight: 600; color: #333; width: 45%; padding-right: 12px;
}
.spec-table td:last-child { color: #555; }
.product-detail-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

/* Related products strip */
.related-products { background: #fff5f5; }

@media (max-width: 1024px) {
  .product-detail-grid { grid-template-columns: 1fr; gap: 36px; }
  .category-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
}
@media (max-width: 480px) {
  .category-grid { grid-template-columns: 1fr 1fr; }
  .product-detail-actions { flex-direction: column; }
}

/* ============================================================
   ENHANCED ANIMATIONS
   ============================================================ */

/* --- Page load fade-in --- */
body { animation: bodyFadeIn .5s ease both; }
@keyframes bodyFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* --- Section tag pop-in --- */
.section-tag {
  animation: tagPop .6s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes tagPop {
  from { opacity: 0; transform: scale(.6) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* --- Stagger reveal variants --- */
.reveal.fade-up    { transform: translateY(50px); }
.reveal.fade-down  { transform: translateY(-50px); }
.reveal.fade-left  { transform: translateX(-60px); }
.reveal.fade-right { transform: translateX(60px); }
.reveal.zoom-in    { transform: scale(.85); }
.reveal.flip-x     { transform: perspective(600px) rotateX(25deg); opacity: 0; }

.reveal.fade-up.visible,
.reveal.fade-down.visible,
.reveal.fade-left.visible,
.reveal.fade-right.visible,
.reveal.zoom-in.visible,
.reveal.flip-x.visible {
  transform: none; opacity: 1;
}

/* --- Shimmer on cards --- */
.product-card,
.feature-card,
.category-card,
.service-detail-card,
.why-card,
.team-card,
.contact-info-card,
.mvv-card,
.step-card,
.team-pillar {
  position: relative; overflow: hidden;
}
.product-card::after,
.feature-card::after,
.category-card::after,
.service-detail-card::after,
.why-card::after,
.contact-info-card::after {
  content: '';
  position: absolute; top: -50%; left: -75%;
  width: 50%; height: 200%;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.18) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-20deg);
  transition: none;
  pointer-events: none;
  opacity: 0;
}
.product-card:hover::after,
.feature-card:hover::after,
.category-card:hover::after,
.service-detail-card:hover::after,
.why-card:hover::after,
.contact-info-card:hover::after {
  opacity: 1;
  animation: shimmerSlide .65s ease forwards;
}
@keyframes shimmerSlide {
  from { left: -75%; }
  to   { left: 130%; }
}

/* --- Floating badge animation --- */
.experience-badge,
.story-badge {
  animation: floatBadge 3.5s ease-in-out infinite;
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-8px) rotate(3deg); }
}

/* --- Marquee pulse icons --- */
.marquee-track i {
  animation: iconPulse 2s ease-in-out infinite;
}
@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.35); }
}

/* --- Brand item float on hover --- */
.brand-item {
  transition: transform var(--transition), box-shadow var(--transition), color var(--transition);
}
.brand-item:hover {
  animation: brandWobble .4s ease;
}
@keyframes brandWobble {
  0%   { transform: translateY(-5px) scale(1.05) rotate(0deg); }
  30%  { transform: translateY(-7px) scale(1.07) rotate(-2deg); }
  60%  { transform: translateY(-5px) scale(1.05) rotate(2deg); }
  100% { transform: translateY(-5px) scale(1.05) rotate(0deg); }
}

/* --- Button ripple --- */
.btn { position: relative; overflow: hidden; }
.btn .ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.35);
  transform: scale(0);
  animation: rippleAnim .6s linear;
  pointer-events: none;
}
@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

/* --- Navbar link underline grow --- */
.nav-links li a::after {
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}

/* --- Stat items bounce icon on scroll --- */
.stat-item.visible i {
  animation: statIconDrop .6s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes statIconDrop {
  from { transform: translateY(-20px) scale(0); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

/* --- Page hero content stagger --- */
.page-hero-content .hero-badge  { animation: fadeDown .6s ease both .1s; }
.page-hero-content h1           { animation: fadeUp   .7s ease both .25s; }
.page-hero-content p            { animation: fadeUp   .7s ease both .4s; }
.page-hero-content .breadcrumb  { animation: fadeUp   .7s ease both .55s; }

/* --- Product detail image entrance --- */
.product-detail-main-img img {
  transition: transform .6s cubic-bezier(.25,.46,.45,.94), box-shadow .4s ease;
}
.product-detail-main-img:hover img {
  transform: scale(1.04) rotate(1deg);
  box-shadow: 0 32px 80px rgba(179,0,0,.22);
}

/* --- Spec table row hover --- */
.spec-table tr {
  transition: background var(--transition);
}
.spec-table tr:hover {
  background: #fff0f0;
}

/* --- Footer col links slide --- */
.footer-col ul li a {
  transition: color var(--transition), padding-left var(--transition), letter-spacing var(--transition);
}
.footer-col ul li a:hover {
  letter-spacing: .3px;
}

/* --- Scroll progress bar --- */
#scrollProgress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue-dark), var(--blue-light));
  width: 0%; z-index: 9999;
  transition: width .1s linear;
  box-shadow: 0 0 8px rgba(179,0,0,.5);
}

/* --- Cursor glow dot --- */
#cursorGlow {
  position: fixed; pointer-events: none; z-index: 9998;
  width: 22px; height: 22px; border-radius: 50%;
  background: radial-gradient(circle, rgba(204,0,0,.35) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: transform .12s ease, width .2s ease, height .2s ease;
}

/* --- Section divider wave --- */
.wave-divider {
  width: 100%; overflow: hidden; line-height: 0;
  background: transparent;
}
.wave-divider svg { display: block; }

/* --- Highlight text gradient animate --- */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.page-hero-content h1 .highlight {
  background: linear-gradient(90deg, #fff 0%, #ffcccc 50%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
  text-decoration: none;
}

/* --- Gallery item zoom ripple --- */
.gallery-full-item,
.gallery-item {
  transition: transform .4s cubic-bezier(.25,.46,.45,.94), box-shadow .4s ease;
}
.gallery-full-item:hover,
.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 48px rgba(179,0,0,.2);
  z-index: 2;
}

/* --- Why-points list item stagger --- */
.why-points-list li {
  opacity: 0; transform: translateX(-20px);
  transition: opacity .4s ease, transform .4s ease;
}
.why-points-list li.anim-in {
  opacity: 1; transform: translateX(0);
}

/* --- Tooltip on brand items --- */
.brand-item { cursor: default; }

/* ============================================================
   FLOATING CONTACT WIDGET (right side)
   ============================================================ */
.float-widget {
  position: fixed;
  right: 20px;
  bottom: 90px;
  z-index: 9990;
  display: flex;
  flex-direction: column-reverse; /* toggle at BOTTOM, popup grows UPWARD */
  align-items: flex-end;
  gap: 0;
}
.float-widget.open {
  gap: 10px;
}

/* ── Toggle button ── */
.float-toggle {
  width: 62px; height: 62px; border-radius: 50%;
  background: #fff;
  border: 3px solid var(--blue-dark);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(179,0,0,.45);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
  position: relative; z-index: 2;
  animation: pulse 2.5s ease-in-out infinite;
  padding: 5px;
  overflow: hidden;
  flex-shrink: 0;
}
.float-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(179,0,0,.55);
}
.float-logo-img {
  width: 100%; height: 100%;
  object-fit: contain; border-radius: 50%;
  display: block;
  transition: opacity .3s ease;
}
.float-toggle i { font-size: 1.4rem; color: #fff; transition: all .3s ease; }
.float-icon-close { display: none; }

/* open state — hide logo, show X */
.float-widget.open .float-toggle {
  animation: none;
  background: #222;
  border-color: #222;
  padding: 0;
}
.float-widget.open .float-logo-img { display: none; }
.float-widget.open .float-icon-close {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
}

/* ── Popup container ── */
.float-popup {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transform: translateY(10px) scale(.95);
  transition: opacity .3s ease, transform .35s cubic-bezier(.34,1.56,.64,1),
              max-height .35s ease, visibility .3s ease;
}
.float-widget.open .float-popup {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  max-height: 320px;
  overflow: visible;
  transform: translateY(0) scale(1);
}

/* ── Each action button ── */
.float-btn {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 18px 10px 10px;
  border-radius: 50px;
  text-decoration: none; color: #fff;
  font-size: .88rem; font-weight: 600;
  box-shadow: 0 4px 18px rgba(0,0,0,.2);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease;
  white-space: nowrap;
}
.float-btn i {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; flex-shrink: 0;
}
.float-btn:hover {
  transform: translateX(-5px) scale(1.04);
  box-shadow: 0 8px 28px rgba(0,0,0,.28);
}

/* stagger entrance */
.float-popup .float-btn:nth-child(1) { transition-delay: .05s; }
.float-popup .float-btn:nth-child(2) { transition-delay: .1s; }
.float-popup .float-btn:nth-child(3) { transition-delay: .15s; }
.float-popup .float-btn:nth-child(4) { transition-delay: .2s; }

/* brand colours */
.float-btn--whatsapp { background: #25D366; }
.float-btn--whatsapp:hover { background: #1ebe5d; }
.float-btn--phone    { background: var(--blue-dark); }
.float-btn--phone:hover { background: #8b0000; }
.float-btn--phone2   { background: #333; }
.float-btn--phone2:hover { background: #111; }
.float-btn--email    { background: #cc0000; }
.float-btn--email:hover { background: #a00000; }

.float-label { font-size: .82rem; letter-spacing: .2px; }

/* tooltip on toggle */
.float-toggle::before {
  content: 'Contact Us';
  position: absolute; right: calc(100% + 10px); top: 50%;
  transform: translateY(-50%);
  background: #111; color: #fff;
  font-size: .73rem; font-weight: 600;
  padding: 5px 12px; border-radius: 50px;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.float-toggle:hover::before { opacity: 1; }
.float-widget.open .float-toggle::before { display: none; }

/* ── Responsive ── */
@media (max-width: 480px) {
  .float-widget { right: 12px; bottom: 80px; }
  .float-label  { display: none; }
  .float-btn    { padding: 10px; border-radius: 50%; }
  .float-btn i  { background: transparent; }
}
