
:root {
  --red: #d72b2b;
  --red-dark: #A01E1E;
  --yellow: #F5A623;
  --yellow-light: #FFD166;
  --orange: #E8621A;
  --dark: #0F0A08;
  --dark2: #1A1008;
  --dark3: #231508;
  --card-bg: rgba(30, 15, 5, 0.85);
  --border: rgba(245, 166, 35, 0.25);
  --text-muted: #9A8070;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--dark);
  color: white;
  overflow-x: hidden;
  padding-top: 80px;
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 50px;
  height: 80px;
  background: rgba(10, 5, 0, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--red);
  z-index: 1000;
  transition: all 0.4s;
}

.logo-wrap {
  display: flex; align-items: center; gap: 14px;
}

.logo-icon {
  width: 48px; 
  height: 48px;
  border-radius: 8px;
  display: flex; 
  align-items: center; 
  justify-content: center;
  overflow: hidden;  
  box-shadow: 0 0 20px rgba(215,43,43,0.5);
  transition: transform 0.3s ease;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain; 
  padding: 4px; 
}

.logo-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(215,43,43,0.8);
}

.logo-text {
  display: flex; flex-direction: column; line-height: 1;
}

.logo-text span:first-child {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 20px;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  -webkit-background-clip: text; color: transparent;
  letter-spacing: 1px;
}

.logo-text span:last-child {
  font-size: 11px; color: var(--text-muted); letter-spacing: 3px; text-transform: uppercase;
}

nav { display: flex; gap: 35px; align-items: center; }

nav a {
  color: #ccc; text-decoration: none;
  font-size: 13px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; transition: 0.3s;
  position: relative;
}

nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  transition: 0.3s;
}

nav a:hover { color: var(--yellow); }
nav a:hover::after { width: 100%; }
/* ─── HAMBURGER BUTTON COLOR ─── */
.menu-toggle span {
  width: 30px;
  height: 3px;
  background: #ffffff; /* This makes the lines pure white */
  border-radius: 2px;
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2); /* Optional: subtle white glow */
}

/* ─── HOVER/OPEN STATE (Optional) ─── */
.menu-toggle:hover span {
  background: var(--red); /* Turns red when you hover, matching your theme */
}

.menu-toggle.open span {
  background: var(--yellow); /* Turns yellow when the menu is open */
}

/* ─── ENSURE VISIBILITY ON MOBILE ─── */
@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
    /* Added background so it's easy to tap */
    background: rgba(255, 255, 255, 0.05); 
    padding: 8px;
    border-radius: 4px;
  }
}
/* Ensure the toggle is visible and styled correctly */
.menu-toggle {
  display: none; /* Default hidden for desktop */
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
  border-radius: 5px;
  transition: 0.3s;
}

/* On Mobile */
@media (max-width: 900px) {
  .menu-toggle {
    display: flex; /* Show it now */
  }

  .navbar {
    padding: 0 25px; /* Tighter padding for mobile */
  }

  nav {
    /* This transforms your nav into the mobile slide-out menu */
    display: flex; 
    position: fixed;
    top: 80px;
    right: -100%; /* Start off-screen */
    width: 80%; /* Don't take full width for a sleeker look */
    height: calc(100vh - 80px);
    background: rgba(15, 10, 8, 0.98); 
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 1px solid var(--red);
    backdrop-filter: blur(15px);
  }

  nav.active {
    right: 0; /* Slide in when active */
  }
}
/* ─── HERO ─── */
.hero {
  height: 100vh;
  background:
    linear-gradient(135deg, rgba(15,10,8,0.88) 0%, rgba(167,30,30,0.4) 50%, rgba(15,10,8,0.95) 100%),
    repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(215,43,43,0.03) 60px, rgba(215,43,43,0.03) 61px);
  display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(215,43,43,0.18), transparent);
}

.hero::after {
  content: 'PP';
  position: absolute;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 500px; font-weight: 900;
  color: rgba(215,43,43,0.04);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none; user-select: none;
  letter-spacing: -30px;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-block;
  border: 1px solid var(--red);
  color: var(--yellow);
  font-size: 11px; letter-spacing: 4px;
  text-transform: uppercase; padding: 6px 20px;
  border-radius: 2px; margin-bottom: 30px;
  background: rgba(215,43,43,0.1);
  animation: fadeUp 0.8s ease both;
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 90px; font-weight: 800;
  line-height: 0.9; letter-spacing: -2px;
  animation: fadeUp 1s ease 0.2s both;
}

.hero h1 .line1 {
  display: block;
  background: linear-gradient(90deg, #fff, #ddd);
  -webkit-background-clip: text; color: transparent;
}

.hero h1 .line2 {
  display: block;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow));
  -webkit-background-clip: text; color: transparent;
}

.hero p {
  font-size: 16px; color: var(--text-muted);
  letter-spacing: 3px; text-transform: uppercase;
  margin: 25px 0 45px;
  animation: fadeUp 1s ease 0.4s both;
}

.hero-btns {
  display: flex; gap: 15px; justify-content: center;
  animation: fadeUp 1s ease 0.6s both;
}

.btn-primary {
  padding: 14px 36px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  border: none; border-radius: 3px;
  color: white; font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 30px rgba(215,43,43,0.4);
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(215,43,43,0.7);
}

.btn-outline {
  padding: 14px 36px;
  background: transparent;
  border: 1px solid rgba(245,166,35,0.5);
  border-radius: 3px;
  color: var(--yellow);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; cursor: pointer;
  transition: 0.3s;
}

.btn-outline:hover {
  background: rgba(245,166,35,0.1);
  border-color: var(--yellow);
  transform: translateY(-3px);
}

.hero-stats {
  position: absolute; bottom: 0; left: 65%; transform: translateX(-50%);
  display: flex; gap: 10px;
  animation: fadeUp 1s ease 0.8s both;
}

.hero-stat { text-align: center; }

.hero-stat h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 30px; font-weight: 800;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  -webkit-background-clip: text; color: transparent;
}

.hero-stat p { font-size: 11px; letter-spacing: 2px; color: var(--text-muted); text-transform: uppercase; }
@media (max-width: 500px) {
  .hero h1 { font-size: 40px; }
  .hero-stats { left: 0%; transform: translateX(-50%); width: 100%; justify-content: center; }
}

/* ─── SECTION WRAPPER ─── */
.section { padding: 100px 60px; }

.section-label {
  font-size: 11px; letter-spacing: 5px;
  color: var(--red); text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 56px; font-weight: 800;
  line-height: 1; letter-spacing: -1px;
  margin-bottom: 20px;
}

.section-title span {
  background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow));
  -webkit-background-clip: text; color: transparent;
}

/* ─── ABOUT ─── */
.about {
  background: var(--dark2);
  padding: 100px 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}

.about-right { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

.about-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 25px;
  text-align: center; transition: 0.3s;
}

.about-card:hover {
  border-color: var(--red);
  box-shadow: 0 0 20px rgba(215,43,43,0.2);
  transform: translateY(-4px);
}

.about-card .icon { font-size: 30px; margin-bottom: 12px; }

.about-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px; font-weight: 800;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  -webkit-background-clip: text; color: transparent;
}

.about-card p { font-size: 12px; color: var(--text-muted); letter-spacing: 1px; margin-top: 4px; }

.about-text p {
  color: #a0907a; line-height: 1.8; margin-bottom: 15px;
}
/* Styling the container for alignment */
.about-summary div {
    display: flex;
    justify-content: flex-start; /* Aligns to the left with your text */
    margin-top: 25px;
    margin-bottom: 35px;
}

/* The Main Button Style */
.btn-main {
    background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
    color: white !important;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* The "Shine" Animation Effect */
.btn-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.6s;
}

/* Hover States */
.btn-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(215, 43, 43, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-main:hover::before {
    left: 100%;
}

.btn-main:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
}
.about-address {
  margin-top: 25px;
  padding: 18px 20px;
  background: rgba(215,43,43,0.08);
  border-left: 3px solid var(--red);
  border-radius: 0 8px 8px 0;
  font-size: 13px; color: var(--text-muted);
}

/* ─── PRODUCTS MASTER ─── */
.products-section {
  padding: 100px 60px;
  background: var(--dark);
}

.products-header { text-align: center; margin-bottom: 70px; }

/* Tabs */
.product-tabs {
  display: flex; gap: 0; justify-content: center;
  margin-bottom: 60px; border-radius: 5px; overflow: hidden;
  border: 1px solid var(--border); width: fit-content; margin: 0 auto 60px;
}

.tab-btn {
  padding: 16px 50px;
  background: transparent; border: none; color: #888;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; cursor: pointer; transition: 0.3s;
  position: relative;
}

.tab-btn.active {
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  color: white;
}

.tab-btn:not(.active):hover { background: rgba(215,43,43,0.1); color: var(--yellow); }

@media (max-width: 600px) {
  .tab-btn { padding: 10px 15px; font-size: 14px; }
  .product-tabs { width: 100%; display: flex; overflow-x: auto; } /* Allows swiping tabs */
}

/* ─── BOND PRODUCTS (Side-by-Side Layout) ─── */
.coming-soon-tag {
  position: absolute;
  overflow: visible;
  top: -10px;
  right: 30px; /* Positions it slightly off to look like a ribbon */
  background: linear-gradient(45deg, var(--red), #d02b2b);
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 5px 35px;
  z-index: 10;
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.6), 0 0 10px rgba(215, 43, 43, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1); /* Adds a "metallic" edge */
  box-shadow: 0 5px 15px rgba(215, 43, 43, 0.4);
  letter-spacing: 1px;
  pointer-events: none; /* So it doesn't block clicking the card */
}

/* Optional: Make the 10X card look slightly "Locked" */
.bond-card:has(.coming-soon-tag) {
  cursor: pointer;
  filter: saturate(0.8); /* Slightly less color until released */
}

.bond-card:has(.coming-soon-tag):hover {
  transform: translateY(-5px); /* Different hover feel for coming soon items */
  border-color: #c75314;
}
.bonds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Still 2 cards per line */
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  
}

.bond-card {
  display: flex; /* This puts Image and Text side-by-side */
  flex-direction: row; 
  align-items: center;
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: visible !important;
  cursor: pointer;
  transition: all 0.4s ease;
  height: 230px; /* Fixed height to keep it compact */
}

.bond-card:hover {
  border-color: var(--red);
  background: rgba(40, 25, 15, 0.95);
  transform: translateX(5px); /* Aggressive slide-in effect */
}

/* ─── VISIBLE ROUNDED IMAGE BORDER ─── */
.bond-img-wrap {
  flex: 0 0 170px;
  height: 200px; /* Giving it a specific height makes the box shape clear */
  margin: 15px; /* Adds space so the border doesn't touch the card edge */
  
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  
  /* 1. THE BORDER: Using a lighter shade of your theme color to make it visible */
  border: 2px solid rgba(245, 166, 35, 0.2); 
  border-radius: 15px; /* Smooth rounded corners */
  
  background: rgba(10, 5, 0, 0.6);
  position: relative;
  transition: all 0.4s ease;
}

/* 2. HOVER EFFECT: Make the border "ignite" on hover */
.bond-card:hover .bond-img-wrap {
  border-color: var(--red); /* Switches to your aggressive red */
  box-shadow: 0 0 15px rgba(215, 43, 43, 0.3); /* Adds a glow around the box */
  transform: scale(1.05);
}

.bond-img-wrap img {
  max-height: 100%; /* Keeps the bag inside the rounded box nicely */
  width: 100%;
  object-fit: cover;
  filter: drop-shadow(0 5px 10px rgba(0,0,0,0.5));
}

/* 3. OPTIONAL: Add a "Glossy" overlay inside the box */
.bond-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 13px; /* Slightly smaller than parent to fit inside */
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.bond-card-top {
  flex: 1; /* Takes up the remaining space */
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bond-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  margin: 5px 0;
  color: #fff;
}

.bond-content p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Responsive: Stack on top of each other on mobile */
@media (max-width: 900px) {
  .bonds-grid {
    grid-template-columns: 1fr;
  }
}

/* Better mobile product card layout */
@media (max-width: 500px) {
  .bond-card {
    height: auto;
    flex-direction: row;
    align-items: center;
    padding: 10px;
    gap: 12px;
  }

  .bond-img-wrap {
    flex: 0 0 120px;
    width: 120px;
    height: 150px;
    margin: 0;
    padding: 10px;
    border-right: none;
    border-bottom: none;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(10, 5, 0, 0.6);
  }

  .bond-img-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;   /* rounded image */
  }

  .bond-card-top {
    flex: 1;
    width: auto;
    padding: 0;
    align-items: center;
  }

  .bond-content h3 {
    font-size: 18px;
    margin: 4px 0;
  }

  .bond-content p {
    font-size: 12px;
    line-height: 1.4;
  }

  .bond-arrow {
    margin-left: 10px;
    flex-shrink: 0;
  }

  .coming-soon-tag {
    right: 14px;
    top: -10px;
    padding: 4px 18px;
    font-size: 10px;
  }
}

/* ─── FILING SECTION ─── */
.filing-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
}

.filing-card {
  border-radius: 12px; overflow: hidden;
  cursor: pointer; transition: all 0.4s; position: relative;
  border: 2px solid transparent;
}

.filing-card:hover, .filing-card.open {
  transform: scale(1.04);
  box-shadow: 0 10px 35px rgba(0,0,0,0.5);
}

.filing-color {
  height: 100px; width: 100%;
  position: relative; display: flex;
  align-items: center; justify-content: center;
}

.filing-color::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4));
}

.filing-info {
  background: rgba(20,12,5,0.95);
  padding: 12px 14px;
}

.filing-info h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700; margin-bottom: 2px;
}

.filing-info p { font-size: 11px; color: var(--text-muted); }

.filing-expand {
  display: none; padding: 12px 14px;
  background: rgba(10,5,0,0.95);
  border-top: 1px solid var(--border);
  font-size: 12px; line-height: 1.7; color: #a08070;
  animation: fadeIn 0.3s ease;
}

.filing-expand.show { display: block; }

.filing-expand strong { color: var(--yellow); }

/* ─── FEATURES ─── */
.features-section {
  padding: 100px 60px;
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  text-align: center;
}

.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 60px;
}

.feat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 35px 20px;
  transition: 0.3s; position: relative; overflow: hidden;
}

.feat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  transform: scaleX(0); transition: 0.3s;
}

.feat-card:hover::before { transform: scaleX(1); }

.feat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border-color: rgba(215,43,43,0.3);
}

.about-card .icon,
.feat-card .feat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.about-card .icon i {
  font-size: 25px;
  color: #ff5a2f;
  background: linear-gradient(135deg, rgba(255, 90, 47, 0.12), rgba(255, 140, 0, 0.10));
  width: 62px;
  height: 62px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(255, 90, 47, 0.12);
  border: 1px solid rgba(255, 90, 47, 0.12);
}

.feat-card .feat-icon i {
  font-size: 25px;
  color: #ff5a2f;
  background: linear-gradient(135deg, rgba(255, 90, 47, 0.14), rgba(255, 190, 60, 0.10));
  width: 62px;
  height: 62px;
  border-radius: 18px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(255, 90, 47, 0.10);
  border: 1px solid rgba(255, 90, 47, 0.10);
  transition: all 0.3s ease;
}

.feat-card:hover .feat-icon i,
.about-card:hover .icon i {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 34px rgba(255, 90, 47, 0.18);
}

.feat-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 700; margin-bottom: 10px;
  color: var(--yellow);
}

.feat-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ─── CONTACT ─── */
.contact-section {
  padding: 100px 60px;
  background: var(--dark2);
}

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px;
  margin-top: 60px;
}

.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--border); border-radius: 16px; padding: 40px;
}

.contact-form h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px; font-weight: 700; margin-bottom: 25px;
  color: var(--yellow);
}

.form-group { margin-bottom: 16px; }

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(10,5,0,0.8);
  border: 1px solid var(--border); border-radius: 8px;
  padding: 14px 18px; color: white;
  font-family: 'Barlow', sans-serif; font-size: 14px;
  outline: none; transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 15px rgba(215,43,43,0.15);
}

.form-group textarea { min-height: 130px; resize: none; }

.btn-submit {
  width: 100%; padding: 15px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  border: none; border-radius: 8px; color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; cursor: pointer; transition: 0.3s;
  margin-top: 5px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(215,43,43,0.5);
}

.contact-info { display: flex; flex-direction: column; gap: 18px; }

.contact-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px; font-weight: 800; margin-bottom: 10px;
}

.info-card {
  display: flex; gap: 18px; align-items: center;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 12px; padding: 18px 20px; transition: 0.3s;
}

.info-card:hover {
  border-color: var(--red);
  transform: translateX(6px);
}

.info-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: rgba(215,43,43,0.12); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 18px;
  transition: transform 0.5s ease;
}
.info-card:hover .info-icon {
  transform: scale(1.2);
  background-color: var(--red);
  color:#ccc;
}
.info-text h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.info-text p { font-size: 13px; color: var(--text-muted); }

.stats-row {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 12px;
  margin-top: 5px;
}

.stat-box {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 10px; padding: 18px; text-align: center;
}

.stat-box h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px; font-weight: 800;
  background: linear-gradient(90deg, var(--red), var(--orange));
  -webkit-background-clip: text; color: transparent;
}

.stat-box p { font-size: 11px; color: var(--text-muted); margin-top: 4px; letter-spacing: 1px; }

/* ─── FOOTER CORE ─── */
footer {
  background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
  padding: 80px 5% 30px;
  color: #fff;
  border-top: 1px solid rgba(215, 43, 43, 0.2); /* Subtle Red Border */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── BRAND SECTION ─── */
.footer-brand h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  color: var(--red, #d72b2b);
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
}

.footer-brand p {
  color: #aaa;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-socials a:hover {
  background: var(--red, #d72b2b);
  border-color: var(--red, #d72b2b);
  transform: translateY(-5px) rotate(8deg);
  box-shadow: 0 5px 15px rgba(215, 43, 43, 0.4);
}

/* ─── LINKS SECTION ─── */
.footer-links h4 {
  font-size: 18px;
  margin-bottom: 25px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

/* The aggressive red line under headers */
.footer-links h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background: var(--red, #d72b2b);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #888;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 8px; /* Smooth slide effect */
  text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

/* ─── FOOTER BOTTOM ─── */
.footer-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(90, 84, 84, 0.489);
}

.footer-bottom p {
  color: #555;
  font-size: 15px;
}
strong {
 color: #cac8c8;
}
/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-links h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-socials {
    justify-content: center;
  }
}
/* ─── PANEL CONTAINER ─── */
.panel { display: none; }
.panel.active { display: block; }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0; transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero h1 { font-size: 55px; }
  .about { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .section, .products-section, .features-section, .contact-section { padding: 60px 20px; }
  .navbar { padding: 0 20px; }
  .hero-stats { gap: 30px; }
  .bonds-grid { grid-template-columns: 1fr; }
}
/* Final Polish for small screens */
@media (max-width: 480px) {
  .section-title { font-size: 38px; }
  .hero-btns { flex-direction: column; width: 100%; padding: 0 20px; }
  .btn-primary, .btn-outline { width: 100%; }
  .stats-row { grid-template-columns: 1fr; } /* Stacks stats on contact page */
  .footer-top { gap: 30px; }
}
/* ─── EXTRA SMALL DEVICES (<360px) ─── */
@media (max-width: 360px) {
  .hero h1 { font-size: 32px; letter-spacing: -1px; }
  .hero p { font-size: 13px; letter-spacing: 1px; }
  nav a { font-size: 11px; letter-spacing: 1px; }
  .section-title { font-size: 30px; }
  .btn-primary, .btn-outline, .btn-main, .btn-submit { 
    font-size: 14px; 
    padding: 12px 20px; 
  }
  .logo-text span:first-child { font-size: 16px; }
  .logo-text span:last-child { font-size: 9px; letter-spacing: 2px; }
  .hero::after { display: none; } /* Hide giant PP background text */
}
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #06933a; /* WhatsApp Green */
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 40px;
    width: 80px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
    color: white;
}
