@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,600;0,700;0,800;1,700;1,800&family=Inter:wght@300;400;500;600;700&display=swap');
.logo img{
    height: 15vh;
    width: 35%;
    
}
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr !important;
  }
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {

  .btn-center {
    text-align: center;
    margin-top: 20px;
  }

  .btn-service,
  .product-btn {
    display: inline-block;
    width: auto;
    margin: 10px auto;
  }

}
@media (max-width:768px){
    .btn-center{
        display:flex;
        justify-content:center;
        align-items:center;
    }
}
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37,211,102,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}
.btn-service{
    display:block;
    width: fit-content;
    background:#c91a1a;
    color:#f1eded;
    padding:15px 35px;
    margin-top: 50px;
    margin-bottom: 50px;
    border-radius:5px;
    text-decoration:none;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    transition:0.3s;
}
.btn-center{
  text-align: center;
}
.btn-service:hover{
    background:#cc0000;
    transform:translateY(-3px);
}
:root {
  /* Color System */
  --primary: #FF1E1E;
  --primary-hover: #E01212;
  --primary-glow: rgba(255, 30, 30, 0.5);
  --primary-glow-subtle: rgba(255, 30, 30, 0.15);
  --bg-deep: #070707;
  --bg-base: #0D0D0D;
  --bg-card: #141414;
  --bg-card-hover: #1C1C1C;
  --border-color: #222222;
  --border-active: #FF2A2A;
  --text-white: #FFFFFF;
  --text-gray: #A8A8A8;
  --text-muted: #666666;

  /* Typography */
  --font-sport: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transitions & Shadows */
  --transition-fast: 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-normal: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --glow-shadow: 0 0 20px var(--primary-glow);
  --glow-shadow-heavy: 0 0 35px rgba(255, 30, 30, 0.7);
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}/* Global Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-deep);
  color: var(--text-white);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: #252525;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
  box-shadow: var(--glow-shadow);
}

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

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

button, input, textarea {
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
}

/* Common Layout Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition-normal);
  background: transparent;
}

.header.scrolled {
  background: rgba(7, 7, 7, 0.85);
  backdrop-filter: blur(15px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

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

/* Brand Logo */
.logo {
  font-family: var(--font-sport);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  font-style: italic;
}

.logo span {
  color: var(--primary);
  text-shadow: var(--glow-shadow);
}

.logo-icon {
  width: 28px;
  height: 28px;
  background: var(--primary);
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  display: inline-block;
  box-shadow: var(--glow-shadow);
  position: relative;
}

.logo-icon::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 15%;
  width: 70%;
  height: 70%;
  background: var(--bg-deep);
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

/* Navigation Links */
.nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-sport);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-white);
  position: relative;
  padding: 0.3rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  box-shadow: var(--glow-shadow);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--primary);
  text-shadow: var(--glow-shadow);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

/* Button & CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sport);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-style: italic;
  padding: 0.8rem 2.2rem;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary);
  color: var(--text-white);
  border: 1px solid var(--primary);
  box-shadow: var(--glow-shadow);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: var(--glow-shadow-heavy);
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid var(--text-white);
  color: var(--text-white);
}

.btn-secondary:hover {
  background: var(--text-white);
  color: var(--bg-deep);
  transform: translateY(-2px);
}

/* Hamburger Menu Button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  padding: 0.5rem;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text-white);
  transition: var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background: var(--primary);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background: var(--primary);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 10rem 0 6rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 80% 50%, var(--primary-glow-subtle) 0%, transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  z-index: 5;
}

.hero-tagline {
  font-family: var(--font-sport);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-sport);
  font-size: 6rem;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -2px;
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-white);
}

.hero-title span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px var(--text-white);
}

.hero-title strong {
  display: block;
  color: var(--primary);
  text-shadow: var(--glow-shadow-heavy);
  animation: glowPulse 3s infinite ease-in-out;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 20;
}

.hero-image-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  z-index: 1;
  filter: blur(40px);
  animation: pulseGlow 4s infinite alternate;
}

.hero-img {
  position: relative;
  z-index: 2;
  border-radius: 12px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8)) contrast(110%);
  animation: floatCycle 6s infinite ease-in-out;
  object-fit: cover;
  width: 100%;
  max-height: 550px;
  border-left: 2px solid var(--primary);
}

/* Feature Cards Section */
.features {
  padding: 6rem 0;
  background: var(--bg-base);
  position: relative;
  border-top: 1px solid var(--border-color);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  font-family: var(--font-sport);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-family: var(--font-sport);
  font-size: 3.5rem;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  padding: 3rem 2rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-normal);
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  background: rgba(255, 30, 30, 0.05);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  border-radius: 4px;
  transition: var(--transition-normal);
  color: var(--primary);
}

.feature-icon-wrapper svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.feature-card-title {
  font-family: var(--font-sport);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.feature-card-desc {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 30, 30, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 15px var(--primary-glow-subtle);
  transform: translateY(-8px);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
  box-shadow: var(--glow-shadow);
}

/* Static Callout / High Conversion Strip */
.promo-strip {
  background: linear-gradient(135deg, #111 0%, #000 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.promo-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.promo-text {
  flex: 1;
  min-width: 300px;
}

.promo-title {
  font-family: var(--font-sport);
  font-size: 2.2rem;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.promo-title span {
  color: var(--primary);
  text-shadow: var(--glow-shadow);
}

.promo-subtitle {
  color: var(--text-gray);
  font-size: 1.05rem;
}

/* Page Intro Styles (For Inner Pages) */
.page-header {
  padding: 10rem 0 4rem 0;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-base) 100%);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at center, var(--primary-glow-subtle) 0%, transparent 60%);
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-title {
  font-family: var(--font-sport);
  font-size: 4.5rem;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.page-title span {
  color: var(--primary);
}

.page-desc {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 1rem auto 0 auto;
}

/* About Us Layout */
.about-section {
  padding: 6rem 0;
  background: var(--bg-deep);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border-left: 3px solid var(--primary);
  border-bottom: 3px solid var(--primary);
  z-index: 1;
  pointer-events: none;
}

.about-img {
  position: relative;
  z-index: 2;
  border-radius: 4px;
  filter: contrast(115%) brightness(90%);
  box-shadow: var(--card-shadow);
}

.about-content {
  display: flex;
  flex-direction: column;
}

.about-tag {
  font-family: var(--font-sport);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.about-heading {
  font-family: var(--font-sport);
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.about-text {
  color: var(--text-gray);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.about-mission {
  background: var(--bg-card);
  border-left: 4px solid var(--primary);
  padding: 1.5rem 2rem;
  border-radius: 2px;
  margin-bottom: 2.5rem;
}

.about-mission-title {
  font-family: var(--font-sport);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--text-white);
}

.about-mission-text {
  font-size: 0.95rem;
  color: var(--text-gray);
  font-style: italic;
}

/* Statistics Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: var(--bg-card);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  text-align: center;
  transition: var(--transition-normal);
}

.stat-number {
  font-family: var(--font-sport);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: var(--glow-shadow);
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-white);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5), 0 0 10px var(--primary-glow-subtle);
}

/* Services Layout */
.services-section {
  padding: 6rem 0;
  position: relative;
}

.services-bg-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, rgba(7, 7, 7, 0.92) 0%, rgba(7, 7, 7, 0.97) 100%), 
                    url('https://images.unsplash.com/photo-1517838277536-f5f99be501cd');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

.services-section .container {
  position: relative;
  z-index: 2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.service-card {
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 3rem 2rem;
  backdrop-filter: blur(10px);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-card-icon {
  color: var(--primary);
  margin-bottom: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 30, 30, 0.08);
  border: 1px solid rgba(255, 30, 30, 0.2);
  border-radius: 4px;
  transition: var(--transition-normal);
}

.service-card-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.service-card-title {
  font-family: var(--font-sport);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.service-card-desc {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.service-card:hover {
  background: rgba(28, 28, 28, 0.85);
  border-color: var(--primary);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 20px var(--primary-glow-subtle);
  transform: translateY(-8px);
}

.service-card:hover .service-card-icon {
  background: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
  box-shadow: var(--glow-shadow);
  transform: rotate(5deg) scale(1.1);
}

/* Products Layout */
.products-section {
  padding: 6rem 0;
  background: var(--bg-deep);
}

/* Tab filter navigation */
.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.tab-btn {
  font-family: var(--font-sport);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-gray);
  padding: 0.6rem 2rem;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.tab-btn:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.tab-btn.active {
  color: var(--text-white);
  border-color: var(--primary);
  background: var(--primary);
  box-shadow: var(--glow-shadow);
}

/* Product Cards Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.product-image-container {
  position: relative;
  width: 100%;
  height: 220px;
  background: #181818;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
  filter: brightness(85%);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary);
  color: var(--text-white);
  font-family: var(--font-sport);
  font-size: 0.9rem;
  font-weight: 800;
  font-style: italic;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  text-transform: uppercase;
  box-shadow: var(--glow-shadow);
  z-index: 3;
}

.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.product-stars {
  display: flex;
  gap: 2px;
  color: #FFC107;
  font-size: 0.85rem;
}

.product-price {
  font-family: var(--font-sport);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
}

.product-name {
  font-family: var(--font-sport);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.5;
  flex-grow: 1;
}

.product-btn {
  width: 100%;
  font-size: 0.95rem;
  padding: 0.7rem 1.5rem;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 30, 30, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
}

.product-card:hover .product-img {
  transform: scale(1.08);
  filter: brightness(100%);
}

/* Contact Section Layout */
.contact-section {
  padding: 6rem 0;
  background: var(--bg-deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

/* Left side details */
.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: 4px;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: var(--transition-normal);
}

.contact-detail-icon {
  color: var(--primary);
  background: rgba(255, 30, 30, 0.05);
  width: 50px;
  height: 50px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 30, 30, 0.15);
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.contact-detail-content h4 {
  font-family: var(--font-sport);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.contact-detail-content p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-detail-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 10px var(--primary-glow-subtle);
  transform: translateY(-3px);
}

/* Right side contact form */
.contact-form-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 3rem;
  border-radius: 4px;
  box-shadow: var(--card-shadow);
}

.contact-form-title {
  font-family: var(--font-sport);
  font-size: 2.2rem;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: var(--font-sport);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  color: var(--text-white);
}

.form-control {
  width: 100%;
  background: var(--bg-deep);
  border: 1px solid var(--border-color);
  color: var(--text-white);
  padding: 0.9rem 1.2rem;
  font-size: 0.95rem;
  border-radius: 2px;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 10px var(--primary-glow-subtle);
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

/* Simulation of styled dark map */
.map-section {
  padding: 0 0 6rem 0;
  background: var(--bg-deep);
}

.map-container {
  width: 100%;
  height: 400px;
  background: #111;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.map-svg-sim {
  width: 100%;
  height: 100%;
  opacity: 0.15;
  object-fit: cover;
  pointer-events: none;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 30%, var(--bg-deep) 90%);
  pointer-events: none;
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-pin-circle {
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid var(--text-white);
  box-shadow: var(--glow-shadow-heavy);
  animation: pulseGlow 1.5s infinite alternate;
}

.map-pin-pulse {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 40px;
  height: 40px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  animation: ripple 1.8s infinite ease-out;
  opacity: 0;
}

.map-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: 4px;
  backdrop-filter: blur(10px);
  z-index: 10;
  max-width: 280px;
  box-shadow: var(--card-shadow);
}

.map-card h5 {
  font-family: var(--font-sport);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.map-card p {
  font-size: 0.85rem;
  color: var(--text-gray);
}

/* Footer Styling */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 2rem 0;
  margin-top: auto;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-about-text {
  color: var(--text-gray);
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-heading {
  font-family: var(--font-sport);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-link {
  color: var(--text-gray);
  font-size: 0.95rem;
}

.footer-link:hover {
  color: var(--primary);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 2.5rem;
}

.social-icon {
  width: 50px;
  height: 50px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  transition: var(--transition-fast);
}

.social-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.social-icon:hover {
  background: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
  box-shadow: var(--glow-shadow);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-legal a:hover {
  color: var(--primary);
}

/* Animations */
@keyframes glowPulse {
  0%, 100% {
    text-shadow: 0 0 20px rgba(255, 30, 30, 0.6), 0 0 40px rgba(255, 30, 30, 0.3);
  }
  50% {
    text-shadow: 0 0 30px rgba(255, 30, 30, 0.9), 0 0 60px rgba(255, 30, 30, 0.5);
  }
}

@keyframes pulseGlow {
  0% {
    opacity: 0.6;
    transform: scale(0.95);
  }
  100% {
    opacity: 0.95;
    transform: scale(1.05);
  }
}

@keyframes floatCycle {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes ripple {
  0% {
    transform: scale(0.6);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Reveal Entrance Animations */
.reveal-init {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), 
              transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  .hero-title {
    font-size: 4.8rem;
  }
  .features-grid {
    gap: 1.5rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 1rem 0;
  }
  .header.scrolled {
    padding: 0.8rem 0;
  }
  .hamburger {
    display: flex;
  }
  
  /* Mobile Menu Slide In overlay */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(7, 7, 7, 0.95);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
  }
  
  .nav.active {
    right: 0;
  }

  .header-btn {
    display: none; /* Hide desktop button, it can go inside the menu or not needed for mobile header */
  }

  .hero {
    padding: 8rem 0 4rem 0;
    text-align: center;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-content {
    align-items: center;
  }
  .hero-title {
    font-size: 4.2rem;
  }
  .hero-description {
    margin: 0 auto 2.5rem auto;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .footer-about {
    align-items: center;
  }
  .footer-about-text {
    max-width: 100%;
  }
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .social-links {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  .hero-title {
    font-size: 3.2rem;
  }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  .hero-ctas .btn {
    width: 100%;
  }
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
  .tab-btn {
    padding: 0.5rem 1.2rem;
    font-size: 1.1rem;
  }
  .contact-form-panel {
    padding: 2rem 1.5rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
