/* =============================================
   VARIABLES
   ============================================= */
:root {
  --red: #c0132a;
  --maroon: #7a0012;
  --dark-maroon: #4a0009;
  --light-red: #e8294a;
  --pale: #fff5f6;
  --white: #ffffff;
  --text-dark: #1a0005;
  --text-gray: #5a3040;
  --gold: #d4a843;
  --nav-height: 70px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

section {
  padding: 100px 5%;
  width: 100%;
  overflow-x: hidden;
}

/* =============================================
   SCROLLBAR
   ============================================= */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-maroon); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* =============================================
   SECTION LABELS
   ============================================= */
.section-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  color: var(--dark-maroon);
  line-height: 1;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.8;
  max-width: 560px;
}

/* =============================================
   REVEAL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   NAVBAR
   ============================================= */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #ffffff;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: var(--nav-height);
  border-bottom: 2px solid var(--red);
  transition: height 0.3s ease, box-shadow 0.3s ease;
}

nav.scrolled {
  height: 58px;
  box-shadow: 0 4px 30px rgba(192, 19, 42, 0.35);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo img {
  height: 52px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

nav.scrolled .nav-logo img {
  height: 42px;
}

.nav-logo img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 4px;
}

.nav-links a {
  color: var(--dark-maroon);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 4px;
  transition: all 0.25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--light-red);
  transition: all 0.25s;
}

.nav-links a:hover::after {
  left: 14px;
  right: 14px;
}

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  border-radius: 4px;
  padding: 8px 18px !important;
}

.nav-cta:hover {
  background: var(--light-red) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(192, 19, 42, 0.35);
}

.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark-maroon);
  transition: all 0.3s;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   HERO
   ============================================= */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark-maroon) 0%, var(--maroon) 40%, var(--red) 80%, #e8294a 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(224, 199, 199, 0.8) 30px, rgba(207, 83, 83, 0.7) 31px);
}

.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(143, 3, 3, 0.35);
  animation: floatShape 8s ease-in-out infinite;
}

.hero-shape:nth-child(1) { width: 400px; height: 400px; top: -100px; right: -80px; animation-delay: 0s; }
.hero-shape:nth-child(2) { width: 250px; height: 250px; bottom: 50px; left: -60px; animation-delay: 3s; }
.hero-shape:nth-child(3) { width: 180px; height: 180px; top: 40%; right: 15%; animation-delay: 5s; }

@keyframes floatShape {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-text .badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeInUp 0.8s ease both;
}

.hero-text h1 {
  animation: fadeInUp 0.8s ease 0.15s both;
  margin-bottom: 20px;
}

.hero-text h1 img {
  width: 100%;
  height: auto;
}

.hero-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease 0.45s both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-primary {
  background: var(--white);
  color: var(--maroon);
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s;
  border: 2px solid transparent;
  box-shadow: 0 4px 20px rgba(74, 0, 9, 0.5);
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--dark-maroon);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 48px;
  animation: fadeInUp 0.8s ease 0.75s both;
  flex-wrap: wrap;
}

.stat { text-align: left; }

.stat .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1;
}

.stat .lbl {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  align-self: stretch;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInRight 1s ease 0.3s both;
}

.hero-logo-wrap {
  background: #93071f;
  border-radius: 8px;
  border: 1px solid rgba(148, 18, 18, 0.97);
  padding: 6px;
  animation: bagReveal 1.2s 0.4s both;
  width: 100%;
}

.hero-logo-wrap img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: cover;
  border-radius: 5px;
  animation: floatImg 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

@keyframes bagReveal {
  from { opacity: 0; transform: scale(0.7) rotate(-10deg); }
  to   { opacity: 1; transform: scale(1) rotate(0deg); }
}

@keyframes floatImg {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* =============================================
   TICKER
   ============================================= */
.ticker {
  background: var(--maroon);
  padding: 12px 0;
  overflow: hidden;
  border-top: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
}

.ticker-inner {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: tickerScroll 25s linear infinite;
}

.ticker-inner span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  flex-shrink: 0;
}

.ticker-inner span::before {
  content: '◆';
  margin-right: 20px;
  color: var(--gold);
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================
   ABOUT
   ============================================= */
#about {
  background: var(--pale);
  position: relative;
  overflow: hidden;
}

#about::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 10, 17, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-card {
  background: linear-gradient(to bottom right, #fff, #faf6f6);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(122, 0, 18, 0.3);
  border-left: 4px solid var(--red);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(148, 18, 18, 0.4);
}

.about-card::after {
  content: '1';
  position: absolute;
  right: 20px;
  bottom: -10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 8rem;
  color: rgba(192, 19, 42, 0.04);
  line-height: 1;
  pointer-events: none;
}

.about-card-tag {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.about-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--dark-maroon);
  margin-bottom: 16px;
  line-height: 1.3;
}

.about-card p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.8;
}

.about-mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.mini-stat {
  background: var(--pale);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  border: 1px solid rgba(192, 19, 42, 0.1);
  transition: all 0.3s ease;
}

.mini-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(192, 19, 42, 0.3);
}

.mini-stat .n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--red);
  display: block;
  line-height: 1;
}

.mini-stat .l {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-content .section-desc {
  max-width: 100%;
  margin-bottom: 24px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(203, 7, 7, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-row:hover {
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(210, 11, 38, 0.25);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--red), var(--maroon));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.feature-row h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark-maroon);
  margin-bottom: 4px;
}

.feature-row p {
  font-size: 0.8rem;
  color: var(--text-gray);
  line-height: 1.8;
}

.vision-mission {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fdf2f2, #fff);
  text-align: center;
}

.section-title {
  font-size: 34px;
  margin-bottom: 50px;
  color: #8b1e1e;
  letter-spacing: 1px;
}

.vm-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Card Base */
.vm-card {
  position: relative;
  width: 500px;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Background images */
.vm-card.vision {
  background-image: url("assets/vision.jpeg"); /* your generated image */
}

.vm-card.mission {
  background-image: url("assets/mission.jpeg"); /* your generated image */
}

/* Overlay Glass Effect */
.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  background: rgba(77, 4, 4, 0.295);
  backdrop-filter: blur(1px);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

/* Text Styling */
.overlay h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

.overlay p,
.overlay li {
  font-size: 15px;
  line-height: 1.6;
}

/* Hover Effects */
.vm-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* List */
.overlay ul {
  padding-left: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .vm-card {
    width: 100%;
    height: 260px;
  }
}

/* =============================================
   METRICS
   ============================================= */
#metrics {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--dark-maroon) 0%, var(--maroon) 40%, var(--red) 80%, #e8294a 100%);
  background-size: 400% 400%;
  position: relative;
  animation: gradientMove 12s ease infinite;
  color: #fff;
}

#metrics::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='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.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/g%3E%3C/svg%3E");
  pointer-events: none;
}

@keyframes gradientMove {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.metrics-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.metric {
  text-align: center;
  padding: 20px 30px;
  transition: transform 0.4s;
}

.metric:hover {
  transform: translateY(-8px) scale(1.05);
}

.metric-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.metric-num span { color: var(--gold); }

.metric-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  line-height: 1.4;
}

/* =============================================
   SERVICES
   ============================================= */
#services { background: var(--white); }

.services-inner { max-width: 1300px; margin: 0 auto; }

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-header .section-desc {
  margin: 0 auto;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(117, 7, 7, 0.6);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  box-shadow: 8px 8px 24px rgba(148, 18, 18, 0.4);
  background-size: cover;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(150, 7, 7, 0.5);
  border-color: var(--red);
}

.service-card:nth-child(1) { background-image: url(assets/pkg.png); background-position: center; background-repeat: no-repeat; }
.service-card:nth-child(2) { background-image: url(assets/hsptl.png); background-position: center; background-repeat: no-repeat; }
.service-card:nth-child(3) { background-image: url(assets/craft.png); background-position: center; background-repeat: no-repeat; }
.service-card:nth-child(4) { background-image: url(assets/clean.png); background-position: center; background-repeat: no-repeat; }
.service-card:nth-child(5) { background-image: url(assets/cust.png); background-position: center; background-repeat: no-repeat; }
.service-card:nth-child(6) { background-image: url(assets/del.png); background-position: center; background-repeat: no-repeat; }

.service-card-top {
  padding: 36px 28px 28px;
  position: relative;
  overflow: hidden;
  background: rgba(46, 3, 3, 0.466);
}

.service-card-top::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(19, 18, 18, 0);
}

.service-card-top h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  color: var(--white);
  letter-spacing: 0.1em;
}

.service-card-body {
  padding: 24px 28px;
  background: rgba(46, 3, 3, 0.466);
}

.service-card-body p {
  font-size: 0.85rem;
  color: var(--white);
  line-height: 1.75;
  margin-bottom: 18px;
  font-weight: 300;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: rgba(255, 252, 252, 0.98);
  color: var(--maroon);
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  border: 1px solid rgba(192, 19, 42, 0.4);
  cursor: pointer;
  transition: all 0.25s;
}

.tag:hover {
  background: #82100c;
  color: #fff;
  transform: scale(1.08);
}

/* =============================================
   CATALOG
   ============================================= */
#catalog { background: var(--pale); }

.catalog-inner { max-width: 1300px; margin: 0 auto; }

.catalog-header {
  text-align: center;
  margin-bottom: 64px;
}

.catalog-header .section-desc { margin: 0 auto; }

.catalog-showcase {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.catalog-cover-wrap {
  position: relative;
}

.catalog-cover-wrap::before {
  content: '';
  position: absolute;
  inset: 20px -20px -20px 20px;
  background: linear-gradient(135deg, var(--red), var(--maroon));
  border-radius: 20px;
  z-index: 0;
}

.catalog-cover-img {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.catalog-cover-img img {
  width: 100%;
  display: block;
}

.catalog-info h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  color: var(--dark-maroon);
  line-height: 1.05;
  margin-bottom: 20px;
}

.catalog-info p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 32px;
}

.catalog-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 36px;
}

.catalog-hl {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark-maroon);
}

.catalog-hl::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}

.catalog-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--red), var(--maroon));
  color: var(--white);
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(192, 19, 42, 0.3);
  animation: floatBtn 2s ease-in-out infinite;
  text-decoration: none;
}

.catalog-download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(192, 19, 42, 0.4);
  animation: none;
}

.catalog-download-btn svg {
  width: 18px;
  height: 18px;
}

@keyframes floatBtn {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* =============================================
   CLIENTS
   ============================================= */
#clients {
  background: var(--white);
  text-align: center;
}

.clients-inner { max-width: 1300px; margin: 0 auto; }

.clients-inner .section-desc {
  margin: 0 auto 60px;
  text-align: center;
}

.clients-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.client-chip {
  background: var(--pale);
  border: 1px solid rgba(192, 19, 42, 0.1);
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--maroon);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 6px 6px 16px rgba(192, 19, 42, 0.2);
}

.client-chip:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(192, 19, 42, 0.35);
}

.client-chip span { font-size: 1.1rem; }

/* ===============================
   CONTACT SECTION
================================= */
#contact {
  background: #ffffff;
  padding: 60px 20px;
}

/* Container */
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Optional Top Image */
.contact-image {
  width: 100%;
  margin-bottom: 30px;
}

/* Floating animation */
@keyframes floatImage {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Apply to image */
.contact-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;

  animation: floatImage 4s ease-in-out infinite;

  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.contact-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(192, 57, 43, 0.25),
    transparent
  );
  opacity: 0.6;
  transition: 0.4s ease;
}
.contact-info::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(192,57,43,0.15),
    transparent
  );
  opacity: 0;
  transition: 0.4s;
}

/* Hover */
.contact-info:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.contact-info:hover::before {
  opacity: 1;
}
/* ===============================
   MAIN LAYOUT (LEFT + RIGHT)
================================= */
.contact-content {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

/* ===============================
   LEFT SIDE (CONTACT BOX)
================================= */
.contact-info {
  flex: 1;
  min-width: 350px;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(97, 3, 3, 0.674);
  transition: 0.3s ease;
}

.contact-info:hover {
  transform: translateY(-5px);
}

/* Label */
.section-label {
  color: #6d1208;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* Heading */
.contact-info h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

/* Description */
.contact-info p {
  color: #280707;
  line-height: 1.6;
}

/* Contact Details */
.contact-details {
  margin-top: 20px;
}

.contact-row p {
  margin-bottom: 12px;
  font-size: 15px;
}

/* Links */
.contact-row a {
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}

.contact-row a:hover {
  color: #8d1508;
}

/* ===============================
   RIGHT SIDE (MAP)
================================= */
.contact-map {
  flex: 1;
  min-width: 350px;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(111, 3, 3, 0.895);
}

/* IMPORTANT: Map fill */
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ===============================
   RESPONSIVE DESIGN
================================= */
@media (max-width: 992px) {
  .contact-content {
    gap: 20px;
  }

  .contact-info,
  .contact-map {
    min-width: 100%;
  }

  .contact-map {
    height: 300px;
  }
}

@media (max-width: 576px) {
  #contact {
    padding: 40px 15px;
  }

  .contact-info {
    padding: 20px;
  }

  .contact-info h2 {
    font-size: 22px;
  }

  .contact-map {
    height: 250px;
  }
}
/* =============================================
   WHATSAPP BUBBLE
   ============================================= */
.wa-bubble {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
}

.wa-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  animation: waPulse 2s ease-in-out infinite;
}

.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.5);
  animation: none;
}

.wa-btn svg {
  width: 32px;
  height: 32px;
  fill: white;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4), 0 0 0 14px rgba(37, 211, 102, 0); }
}

.wa-tooltip {
  position: absolute;
  bottom: 70px;
  right: 0;
  background: var(--dark-maroon);
  color: white;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s;
}

.wa-bubble:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 20px;
  border: 6px solid transparent;
  border-top-color: var(--dark-maroon);
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: white;
  padding: 60px 5% 30px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--red), var(--gold), var(--red), var(--maroon));
}

.footer-grid {
  max-width: 1300px;
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-brand img {
  height: 52px;
  object-fit: contain;
}

.footer-brand p {
  font-size: 0.82rem;
  color: var(--maroon);
  line-height: 1.8;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--maroon);
  margin-bottom: 18px;
  border-bottom: 2px solid var(--red);
  padding-bottom: 8px;
  display: inline-block;
}

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  color: var(--maroon);
  font-size: 0.83rem;
  transition: color 0.25s;
}

.footer-col a:hover { color: var(--red); }

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #4a0009;
  padding-top: 28px;
  font-size: 0.78rem;
  color: var(--maroon);
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copy { color: rgba(174, 20, 20, 0.93); }
.footer-tagline em { color: var(--gold); font-style: normal; }

/* =============================================
   RESPONSIVE — TABLET (≤1100px)
   ============================================= */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

.contact-inner{
gap: 30px;
}
.contact-image{
  flex: 0 0 260px;
}
}
/* =============================================
   RESPONSIVE — SMALL TABLET / LARGE MOBILE (≤900px)
   ============================================= */
@media (max-width: 900px) {
  /* Nav */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px 5%;
    gap: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(192, 19, 42, 0.15);
    /* Hidden by default */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-links.open {
    max-height: 400px;
    padding: 20px 5%;
  }

  .nav-links a {
    padding: 10px 12px;
    font-size: 0.85rem;
  }

  /* Hero */
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding: 60px 5%;
  }

  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }

  .hero-logo-wrap img {
    max-height: 300px;
    object-fit: cover;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Catalog */
  .catalog-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Contact */
  #contact {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-inner,
  .contact-image {
    max-width: 100%;
    width: 100%;
  }
}

/* =============================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================= */
@media (max-width: 768px) {
  section { padding: 70px 4%; }

  .metrics-inner {
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .catalog-highlights {
    grid-template-columns: 1fr;
  }

.contact-inner{
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.contact-image{
  width: 100%;
  max-width: 280px;
  margin:0 auto;
  order: 1;
}

.contact-info{
  order:2;
  width:100;
}
.contact-details{
  align-items: center;
}
.contact-row{
  width:100%;
  text-align: left;
}
.hero-logo-wrap img {
    max-height: 500px;
    object-fit: contain;
  }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (≤600px)
   ============================================= */
@media (max-width: 600px) {
  nav { padding: 0 4%; }

  .hero-text p { font-size: 0.9rem; }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .clients-icons {
    gap: 12px;
  }

  .client-chip {
    font-size: 0.76rem;
    padding: 10px 16px;
  }

  footer {
    text-align: center;
  }

  .footer-brand p { max-width: 100%; }

  .footer-logo-row { justify-content: center; }
}

/* =============================================
   RESPONSIVE — TINY MOBILE (≤480px)
   ============================================= */
@media (max-width: 480px) {
  .metrics-inner {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .stat-divider { display: none; }

  .about-mini-stats {
    grid-template-columns: 1fr 1fr;
  }

  .wa-bubble {
    bottom: 20px;
    right: 16px;
  }

  .catalog-download-btn {
    width: 100%;
    justify-content: center;
  }

  #contact{
    padding: 40px 15px;
  }
  .contact-image{
    max-width: 250px;
  }
  .contact-row{
    padding: 12px 15px;
  }
  .contact-row h4{
    font-size: 0.7rem;
  }
  .contact-row p{
    font-size: 0.8rem;
  }
}
