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

/* --- DESIGN SYSTEM & TOKENS --- */
:root {
  --primary-red: #E31E24;
  --primary-red-hover: #C21419;
  --primary-red-glow: rgba(227, 30, 36, 0.4);
  --bg-dark: #0B0B0B;
  --bg-dark-gray: #161616;
  --bg-dark-card: #222222;
  --bg-light: #FFFFFF;
  --bg-light-gray: #F8F9FA;
  --text-light: #FFFFFF;
  --text-dark: #111111;
  --text-muted: #888888;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-full: 9999px;
  --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.5);
  --shadow-red-glow: 0 0 15px var(--primary-red-glow);
}
/* --- RESET & GLOBAL STYLES --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

/* --- SCROLLBAR CUSTOMIZATION --- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: var(--border-radius-full);
  border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-red);
}

/* --- LAYOUT UTILITIES --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 8rem 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 5rem 0;
  }
  .container {
    padding: 0 1.2rem;
  }
}

.text-center {
  text-align: center;
}

.text-red {
  color: var(--primary-red);
}
/* ===========================
   Logo with Title
=========================== */

.logo-container{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.logo-container img{
    width:60%;
    height:60%;
    object-fit:contain;
}

.logo-text{
    display:flex;
    flex-direction:column;
    line-height:1;
}

.logo-text h2{
    margin:0;
    font-size:2.6rem;
    font-weight:800;
    color:#ffffff;
    letter-spacing:1px;
    text-transform:uppercase;
}

.logo-text span{
    margin-top:4px;
    font-size:0.8rem;
    color:#e30613;
    letter-spacing:2px;
    text-transform:uppercase;
    font-weight:600;
}
@media (max-width:768px){

    .logo-container img{
        width:48px;
        height:48px;
    }

    .logo-text h2{
        font-size:1.3rem;
    }

    .logo-text span{
        font-size:0.65rem;
        letter-spacing:1px;
    }

}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.2rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--primary-red);
  color: var(--text-light);
  box-shadow: 0 4px 14px rgba(227, 30, 36, 0.4);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease-out, height 0.6s ease-out;
}

.btn-primary:hover {
  background-color: var(--primary-red-hover);
  box-shadow: 0 6px 20px rgba(227, 30, 36, 0.6), var(--shadow-red-glow);
  transform: translateY(-2px);
}

.btn-primary:hover::after {
  width: 300px;
  height: 300px;
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.btn-secondary:hover {
  background-color: var(--text-light);
  color: var(--text-dark);
  transform: translateY(-2px);
}

/* Glow Effect */
.btn-glow {
  animation: button-pulse 2s infinite alternate;
}

@keyframes button-pulse {
  0% {
    box-shadow: 0 4px 10px rgba(227, 30, 36, 0.3);
  }
  100% {
    box-shadow: 0 4px 20px rgba(227, 30, 36, 0.7), 0 0 10px var(--primary-red);
  }
}

/* --- HEADER & NAVIGATION --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
}

/* Red Contact Top Bar */
.top-bar {
  background-color: var(--primary-red);
  color: var(--text-light);
  font-size: 0.8rem;
  padding: 0.45rem 0;
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.top-bar-left, .top-bar-right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.top-bar-left a, .top-bar-right a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.top-bar-left a:hover, .top-bar-right a:hover {
  color: var(--text-light);
}

/* Main Navbar Wrapper */
.nav-wrapper {
  padding: 2.6rem 0;
  background-color: transparent;
  transition: var(--transition-smooth);
}

header.sticky .top-bar {
  margin-top: -38px; /* Slides top bar up out of view */
  opacity: 0;
  pointer-events: none;
}

header.sticky .nav-wrapper {
  padding: 0.8rem 0;
  background-color: rgba(11, 11, 11, 0.96);
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(227, 30, 36, 0.15);
}

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

.logo-container {
  height: 60px;
  display: flex;
  align-items: center;
}

.logo-container img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}

.nav-links a {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1.2px;
  position: relative;
  padding: 0.5rem 0;
  color: var(--text-muted);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-red);
  transition: var(--transition-smooth);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-light);
}

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

.nav-btn {
  padding: 0.7rem 1.6rem;
  font-size: 0.8rem;
}

/* Mobile Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  background: transparent;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--text-light);
  border-radius: var(--border-radius-full);
  transition: var(--transition-smooth);
}

@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: rgba(11, 11, 11, 0.99);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transition: var(--transition-smooth);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(227, 30, 36, 0.2);
  }

  .nav-links.active {
    right: 0;
  }

  .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, -6px);
  }
}
.scroll-arrow{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    color:#fff;
    font-size:30px;
    animation:bounce 1.8s infinite;
    z-index:10;
}

@keyframes bounce{

    0%,20%,50%,80%,100%{
        transform:translate(-50%,0);
    }

    40%{
        transform:translate(-50%,-12px);
    }

    60%{
        transform:translate(-50%,-6px);
    }

}
/* --- HERO BANNERS --- */
.hero {
  height: 100vh;
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--bg-dark);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(11, 11, 11, 0.35) 0%, rgba(11, 11, 11, 0.35) 45%, rgba(11, 11, 11, 0.3) 100%);
  z-index: 2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  transform: scale(1.05);
  animation: zoom-out 20s infinite alternate;
  display: block;
}

@media (max-width: 768px) {
  .hero {
    height: 90vh;
    min-height: 90svh;
  }

  .hero-bg img {
    object-position: center center;
    transform: scale(1.02);
  }
}

@keyframes zoom-out {
  0% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero-content {
  text-align: left;
  max-width: 600px;
}

.hero-subtitle {
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--primary-red);
  letter-spacing: 3px;
  margin-bottom: 1rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(30px);
  animation: fade-up-anim 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title {
  font-size: 4.8rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.05;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
  opacity: 0;
  transform: translateY(30px);
  animation: fade-up-anim 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero-title span {
  display: block;
}

.hero-description {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2.2rem;
  line-height: 1.5;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
  opacity: 0;
  transform: translateY(30px);
  animation: fade-up-anim 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fade-up-anim 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

@keyframes fade-up-anim {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-subtitle {
    font-size: 0.9rem;
  }
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .btn {
    width: 100%;
  }
}

/* Inner Page Hero */
.page-hero {
  height: 45vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 38px; /* Offset for top bar height */
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.40) 100%);
  z-index: 2;
}

.page-hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
}

.page-hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.breadcrumbs {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.breadcrumbs a {
  transition: var(--transition-fast);
}

.breadcrumbs a:hover {
  color: var(--primary-red);
}

.breadcrumbs span {
  margin: 0 0.5rem;
  color: var(--primary-red);
}

@media (max-width: 768px) {
  .page-hero {
    height: 35vh;
    margin-top: 0;
  }
  .page-hero-title {
    font-size: 2.5rem;
  }
}

/* --- SECTION HEADINGS --- */
.section-header {
  margin-bottom: 4rem;
  position: relative;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--primary-red);
  font-weight: 700;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  position: relative;
  display: inline-block;
  letter-spacing: 1px;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--primary-red);
  margin-top: 1rem;
  transition: var(--transition-smooth);
}

.text-center .section-title::after {
  margin-left: auto;
  margin-right: auto;
}

/* --- HOME PAGE SECTIONS --- */

/* Feature Cards Grid (Hero Overlay) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: -5rem;
  position: relative;
  z-index: 10;
}

.feature-card {
  background-color: var(--bg-dark-gray);
  padding: 2.5rem 1.8rem;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(227, 30, 36, 0.08) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(227, 30, 36, 0.3);
  box-shadow: var(--shadow-premium), var(--shadow-red-glow);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 2.2rem;
  color: var(--primary-red);
  margin-bottom: 1.2rem;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px var(--primary-red));
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

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

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -3rem;
  }
}

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
}

/* Categories Carousel Section */
.categories-slider-container {
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
}

.categories-slider {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: grab;
}

.categories-slider:active {
  cursor: grabbing;
}

.category-slide {
  flex: 0 0 calc((100% - 6rem) / 4);
  background-color: var(--bg-dark-gray);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.category-slide:hover {
  border-color: rgba(227, 30, 36, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.category-image-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.category-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.category-slide:hover .category-image-wrap img {
  transform: scale(1.08);
}

.category-slide-content {
  padding: 1.2rem;
  text-align: center;
}

.category-slide h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.category-link {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--primary-red);
  font-weight: 700;
  letter-spacing: 1px;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-full);
  background-color: var(--bg-dark-gray);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.slider-btn:hover {
  background-color: var(--primary-red);
  color: var(--text-light);
  border-color: var(--primary-red);
}

@media (max-width: 992px) {
  .category-slide {
    flex: 0 0 calc((100% - 4rem) / 3);
  }
}

@media (max-width: 768px) {
  .category-slide {
    flex: 0 0 calc((100% - 2rem) / 2);
  }
}

@media (max-width: 480px) {
  .category-slide {
    flex: 0 0 100%;
  }
}

/* Continuous Brand Marquee */
.marquee-container {
  overflow: hidden;
  width: 100%;
  background-color: var(--bg-dark-gray);
  padding: 2.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
}

.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-dark-gray), transparent);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-dark-gray), transparent);
}

.marquee-content {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}

.marquee-item {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 3rem;
  white-space: nowrap;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  transition: var(--transition-fast);
}

.marquee-item span {
  color: var(--primary-red);
}

.marquee-item:hover {
  color: var(--text-light);
  transform: scale(1.05);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Why Choose Us Cards */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.why-card {
  background-color: var(--bg-dark-gray);
  padding: 3.2rem 2.2rem;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition-smooth);
  position: relative;
  z-index: 1;
}

.why-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-red);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.4s ease-out;
  border-bottom-left-radius: var(--border-radius-md);
  border-bottom-right-radius: var(--border-radius-md);
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(227, 30, 36, 0.2);
}

.why-card:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.why-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(227, 30, 36, 0.1);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary-red);
  margin-bottom: 1.8rem;
  transition: var(--transition-smooth);
}

.why-card:hover .why-icon {
  background-color: var(--primary-red);
  color: var(--text-light);
  transform: rotate(360deg);
}

.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

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

@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* Home Testimonial Single-Card Style */
.home-testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--bg-dark-gray);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  text-align: center;
  position: relative;
}

.home-testimonial-card .quote-icon {
  font-size: 2.5rem;
  color: rgba(227, 30, 36, 0.25);
  margin-bottom: 1rem;
}

.home-testimonial-card p {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 2rem;
}

.home-testimonial-card h4 {
  font-size: 1.05rem;
  letter-spacing: 1px;
}

.home-testimonial-card span {
  color: var(--primary-red);
  font-weight: 700;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #333;
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background-color: var(--primary-red);
  transform: scale(1.2);
}

/* --- ABOUT PAGE --- */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

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

/* About Multi-Image Grid */
.about-image-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.0fr;
  gap: 1.5rem;
}

.about-img-large {
  grid-row: span 2;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  aspect-ratio: 3/4;
}

.about-img-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-small {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  aspect-ratio: 4/3;
}

.about-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

/* Mission & Vision Section */
.mission-vision-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.mission-card {
  background-color: var(--bg-dark-gray);
  padding: 4rem 3rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.mission-card:hover {
  transform: translateY(-5px);
  border-color: rgba(227, 30, 36, 0.3);
  box-shadow: var(--shadow-premium), var(--shadow-red-glow);
}

.mission-card h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.mission-card p {
  color: var(--text-muted);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .mission-vision-container {
    grid-template-columns: 1fr;
  }
}

/* Counters Section (Red bar in mockup) */
.counters-section {
  background-color: var(--primary-red);
  padding: 3rem 0;
  box-shadow: var(--shadow-red-glow);
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.counter-item {
  color: var(--text-light);
}

.counter-number {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.2rem;
  font-family: var(--font-sans);
}

.counter-label {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 992px) {
  .counters-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .counters-grid {
    grid-template-columns: 1fr;
  }
  .counter-number {
    font-size: 2.8rem;
  }
}

/* Why Cycling Section */
.why-cycling-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.why-cycling-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.why-cycling-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--bg-dark-gray);
  border: 1px solid rgba(227, 30, 36, 0.2);
  color: var(--primary-red);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.why-cycling-item:hover .why-cycling-icon {
  background-color: var(--primary-red);
  color: var(--text-light);
  border-color: var(--primary-red);
  transform: scale(1.1);
}

.why-cycling-item h4 {
  font-size: 0.8rem;
  letter-spacing: 1px;
}

@media (max-width: 992px) {
  .why-cycling-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .why-cycling-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Showroom Image Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  aspect-ratio: 1/1;
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(227, 30, 36, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 2;
}

.gallery-overlay i {
  color: var(--text-light);
  font-size: 2rem;
  transform: scale(0.5);
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- PRODUCTS PAGE --- */

/* Tabs Selector */
.product-tabs-container {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tab-btn {
  padding: 1.2rem 2.5rem;
  background-color: transparent;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  position: relative;
  transition: var(--transition-fast);
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-red);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.tab-btn:hover {
  color: var(--text-light);
}

.tab-btn.active {
  color: var(--text-light);
}

.tab-btn.active::after {
  transform: scaleX(1);
  box-shadow: 0 0 10px var(--primary-red);
}

@media (max-width: 768px) {
  .product-tabs-container {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
  }
  .tab-btn {
    padding: 1rem 1.5rem;
    white-space: nowrap;
  }
}

/* Grid & Layout System */
.product-display-section {
  position: relative;
  min-height: 400px;
}

/* Brand Marquee View (Default state) */
.product-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 2rem 0;
  position: relative;
}

.product-marquee {
  display: flex;
  width: max-content;
  animation: product-scroll 80s linear infinite;
  gap: 2.5rem;
}

.product-marquee-wrapper:hover .product-marquee {
  animation-play-state: paused;
}

@keyframes product-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquee-pause-text {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.marquee-pause-text i {
  color: var(--primary-red);
  margin-right: 0.3rem;
}

/* Single Product Card */
.product-card {
  width: 320px;
  background-color: var(--bg-dark-gray);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(227, 30, 36, 0.3);
  box-shadow: var(--shadow-premium), var(--shadow-red-glow);
}

.product-image-container {
  aspect-ratio: 4/3;
  background-color: #121212;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.product-card:hover .product-image-container img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary-red);
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: var(--border-radius-sm);
  z-index: 2;
  letter-spacing: 1px;
}

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

.product-brand {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--primary-red);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.product-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--text-light);
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.spec-pill {
  background-color: rgba(255, 255, 255, 0.05);
  font-size: 0.7rem;
  color: var(--text-muted);
  padding: 0.25rem 0.6rem;
  border-radius: var(--border-radius-sm);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.2rem;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-light);
}

.product-buy-btn {
  font-size: 0.8rem;
  padding: 0.6rem 1.2rem;
}

/* Grid Filter View (For Desktop Filters) */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  width: 100%;
}

.product-grid .product-card {
  width: 100%;
}

/* Swipeable Carousel View (For Mobile Filters) */
.product-carousel-wrapper {
  overflow-x: auto;
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  width: 100%;
  scrollbar-width: none;
}

.product-carousel-wrapper::-webkit-scrollbar {
  display: none;
}

.product-carousel-wrapper .product-card {
  flex: 0 0 280px;
}

/* Brand Catalog Columns Grid */
.brand-columns-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

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

.brand-column-header {
  background-color: var(--bg-dark-gray);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-light);
  border-radius: var(--border-radius-sm);
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 3px solid var(--primary-red);
}

.brand-column .product-card {
  width: 100%;
}

@media (max-width: 992px) {
  .brand-columns-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .brand-columns-grid {
    grid-template-columns: 1fr;
  }
}

/* --- SERVICES PAGE --- */
.services-two-column {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
}

.services-list-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.services-panel-title {
  font-size: 1.5rem;
  color: var(--text-light);
  border-bottom: 2px solid var(--primary-red);
  padding-bottom: 0.8rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.service-card-flat {
  display: flex;
  gap: 1.2rem;
  background-color: var(--bg-dark-gray);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition-fast);
}

.service-card-flat:hover {
  border-color: rgba(227, 30, 36, 0.2);
  transform: translateX(5px);
}

.service-card-flat i {
  font-size: 1.5rem;
  color: var(--primary-red);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.service-card-flat h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.service-card-flat p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.services-panel-image {
  margin-top: 2rem;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 992px) {
  .services-two-column {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
}

/* Service Process Timeline (Horizontal) */
.timeline-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding: 3rem 0;
}

.timeline-row::after {
  content: '';
  position: absolute;
  height: 4px;
  background-color: var(--bg-dark-gray);
  left: 10%;
  right: 10%;
  top: 60px;
  transform: translateY(-50%);
  z-index: 1;
}

.timeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 18%;
}

.timeline-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--bg-dark-gray);
  border: 3px solid var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
  transition: var(--transition-smooth);
  box-shadow: 0 0 15px rgba(227, 30, 36, 0.2);
}

.timeline-node:hover .timeline-circle {
  background-color: var(--primary-red);
  box-shadow: 0 0 25px var(--primary-red);
  transform: scale(1.1);
}

.timeline-node h3 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  text-align: center;
}

.timeline-node p {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

@media (max-width: 768px) {
  .timeline-row {
    flex-direction: column;
    gap: 3rem;
    align-items: flex-start;
    padding-left: 2rem;
  }
  
  .timeline-row::after {
    width: 4px;
    height: 80%;
    left: 48px;
    top: 10%;
    transform: none;
  }
  
  .timeline-node {
    flex-direction: row;
    width: 100%;
    gap: 2rem;
    text-align: left;
  }
  
  .timeline-node h3 {
    text-align: left;
  }
  
  .timeline-node p {
    text-align: left;
  }
  
  .timeline-circle {
    margin-bottom: 0;
    flex-shrink: 0;
  }
}

/* Service CTA Box */
.service-cta-box {
  background: linear-gradient(135deg, var(--bg-dark-gray) 0%, #1c0e0f 100%);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(227, 30, 36, 0.2);
  padding: 5rem;
  text-align: center;
  box-shadow: var(--shadow-premium), var(--shadow-red-glow);
}

.service-cta-box h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.service-cta-box p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .service-cta-box {
    padding: 3rem 1.5rem;
  }
}

/* --- CONTACT PAGE --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.info-item {
  display: flex;
  gap: 1.5rem;
}

.info-item-icon {
  width: 50px;
  height: 50px;
  background-color: var(--bg-dark-gray);
  border: 1px solid rgba(227, 30, 36, 0.15);
  border-radius: var(--border-radius-md);
  color: var(--primary-red);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.info-item:hover .info-item-icon {
  background-color: var(--primary-red);
  color: var(--text-light);
  border-color: var(--primary-red);
  box-shadow: 0 0 10px rgba(227, 30, 36, 0.4);
}

.info-item-details h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: var(--text-muted);
}

.info-item-details p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
}

/* Contact Form Styling */
.contact-form-card {
  background-color: var(--bg-dark-gray);
  padding: 4rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
  margin-bottom: 2rem;
  position: relative;
}

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

.form-control {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-sm);
  padding: 1rem 1.2rem;
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.06);
  border-color: var(--primary-red);
  box-shadow: var(--shadow-red-glow);
}

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

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 576px) {
  .contact-form-card {
    padding: 2.5rem 1.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Google Map styling */
.map-section {
  width: 100%;
  height: 450px;
  background-color: var(--bg-dark-gray);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  filter: none;
}

/* --- FOOTER & RED BANNERS --- */
.footer-features-bar {
  background-color: var(--primary-red);
  color: var(--text-light);
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.footer-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.footer-feature-item i {
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
}

.footer-feature-item h4 {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.footer-feature-item p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
  .footer-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .footer-features-grid {
    grid-template-columns: 1fr;
  }
}

footer {
  background-color: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 6rem 0 3rem 0;
}

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

.footer-col h3 {
  font-size: 1.1rem;
  margin-bottom: 1.8rem;
  position: relative;
  display: inline-block;
}

.footer-col h3::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--primary-red);
  margin-top: 0.6rem;
}

.footer-col p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  height: 50px;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

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

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-full);
  background-color: var(--bg-dark-gray);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-btn:hover {
  background-color: var(--primary-red);
  color: var(--text-light);
  border-color: var(--primary-red);
  transform: translateY(-3px);
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form .form-control {
  padding: 0.8rem 1rem;
}

.newsletter-form .btn {
  padding: 0 1.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-bottom-links a:hover {
  color: var(--primary-red);
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .footer-bottom-links {
    justify-content: center;
  }
}
.footer-links li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

@media (max-width:576px){

    .footer-links li{
        justify-content: center;
    }

}
@media (max-width: 576px) {

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-col h3 {
    display: inline-block;
  }

  .footer-col h3::after {
    margin: 0.6rem auto 0;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-links {
    padding: 0;
    text-align: center;
  }

  .footer-links li {
    text-align: center;
  }

  .footer-links a:hover {
    padding-left: 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}
/* --- FLOATING & INTERACTIVE WIDGETS --- */

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 2.2rem;
  box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: var(--transition-smooth);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-color: inherit;
  opacity: 0.5;
  z-index: -1;
  animation: pulse-ring 2s cubic-bezier(0.215, 0.610, 0.355, 1) infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.8);
}

/* Back To Top Button */
.back-to-top {
  position: fixed;
  bottom: 120px;
  right: 45px;
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-full);
  background-color: var(--bg-dark-gray);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--primary-red);
  border-color: var(--primary-red);
  color: var(--text-light);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(227, 30, 36, 0.4);
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
  }
  .back-to-top {
    bottom: 85px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}

/* --- SCROLL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade-up {
  transform: translateY(50px);
}

.reveal-slide-left {
  transform: translateX(-50px);
}


.reveal-slide-right {
  transform: translateX(50px);
}

.reveal.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* ============================================================
   SUCCESS POPUP — Glassmorphism Overlay
   ============================================================ */

/* Full-screen backdrop */
.success-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.success-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Popup card */
.success-popup {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: rgba(22, 22, 22, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-lg);
  padding: 3rem 2.5rem 2rem;
  text-align: center;
  box-shadow:
    0 0 0 1px rgba(227, 30, 36, 0.18),
    0 32px 64px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(227, 30, 36, 0.08);
  transform: scale(0.82) translateY(24px);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              opacity  0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.success-overlay.active .success-popup {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Checkmark icon wrapper */
.success-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  width: 88px;
  height: 88px;
}

/* Animated SVG checkmark */
.success-checkmark {
  width: 88px;
  height: 88px;
  filter: drop-shadow(0 0 12px rgba(34, 197, 94, 0.55));
}

.checkmark-circle {
  stroke: #22c55e;
  stroke-width: 2;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-linecap: round;
  animation: stroke-circle 0.6s cubic-bezier(0.65, 0, 0.45, 1) 0.3s forwards;
}

.checkmark-tick {
  stroke: #22c55e;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke-tick 0.4s cubic-bezier(0.65, 0, 0.45, 1) 0.85s forwards;
}

/* Reset animations when popup is hidden so they replay next time */
.success-overlay:not(.active) .checkmark-circle,
.success-overlay:not(.active) .checkmark-tick {
  animation: none;
  stroke-dashoffset: 166; /* circle stays hidden */
}
.success-overlay:not(.active) .checkmark-tick {
  stroke-dashoffset: 48;
}

@keyframes stroke-circle {
  to { stroke-dashoffset: 0; }
}

@keyframes stroke-tick {
  to { stroke-dashoffset: 0; }
}

/* Title */
.success-popup-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.5px;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

/* Body copy */
.success-popup-msg {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

/* Auto-close progress bar */
.success-progress-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-full);
  overflow: hidden;
}

.success-progress-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--primary-red), #ff6b6b);
  border-radius: var(--border-radius-full);
  box-shadow: 0 0 6px var(--primary-red-glow);
}

/* Mobile tweaks */
@media (max-width: 480px) {
  .success-popup {
    padding: 2.25rem 1.5rem 1.75rem;
    border-radius: var(--border-radius-md);
  }

  .success-icon-wrap,
  .success-checkmark {
    width: 72px;
    height: 72px;
  }
}

