:root {
    --color-bg: #0a0a0a;
    --color-bg-alt: #121212;
    --color-text: #ffffff;
    --color-text-dim: #a0a0a0;
    --color-red: #E60000;
    --color-red-glow: rgba(230, 0, 0, 0.4);
    --color-border: #333333;
    
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-main);
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography Utilities */
.text-red {
    color: var(--color-red);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* 3D Canvas */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none; /* Let clicks pass through */
}

/* Content Wrapper */
.content-wrapper {
    position: relative;
    z-index: 10;
}
/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 12px 5%;
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1001;
}

.logo-icon svg {
    filter: drop-shadow(0 0 10px var(--color-red-glow));
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon svg {
    transform: scale(1.05);
}

.logo-text h1 {
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1;
    background: linear-gradient(135deg, #fff, #E60000);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-text span {
    font-size: 0.6rem;
    color: var(--color-red);
    letter-spacing: 1px;
}

/* Desktop Navigation */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #E60000, #ff3333);
    transition: width 0.3s ease;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: #E60000;
}

/* Mobile Navigation Styles */
.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    color: #fff;
    transition: all 0.3s ease;
}

.hamburger:hover {
    color: #E60000;
    transform: scale(1.1);
}

.hamburger.active {
    color: #E60000;
}

/* Mobile Menu Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Navigation Links */
.mobile-nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    list-style: none;
    transition: right 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    border-left: 2px solid rgba(230, 0, 0, 0.3);
}

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

.mobile-nav-links li {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.3s ease;
}

.mobile-nav-links.active li {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger animation for mobile menu items */
.mobile-nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav-links.active li:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav-links.active li:nth-child(6) { transition-delay: 0.35s; }

.mobile-nav-links a {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    display: block;
    position: relative;
    transition: all 0.3s ease;
}

.mobile-nav-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #E60000;
    transition: width 0.3s ease;
}

.mobile-nav-links a:hover {
    color: #E60000;
    padding-left: 35px;
}

.mobile-nav-links a:hover::before {
    width: 20px;
}

.mobile-nav-links a.active {
    color: #E60000;
}

/* Close button for mobile menu */
/* .mobile-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(230, 0, 0, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-close-btn:hover {
    background: #E60000;
    transform: rotate(90deg);
}

.mobile-close-btn i {
    font-size: 1.2rem;
    color: #fff;
} */

/* Responsive Breakpoints */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .logo-text h1 {
        font-size: 1.2rem;
    }
    
    .logo-text span {
        font-size: 0.5rem;
    }
    
    .logo-icon svg {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 15px 5%;
    }
    
    .navbar.scrolled {
        padding: 10px 5%;
    }
    
    .logo {
        gap: 10px;
    }
    
    .logo-text h1 {
        font-size: 1rem;
    }
    
    .logo-text span {
        font-size: 0.45rem;
    }
    
    .logo-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .mobile-nav-links {
        width: 100%;
        max-width: 100%;
    }
    
    .mobile-nav-links a {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

/* Landscape mode for mobile */
@media (max-width: 968px) and (orientation: landscape) {
    .mobile-nav-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        padding-top: 80px;
        overflow-y: auto;
    }
    
    .mobile-nav-links li {
        width: 100%;
    }
    
    .mobile-nav-links a {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-links {
        gap: 20px;
    }
    
    .nav-links a {
        font-size: 0.8rem;
    }
}

/* Animation for hamburger icon */
.hamburger.active i::before {
    content: '\f00d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* Sections Common */
section {
    min-height: 100vh;
    padding: 100px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.line-accent {
    width: 60px;
    height: 4px;
    background-color: var(--color-red);
    margin: 15px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 15px var(--color-red-glow);
}
/* ================= HERO SECTION ================= */

.hero-section {
    position: relative;
    text-align: left;
    padding: 120px 5% 80px;
}

/* Content */
.hero-content {
    max-width: 100%;
    padding: 0 15px;
}

/* Subtitle */
.subtitle {
    font-size: clamp(0.7rem, 2.5vw, 1rem);
    color: var(--color-text-dim);
    letter-spacing: clamp(1px, 0.5vw, 4px);
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Title (FIXED: fluid + no overflow issues) */
.title {
    font-size: clamp(2rem, 8vw, 4rem);
    line-height: 1.1;    
    letter-spacing: -1px;
}

/* Tagline */
.tagline {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--color-text-dim);
    margin-bottom: 30px;
}

/* Buttons */
.btn-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap; /* important for mobile */
}

.btn {
    padding: 12px 25px;
    font-size: clamp(0.75rem, 2.5vw, 1rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

/* Primary Button */
.btn-primary {
    background-color: var(--color-red);
    color: #fff;
    border: 2px solid var(--color-red);
    box-shadow: 0 0 20px var(--color-red-glow);
}

.btn-primary:hover {
    background-color: transparent;
    box-shadow: inset 0 0 20px var(--color-red-glow);
}

/* Secondary Button */
.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid var(--color-border);
}

.btn-secondary:hover {
    border-color: var(--color-text);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: clamp(0.6rem, 2vw, 0.8rem);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* ================= MOBILE ADJUSTMENTS ================= */

@media (max-width: 768px) {
  .title {
        font-size: 2.2rem;
        line-height: 1.15;
    }
    .hero-section {
        text-align: center;
        padding: 100px 5% 70px;
    }

    .hero-content {
        max-width: 100%;
    }

    .btn-group {
        justify-content: center;
    }

    .scroll-indicator {
        bottom: 15px;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    .hero-section {
        padding: 80px 5% 60px;
    }
}

/* Touch improvements */
@media (hover: none) and (pointer: coarse) {
    .btn {
        -webkit-tap-highlight-color: transparent;
    }

    .btn-primary:active {
        opacity: 0.8;
    }

    .btn-secondary:active {
        background-color: rgba(255, 255, 255, 0.1);
    }
}

/* Brands Marquee */
.brands-marquee {
    width: 100%;
    overflow: hidden;
    background: rgba(10, 10, 10, 0.9);
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    white-space: nowrap;
    position: relative;
    z-index: 10;
    display: flex;
}

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

.brands-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--color-bg) 0%, transparent 100%);
}

.brands-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--color-bg) 0%, transparent 100%);
}

.marquee-content {
    display: flex;
    gap: 100px;
    padding-right: 100px; /* Match gap to ensure seamless loop */
    align-items: center;
    animation: scroll 25s linear infinite;
}

.brand-logo {
    height: 45px;
    opacity: 0.5;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.brand-logo:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

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

/* Services */
.services-section {
    background: linear-gradient(180deg, transparent 0%, rgba(20,20,20,0.8) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(25, 25, 25, 0.6);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px 30px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    border-color: rgba(230, 0, 0, 0.3);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--color-red);
    margin-bottom: 20px;
}

.service-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--color-text-dim);
    font-size: 0.95rem;
}

/* About */
.about-container {
    display: flex;
    gap: 50px;
    align-items: center;
    background: rgba(20, 20, 20, 0.7);
    padding: 50px;
    border-radius: 15px;
    border-left: 5px solid var(--color-red);
}

.about-text {
    flex: 2;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #ccc;
}

.about-text strong {
    color: #fff;
}

.about-text em {
    color: var(--color-red);
    font-style: normal;
    font-weight: bold;
}

.about-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat {
    text-align: center;
}

.stat h4 {
    font-size: 3rem;
    color: var(--color-red);
    line-height: 1;
    margin-bottom: 5px;
}

.stat span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-dim);
}
/* Contact Section Enhanced */
.contact-section {
  padding: 80px 5% 100px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
  overflow-x: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #E60000, #ff3333, #E60000, transparent);
}

.section-subtitle {
  text-align: center;
  color: #888;
  margin-top: 15px;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.contact-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

/* Contact Cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.contact-item {
  background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
  padding: 35px 25px;
  text-align: center;
  border-radius: 20px;
  border: 1px solid rgba(230, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #E60000, #ff3333);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.contact-item:hover::before {
  transform: scaleX(1);
}

.contact-item:hover {
  transform: translateY(-5px);
  border-color: rgba(230, 0, 0, 0.3);
  box-shadow: 0 10px 30px rgba(230, 0, 0, 0.15);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(230, 0, 0, 0.1), rgba(230, 0, 0, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #E60000, #cc0000);
}

.contact-icon i {
  font-size: 2rem;
  color: #E60000;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon i {
  color: #fff;
}

.contact-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #fff;
}

.contact-item p {
  color: #bbb;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.contact-item a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #E60000;
}

.hours-tag {
  font-size: 0.8rem;
  color: #E60000 !important;
  margin-top: 10px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  font-size: 0.85rem;
  color: #E60000 !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-link:hover {
  gap: 12px;
}

/* Contact Grid - Map & Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

/* Map Container */
.map-container {
  background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(230, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.map-container:hover {
  border-color: rgba(230, 0, 0, 0.3);
  box-shadow: 0 10px 30px rgba(230, 0, 0, 0.1);
}

.map-header {
  padding: 20px 25px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(230, 0, 0, 0.1);
}

.map-header i {
  color: #E60000;
  font-size: 1.2rem;
  margin-right: 10px;
}

.map-header h3 {
  display: inline-block;
  color: #fff;
  font-size: 1.1rem;
}

.google-map {
  width: 100%;
  height: 350px;
  background: #333;
}

.map-actions {
  padding: 15px 25px;
  display: flex;
  gap: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.map-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  background: rgba(230, 0, 0, 0.1);
  color: #E60000;
  text-decoration: none;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.map-btn:hover {
  background: #E60000;
  color: #fff;
  transform: translateY(-2px);
}

.map-btn.waze:hover {
  background: #1f8c4c;
  color: #fff;
}

/* Contact Form */
.contact-form-container {
  background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(230, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.contact-form-container:hover {
  border-color: rgba(230, 0, 0, 0.3);
  box-shadow: 0 10px 30px rgba(230, 0, 0, 0.1);
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header i {
  font-size: 2.5rem;
  color: #E60000;
  margin-bottom: 10px;
}

.form-header h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 5px;
}

.form-header p {
  color: #888;
  font-size: 0.85rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: #fff;
  font-size: 0.85rem;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group label i {
  color: #E60000;
  margin-right: 5px;
  font-size: 0.8rem;
}

.required {
  color: #E60000;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 15px;
  color: #fff;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #E60000;
  box-shadow: 0 0 0 3px rgba(230, 0, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #666;
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.checkbox-group input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-group label {
  margin-bottom: 0;
  cursor: pointer;
}

.submit-btn {
  background: linear-gradient(135deg, #E60000, #cc0000);
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(230, 0, 0, 0.3);
  gap: 15px;
}

/* Social Links */
.social-links-wrapper {
  text-align: center;
  margin: 60px 0 40px;
}

.social-header {
  margin-bottom: 30px;
}

.social-header i {
  font-size: 2rem;
  color: #E60000;
  margin-bottom: 10px;
  display: inline-block;
}

.social-header h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 5px;
}

.social-header p {
  color: #888;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: linear-gradient(135deg, #1a1a1a, #222);
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn i {
  font-size: 1.3rem;
}

.social-btn span {
  font-size: 0.9rem;
  font-weight: 500;
}

.social-btn:hover {
  transform: translateY(-3px);
}

.social-btn.instagram:hover {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  border-color: transparent;
}

.social-btn.facebook:hover {
  background: #1877f2;
  border-color: transparent;
}

.social-btn.tiktok:hover {
  background: #000000;
  border-color: #00f2ea;
  box-shadow: 0 0 15px rgba(0, 242, 234, 0.3);
}

.social-btn.whatsapp:hover {
  background: #25D366;
  border-color: transparent;
}

/* Business Hours */
.business-hours {
  background: linear-gradient(135deg, rgba(230, 0, 0, 0.1), rgba(230, 0, 0, 0.05));
  border-radius: 20px;
  padding: 25px;
  margin-top: 40px;
  border: 1px solid rgba(230, 0, 0, 0.2);
}

.hours-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.hours-content > i {
  font-size: 2rem;
  color: #E60000;
}

.hours-text h4 {
  color: #fff;
  margin-bottom: 5px;
}

.hours-text p {
  color: #bbb;
  font-size: 0.85rem;
}

.emergency-contact {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(230, 0, 0, 0.15);
  padding: 10px 20px;
  border-radius: 15px;
}

.emergency-contact i {
  font-size: 1.5rem;
  color: #E60000;
}

.emergency-contact span {
  font-size: 0.8rem;
  color: #bbb;
  display: block;
}

.emergency-contact strong a {
  font-size: 1.1rem;
  color: #E60000;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-cards {
    gap: 20px;
  }
  
  .contact-grid {
    gap: 30px;
  }
}

@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .google-map {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 5% 80px;
  }
  
  .contact-cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .map-actions {
    flex-direction: column;
  }
  
  .hours-content {
    flex-direction: column;
    text-align: center;
  }
  
  .social-links {
    gap: 12px;
  }
  
  .social-btn {
    padding: 10px 18px;
  }
  
  .social-btn span {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .contact-item {
    padding: 25px 20px;
  }
  
  .contact-form-container {
    padding: 20px;
  }
  
  .social-btn {
    padding: 8px 15px;
  }
  
  .social-btn span {
    display: none;
  }
  
  .social-btn i {
    font-size: 1.2rem;
  }
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 5%;
    background: #050505;
    border-top: 1px solid #1a1a1a;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: #444;
}

footer p {
    color: #666;
    font-size: 0.8rem;
}

/* Sub Pages Layout Additions */
.sub-page-wrapper {
    padding-top: 80px;
    background: radial-gradient(circle at top, rgba(20,0,0,0.6) 0%, var(--color-bg) 60%);
    min-height: 100vh;
}

.page-header {
    min-height: 35vh;
    padding-top: 60px;
    padding-bottom: 20px;
}

.page-description {
    max-width: 800px;
    margin: 0 auto;
    color: var(--color-text-dim);
    font-size: 1.25rem;
    text-align: center;
    line-height: 1.8;
}

.products-grid-section {
    padding-top: 0;
    min-height: auto;
    margin-bottom: 80px;
}

/* Brand Filters */
.brand-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    color: var(--color-text);
    border: 2px solid rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover {
    border-color: rgba(255,255,255,0.3);
}

.filter-btn.active {
    background: var(--color-red);
    border-color: var(--color-red);
    color: #fff;
    box-shadow: 0 4px 15px var(--color-red-glow);
}

/* E-commerce Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: rgba(25, 25, 25, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-red);
    box-shadow: 0 15px 40px rgba(230,0,0,0.2);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-red);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 10px var(--color-red-glow);
}

.product-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-brand {
    font-size: 0.8rem;
    color: var(--color-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 600;
}

.product-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.product-specs {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
}

.product-specs li {
    font-size: 0.9rem;
    color: var(--color-text-dim);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.product-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    font-family: var(--font-heading);
}

.btn-whatsapp-product {
    background: #25D366;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-whatsapp-product:hover {
    background: #1ebd5a;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* Floating WhatsApp Widget */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebd5a;
    box-shadow: 0px 6px 25px rgba(37, 211, 102, 0.5);
}

@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); }
}

/* Responsive */
@media (max-width: 900px) {
    .title { font-size: 3.5rem; }
    .contact-cards { grid-template-columns: 1fr; }
    .about-container { flex-direction: column; }
    .nav-links { display: none; }
    .hamburger { display: block; }
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}


/* testimonials  */

/* Testimonials Section */
.testimonials-section {
  padding: 80px 5% 100px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #E60000, transparent);
}

.section-subtitle {
  text-align: center;
  color: #888;
  margin-top: 15px;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  padding: 20px 0;
}

.testimonials-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 20px 10px;
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 20px);
  background: linear-gradient(135deg, #1e1e1e 0%, #252525 100%);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  border: 1px solid rgba(230, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #E60000, #ff3333);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: rgba(230, 0, 0, 0.3);
  box-shadow: 0 10px 40px rgba(230, 0, 0, 0.1);
}

.testimonial-content {
  position: relative;
  margin-bottom: 25px;
}

.quote-icon {
  font-size: 40px;
  color: rgba(230, 0, 0, 0.2);
  position: absolute;
  top: -10px;
  left: -5px;
  z-index: 1;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ccc;
  margin: 0;
  position: relative;
  z-index: 2;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #E60000;
  padding: 2px;
  background: #1e1e1e;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: #fff;
}

.author-info span {
  font-size: 0.85rem;
  color: #888;
  display: block;
  margin-bottom: 5px;
}

.rating {
  display: flex;
  gap: 3px;
}

.rating i {
  font-size: 12px;
  color: #ffc107;
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(230, 0, 0, 0.1);
  border: 1px solid rgba(230, 0, 0, 0.3);
  color: #E60000;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: #E60000;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: -20px;
}

.next-btn {
  right: -20px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  width: 30px;
  border-radius: 5px;
  background: #E60000;
}

.dot:hover {
  background: #E60000;
  transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .prev-btn { left: 5px; }
  .next-btn { right: 5px; }
  
  .testimonials-section {
    padding: 60px 5% 80px;
  }
  
  .testimonials-slider {
    gap: 15px;
    padding: 10px;
  }

  .testimonial-card {
    flex: 0 0 85%; /* NOT 100% */
  }
  
  .slider-btn {
    width: 35px;
    height: 35px;
  }
  
  .prev-btn {
    left: 5px;
  }
  
  .next-btn {
    right: 5px;
  }
  
  .testimonial-text {
    font-size: 0.9rem;
  }
  
  .author-avatar {
    width: 50px;
    height: 50px;
  }
}

/* faq */
/* FAQ Section */
.faq-section {
  padding: 80px 5% 100px;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  position: relative;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #E60000, #ff3333, #E60000, transparent);
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.faq-item {
  background: linear-gradient(135deg, #1e1e1e 0%, #252525 100%);
  border-radius: 16px;
  border: 1px solid rgba(230, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-item:hover {
  border-color: rgba(230, 0, 0, 0.3);
  box-shadow: 0 5px 20px rgba(230, 0, 0, 0.1);
  transform: translateY(-2px);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: rgba(30, 30, 30, 0.5);
  transition: all 0.3s ease;
}

.faq-question h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  letter-spacing: 0.3px;
  flex: 1;
  padding-right: 20px;
}

.faq-icon {
  font-size: 18px;
  color: #E60000;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
  padding: 0 25px 20px 25px;
  margin: 0;
  color: #bbb;
  line-height: 1.6;
  font-size: 0.9rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* FAQ Contact Card */
.faq-contact-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
  border-radius: 24px;
  border: 1px solid rgba(230, 0, 0, 0.2);
  padding: 40px;
  text-align: center;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}

.faq-contact-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(230, 0, 0, 0.05) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.faq-contact-content {
  position: relative;
  z-index: 2;
}

.faq-contact-content i {
  font-size: 48px;
  color: #E60000;
  margin-bottom: 15px;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.faq-contact-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 10px 0;
}

.faq-contact-content p {
  color: #999;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.faq-contact-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-faq-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #E60000, #cc0000);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-faq-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(230, 0, 0, 0.4);
  background: linear-gradient(135deg, #ff0000, #E60000);
}

.btn-faq-contact.whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.btn-faq-contact.whatsapp:hover {
  background: linear-gradient(135deg, #30db6b, #1da18a);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.btn-faq-contact i {
  font-size: 18px;
  margin: 0;
  animation: none;
}

/* Responsive Design */
@media (max-width: 1100px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 5% 80px;
  }
  
  .faq-question {
    padding: 15px 20px;
  }
  
  .faq-question h3 {
    font-size: 0.9rem;
    padding-right: 10px;
  }
  
  .faq-answer p {
    padding: 0 20px 15px 20px;
    font-size: 0.85rem;
  }
  
  .faq-contact-card {
    padding: 30px 20px;
  }
  
  .faq-contact-content h3 {
    font-size: 1.2rem;
  }
  
  .faq-contact-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-faq-contact {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .faq-question h3 {
    font-size: 0.85rem;
  }
  
  .faq-icon {
    font-size: 14px;
  }
}