/* =============================================
   HM CARPETS - PREMIUM STYLESHEET
   Powered by Orve Solutions
   ============================================= */

/* CSS RESET & VARIABLES */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Brand Colors */
  --accent-red: #E63946;
  --accent-red-dark: #C1121F;
  --accent-red-light: #FF4D5C;
  --brand-black: #1A1A1A;
  --brand-charcoal: #2D2D2D;
  
  /* Light Theme */
  --bg-primary: #FFFFFF;
  --bg-secondary: #FAFAFA;
  --bg-tertiary: #F5F5F5;
  --text-primary: #1A1A1A;
  --text-secondary: #4A4A4A;
  --text-muted: #888888;
  --border-color: #E5E5E5;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  --shadow-red: 0 8px 30px rgba(230, 57, 70, 0.25);
  
  /* Gradients */
  --gradient-red: linear-gradient(135deg, #E63946 0%, #C1121F 100%);
  --gradient-dark: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  --gradient-mixed: linear-gradient(135deg, #1A1A1A 0%, #E63946 100%);
  
  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --font-urdu: 'Noto Nastaliq Urdu', serif;
  
  /* Spacing & Layout */
  --container-max: 1280px;
  --header-height: 80px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Dark Theme */
[data-theme="dark"] {
  --bg-primary: #0F0F0F;
  --bg-secondary: #1A1A1A;
  --bg-tertiary: #242424;
  --text-primary: #FFFFFF;
  --text-secondary: #C5C5C5;
  --text-muted: #888888;
  --border-color: #2D2D2D;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Urdu Mode */
[data-lang="ur"] body {
  font-family: var(--font-urdu), var(--font-body);
}

[data-lang="ur"] .logo-name,
[data-lang="ur"] h1, [data-lang="ur"] h2, [data-lang="ur"] h3, 
[data-lang="ur"] h4, [data-lang="ur"] h5, [data-lang="ur"] h6 {
  font-family: var(--font-urdu);
  line-height: 1.8;
}

/* BASE STYLES */
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background var(--transition-normal), color var(--transition-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--gradient-red);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-red-dark);
}

/* SELECTION */
::selection {
  background: var(--accent-red);
  color: #fff;
}

/* =============================================
   PRELOADER
   ============================================= */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

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

.preloader-logo img {
  width: 100px;
  margin: 0 auto 30px;
  animation: pulse 1.5s ease-in-out infinite;
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin: 0 auto 16px;
}

.preloader-progress {
  height: 100%;
  background: var(--gradient-red);
  width: 0;
  animation: loadProgress 1.8s ease-out forwards;
}

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

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

@keyframes loadProgress {
  to { width: 100%; }
}

/* =============================================
   ANNOUNCEMENT BAR
   ============================================= */
.announcement-bar {
  background: var(--gradient-mixed);
  color: #fff;
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  font-size: 13px;
  font-weight: 500;
}

.announcement-container {
  white-space: nowrap;
  overflow: hidden;
}

.announcement-slide {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  animation: marquee 30s linear infinite;
  padding-left: 100%;
}

.announcement-slide span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.announcement-slide .separator {
  opacity: 0.5;
}

.announcement-slide i {
  color: #FFD700;
}

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

/* =============================================
   HEADER
   ============================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

[data-theme="dark"] .header.scrolled {
  background: rgba(15, 15, 15, 0.95);
}

.header-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform var(--transition-fast);
}

.logo:hover {
  transform: scale(1.02);
}

.logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1));
}

[data-theme="dark"] .logo-img {
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.1)) brightness(1.1);
}

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

.logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}

.logo-tagline {
  font-size: 10px;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

/* Desktop Nav */
.nav-desktop {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}

.nav-list > li {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-red);
  transition: all var(--transition-normal);
  transform: translateX(-50%);
  border-radius: var(--radius-full);
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--accent-red);
}

/* Dropdown */
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: 8px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  margin-top: 8px;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.dropdown-menu li a:hover {
  background: var(--bg-tertiary);
  color: var(--accent-red);
  padding-left: 20px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 42px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.action-btn:hover {
  background: var(--bg-tertiary);
  border-color: var(--border-color);
  transform: translateY(-2px);
}

.lang-toggle .lang-current {
  font-size: 12px;
  font-weight: 700;
}

.theme-toggle {
  width: 42px;
  padding: 0;
  position: relative;
}

.theme-toggle i {
  transition: all var(--transition-normal);
  position: absolute;
}

.theme-toggle .theme-icon-light {
  opacity: 0;
  transform: rotate(180deg) scale(0);
}

[data-theme="dark"] .theme-toggle .theme-icon-dark {
  opacity: 0;
  transform: rotate(-180deg) scale(0);
}

[data-theme="dark"] .theme-toggle .theme-icon-light {
  opacity: 1;
  transform: rotate(0deg) scale(1);
  color: #FFD700;
}

.call-btn {
  background: var(--gradient-red);
  color: #fff !important;
  border: none;
  box-shadow: var(--shadow-red);
}

.call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(230, 57, 70, 0.4);
  border: none;
}

/* Hamburger */
.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.nav-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--bg-primary);
  z-index: 9999;
  transition: right var(--transition-slow);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
}

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

.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  backdrop-filter: blur(4px);
}

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

.nav-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
}

.nav-mobile-logo {
  width: 50px;
}

.nav-mobile-close {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-mobile-list {
  list-style: none;
  flex: 1;
  padding: 20px;
  overflow-y: auto;
}

.nav-mobile-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 4px;
  transition: all var(--transition-fast);
}

.nav-mobile-link i {
  width: 24px;
  color: var(--accent-red);
}

.nav-mobile-link:hover {
  background: var(--bg-secondary);
  padding-left: 24px;
  color: var(--accent-red);
}

.nav-mobile-footer {
  padding: 20px;
  border-top: 1px solid var(--border-color);
}

.nav-mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gradient-red);
  color: #fff;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  box-shadow: var(--shadow-red);
}

.nav-mobile-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.nav-mobile-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.nav-mobile-social a:hover {
  background: var(--gradient-red);
  color: #fff;
  transform: translateY(-3px);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--brand-black);
  color: #B8B8B8;
  position: relative;
  margin-top: 80px;
}

.footer-wave {
  color: var(--brand-black);
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  transform: translateY(-99%);
  pointer-events: none;
}

.footer-wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

/* Newsletter */
.footer-newsletter {
  background: var(--gradient-red);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.footer-newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.newsletter-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
}

.newsletter-text h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 700;
}

.newsletter-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 20px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--accent-red);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 14px;
  transition: all var(--transition-fast);
}

.newsletter-form button:hover {
  background: var(--brand-black);
  color: #fff;
  transform: translateX(4px);
}

/* Footer Main */
.footer-main {
  padding: 70px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 55px;
  filter: brightness(1.1);
}

.footer-logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  display: block;
  line-height: 1.1;
}

.footer-logo-tag {
  font-size: 10px;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: #B8B8B8;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.footer-social a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-red);
  border-radius: 50%;
  transform: scale(0);
  transition: transform var(--transition-normal);
}

.footer-social a i {
  position: relative;
  z-index: 1;
}

.footer-social a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-red);
}

.footer-social a:hover::before {
  transform: scale(1);
}

.footer-title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient-red);
  border-radius: var(--radius-full);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #B8B8B8;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.footer-links a i {
  font-size: 10px;
  color: var(--accent-red);
  transition: transform var(--transition-fast);
}

.footer-links a:hover {
  color: #fff;
  padding-left: 6px;
}

.footer-links a:hover i {
  transform: translateX(3px);
}

/* Footer Contact */
.footer-contact-list {
  list-style: none;
}

.footer-contact-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.footer-contact-list li i {
  width: 40px;
  height: 40px;
  background: var(--gradient-red);
  color: #fff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}

.footer-contact-list li > div {
  flex: 1;
}

.footer-contact-list strong {
  color: #fff;
  font-size: 13px;
  display: block;
  margin-bottom: 2px;
}

.footer-contact-list span,
.footer-contact-list a {
  font-size: 13px;
  color: #B8B8B8;
  line-height: 1.5;
}

.footer-contact-list a:hover {
  color: var(--accent-red);
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.copyright {
  font-size: 13px;
  color: #B8B8B8;
}

.copyright strong {
  color: #fff;
}

.powered-by {
  font-size: 13px;
  color: #B8B8B8;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.heart-beat {
  color: var(--accent-red);
  animation: heartBeat 1.5s ease-in-out infinite;
}

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.2); }
  50% { transform: scale(1); }
  75% { transform: scale(1.2); }
}

.orve-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.15) 0%, rgba(230, 57, 70, 0.05) 100%);
  border: 1px solid rgba(230, 57, 70, 0.3);
  border-radius: var(--radius-full);
  color: #fff !important;
  transition: all var(--transition-normal);
}

.orve-link:hover {
  background: var(--gradient-red);
  border-color: var(--accent-red);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.orve-logo {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gradient-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.orve-dot {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.footer-bottom-links a {
  color: #B8B8B8;
  transition: color var(--transition-fast);
}

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

.footer-bottom-links span {
  color: #555;
}

/* =============================================
   FLOATING ACTIONS
   ============================================= */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  position: relative;
  cursor: pointer;
}

.whatsapp-float {
  background: #25D366;
  animation: float 3s ease-in-out infinite;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.4;
  animation: ripple 2s ease-out infinite;
  z-index: -1;
}

.scroll-top-btn {
  background: var(--gradient-red);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

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

.float-btn:hover {
  transform: scale(1.1) translateY(-2px);
}

.float-tooltip {
  position: absolute;
  right: 70px;
  background: var(--brand-black);
  color: #fff;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  pointer-events: none;
}

.float-btn:hover .float-tooltip {
  opacity: 1;
  visibility: visible;
  right: 66px;
}

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

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

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 80px;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero-slide.active .hero-image {
  transform: scale(1.15);
}

.hero-slide[data-slide="0"] .hero-image {
  background-color: #2D1B1F;
  background-image: linear-gradient(135deg, #1A1A1A 0%, #E63946 100%);
}

.hero-slide[data-slide="1"] .hero-image {
  background-color: #1B2D2D;
  background-image: linear-gradient(135deg, #0F2027 0%, #2C5364 100%);
}

.hero-slide[data-slide="2"] .hero-image {
  background-color: #2D2519;
  background-image: linear-gradient(135deg, #232526 0%, #C1121F 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,15,15,0.85) 0%, rgba(15,15,15,0.65) 50%, rgba(230,57,70,0.4) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-particles span {
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  background: rgba(230, 57, 70, 0.5);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(230, 57, 70, 0.8);
  animation: floatParticle 15s linear infinite;
}

.hero-particles span:nth-child(1) { left: 5%; animation-delay: 0s; animation-duration: 18s; }
.hero-particles span:nth-child(2) { left: 15%; animation-delay: 2s; animation-duration: 22s; }
.hero-particles span:nth-child(3) { left: 25%; animation-delay: 4s; width: 4px; height: 4px; }
.hero-particles span:nth-child(4) { left: 38%; animation-delay: 1s; animation-duration: 20s; }
.hero-particles span:nth-child(5) { left: 50%; animation-delay: 5s; width: 8px; height: 8px; }
.hero-particles span:nth-child(6) { left: 62%; animation-delay: 3s; animation-duration: 25s; }
.hero-particles span:nth-child(7) { left: 75%; animation-delay: 6s; width: 5px; height: 5px; }
.hero-particles span:nth-child(8) { left: 85%; animation-delay: 2.5s; animation-duration: 19s; }
.hero-particles span:nth-child(9) { left: 92%; animation-delay: 4.5s; width: 4px; height: 4px; }
.hero-particles span:nth-child(10) { left: 70%; animation-delay: 7s; }

@keyframes floatParticle {
  0% { transform: translateY(110vh) translateX(0) scale(0); opacity: 0; }
  10% { opacity: 1; transform: translateY(90vh) translateX(20px) scale(1); }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) translateX(-30px) scale(0); opacity: 0; }
}

.hero-container {
  position: relative;
  z-index: 5;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-red);
  border-radius: 50%;
  animation: pulseRed 2s ease-in-out infinite;
}

@keyframes pulseRed {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7); }
  50% { box-shadow: 0 0 0 12px rgba(230, 57, 70, 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-title-line {
  display: block;
}

.hero-title-accent {
  background: linear-gradient(135deg, #E63946 0%, #FF8C94 50%, #E63946 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 4s linear infinite;
  font-style: italic;
}

@keyframes gradientShift {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-desc {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gradient-red);
  color: #fff;
  box-shadow: var(--shadow-red);
}

.btn-primary::before {
  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, height 0.6s ease;
}

.btn-primary:hover::before {
  width: 400px;
  height: 400px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(230, 57, 70, 0.5);
}

.btn-primary i, .btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-primary:hover i {
  transform: translateX(5px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: #fff;
  color: var(--brand-black);
  border-color: #fff;
  transform: translateY(-3px);
}

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.trust-item i {
  width: 36px;
  height: 36px;
  background: rgba(230, 57, 70, 0.2);
  border: 1px solid rgba(230, 57, 70, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-red-light);
  font-size: 15px;
}

.hero-side {
  display: flex;
  justify-content: flex-end;
}

.hero-side-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.hero-side-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.15) 0%, transparent 50%);
  animation: rotateGlow 20s linear infinite;
}

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

.hero-side-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  position: relative;
}

.hero-side-logo {
  width: 50px;
  height: 50px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-side-header h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}

.hero-side-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-side-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
}

.hero-stat {
  padding: 16px;
  background: rgba(0, 0, 0, 0.2);
  border-left: 3px solid var(--accent-red);
  border-radius: var(--radius-sm);
  transition: transform var(--transition-normal);
}

.hero-stat:hover {
  transform: translateX(5px);
  background: rgba(230, 57, 70, 0.15);
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.hero-stat span:not(.hero-stat-num) {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-red);
}

.hero-stat small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-side-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-red-light);
  font-weight: 600;
  font-size: 14px;
  transition: gap var(--transition-fast);
  position: relative;
}

.hero-side-link:hover {
  gap: 14px;
  color: #fff;
}

.hero-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-control {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
  cursor: pointer;
}

.hero-control:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
  transform: scale(1.1);
}

.hero-dots {
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.hero-dot.active {
  width: 32px;
  border-radius: var(--radius-full);
  background: var(--accent-red);
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  right: 40px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  animation: bounceDown 2s ease-in-out infinite;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: #fff;
  border-radius: var(--radius-full);
  animation: scrollWheel 2s ease-in-out infinite;
}

.scroll-text {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
}

@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* STATS SECTION */
.stats-section {
  padding: 80px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-red);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: var(--bg-primary);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  display: flex;
  gap: 20px;
  align-items: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

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

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-red);
}

.stat-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background: var(--gradient-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: var(--shadow-red);
  transition: transform var(--transition-normal);
}

.stat-card:hover .stat-icon {
  transform: rotate(-8deg) scale(1.1);
}

.stat-info {
  flex: 1;
}

.stat-number {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.counter {
  font-size: 36px;
  background: var(--gradient-red);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-plus {
  font-size: 28px;
  color: var(--accent-red);
}

.stat-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.stat-info p {
  font-size: 13px;
  color: var(--text-muted);
}

/* SECTION COMMON */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-red);
  margin-bottom: 20px;
}

.section-tag.center {
  display: flex;
  justify-content: center;
}

.tag-line {
  width: 40px;
  height: 2px;
  background: var(--gradient-red);
  border-radius: var(--radius-full);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

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

.section-title span {
  display: inline;
  margin-right: 8px;
}

.text-accent {
  background: linear-gradient(135deg, #E63946 0%, #FF6B7A 50%, #E63946 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 4s linear infinite;
  font-style: italic;
}

.section-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 600px;
}

.section-desc.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

/* ABOUT SECTION */
.about-section {
  padding: 100px 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  min-height: 520px;
}

.about-image-main {
  grid-row: 1 / 3;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.about-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #2D1B1F 0%, #E63946 100%);
  min-height: 520px;
  transition: transform 0.6s ease;
}

.about-image-main:hover img {
  transform: scale(1.05);
}

.about-image-small {
  grid-column: 2;
  grid-row: 2;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--bg-primary);
  margin-top: -40px;
  margin-left: -40px;
  z-index: 3;
}

.about-image-small img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  background: linear-gradient(135deg, #1A1A1A 0%, #C1121F 100%);
  transition: transform 0.6s ease;
}

.about-image-small:hover img {
  transform: scale(1.05);
}

.about-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 5;
}

.about-image-badge i {
  width: 48px;
  height: 48px;
  background: var(--gradient-red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-red);
}

.about-image-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--brand-black);
  line-height: 1;
}

.about-image-badge span {
  font-size: 12px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.about-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.about-shape-1 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.15) 0%, transparent 70%);
  top: -60px;
  right: -60px;
}

.about-shape-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.1) 0%, transparent 70%);
  bottom: -50px;
  left: -50px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 36px 0;
}

.about-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}

.about-feature:hover {
  background: var(--bg-secondary);
  transform: translateX(8px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, rgba(230, 57, 70, 0.05) 100%);
  border: 1px solid rgba(230, 57, 70, 0.2);
  color: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all var(--transition-normal);
}

.about-feature:hover .feature-icon {
  background: var(--gradient-red);
  color: #fff;
  border-color: var(--accent-red);
  transform: rotate(-8deg);
  box-shadow: var(--shadow-red);
}

.about-feature h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.about-feature p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.about-cta {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 16px;
  transition: all var(--transition-fast);
}

.btn-text i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-secondary);
  color: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all var(--transition-normal);
}

.btn-text:hover {
  color: var(--accent-red);
}

.btn-text:hover i {
  background: var(--gradient-red);
  color: #fff;
  transform: rotate(360deg);
  box-shadow: var(--shadow-red);
}

/* PRODUCTS SECTION */
.products-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.products-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(230, 57, 70, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(230, 57, 70, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

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

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.product-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(230, 57, 70, 0.2);
  border-color: var(--accent-red);
}

.product-card.featured {
  transform: translateY(-20px);
  box-shadow: 0 20px 50px rgba(230, 57, 70, 0.15);
}

.product-card.featured:hover {
  transform: translateY(-30px);
}

.product-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #2D1B1F 0%, #E63946 100%);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-image img {
  transform: scale(1.15) rotate(2deg);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 15, 15, 0.85) 0%, rgba(15, 15, 15, 0.3) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-red);
  transform: translateY(20px);
}

.product-card:hover .product-btn {
  transform: translateY(0) rotate(-45deg);
}

.product-btn:hover {
  background: var(--brand-black);
  transform: scale(1.1) rotate(-45deg);
}

.product-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: var(--accent-red);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
}

.badge-featured {
  background: var(--gradient-red);
  color: #fff;
}

.badge-new {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #fff;
}

.product-info {
  padding: 28px 24px;
}

.product-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.product-info h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.2;
}

.product-info > p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-features span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-secondary);
  background: var(--bg-secondary);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
}

.product-features i {
  color: var(--accent-red);
  font-size: 10px;
}

/* Products CTA */
.products-cta {
  text-align: center;
  padding: 50px 40px;
  background: var(--gradient-mixed);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(230, 57, 70, 0.25);
}

.products-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  animation: rotateGlow 25s linear infinite;
}

.products-cta::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
  animation: rotateGlow 20s linear infinite reverse;
}

.products-cta > * {
  position: relative;
  z-index: 2;
}

.products-cta h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #fff;
  margin-bottom: 12px;
  font-weight: 700;
}

.products-cta p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
}

.products-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: #fff;
  color: var(--accent-red);
  border-color: #fff;
  transform: translateY(-3px);
}

/* WHOLESALE SECTION */
.wholesale-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1A1A1A 0%, #2D1B1F 50%, #3D1A1F 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.wholesale-bg {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 10% 30%, rgba(230, 57, 70, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 90% 70%, rgba(230, 57, 70, 0.15) 0%, transparent 40%);
  pointer-events: none;
}

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

.wholesale-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-title.light {
  color: #fff;
}

.section-desc.light {
  color: rgba(255, 255, 255, 0.85);
}

.wholesale-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 36px 0;
}

.benefit-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
}

.benefit-item:hover {
  background: rgba(230, 57, 70, 0.1);
  border-color: rgba(230, 57, 70, 0.3);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: var(--gradient-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-red);
}

.benefit-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.benefit-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.wholesale-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition-normal);
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--brand-black);
  border-color: #fff;
  transform: translateY(-3px);
}

/* Wholesale Visual */
.wholesale-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.wholesale-card-main {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  position: relative;
}

.wholesale-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wholesale-card-header img {
  width: 56px;
  height: 56px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.wholesale-card-header h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.wholesale-card-header span {
  font-size: 12px;
  color: var(--accent-red-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.wholesale-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.ws-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent-red);
  transition: all var(--transition-normal);
}

.ws-stat:hover {
  background: rgba(230, 57, 70, 0.15);
  transform: translateX(4px);
}

.ws-stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.ws-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.ws-stat span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wholesale-quote {
  position: relative;
  padding: 20px;
  background: rgba(230, 57, 70, 0.1);
  border-left: 3px solid var(--accent-red);
  border-radius: var(--radius-sm);
}

.wholesale-quote > i {
  position: absolute;
  top: 12px;
  left: 12px;
  color: rgba(230, 57, 70, 0.3);
  font-size: 28px;
}

.wholesale-quote p {
  font-size: 13px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
  padding-left: 24px;
  line-height: 1.6;
}

.quote-author {
  padding-left: 24px;
}

.quote-author strong {
  color: #fff;
  font-size: 13px;
  display: block;
}

.quote-author span {
  font-size: 11px;
  color: var(--accent-red-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  color: var(--brand-black);
  padding: 12px 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  animation: floatCard 4s ease-in-out infinite;
  z-index: 3;
}

.floating-card i {
  color: var(--accent-red);
  font-size: 16px;
}

.floating-card-1 {
  top: 30px;
  right: -20px;
  animation-delay: 0s;
}

.floating-card-2 {
  bottom: 40px;
  left: -30px;
  animation-delay: 1.5s;
}

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

/* GALLERY SECTION */
.gallery-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.gallery-filter {
  padding: 10px 24px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  transition: all var(--transition-normal);
  cursor: pointer;
}

.gallery-filter:hover {
  border-color: var(--accent-red);
  color: var(--accent-red);
}

.gallery-filter.active {
  background: var(--gradient-red);
  color: #fff;
  border-color: var(--accent-red);
  box-shadow: var(--shadow-red);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(135deg, #2D1B1F 0%, #E63946 100%);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item.hidden {
  display: none;
}

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 15, 15, 0.95) 0%, rgba(15, 15, 15, 0.3) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

.gallery-overlay-content {
  width: 100%;
  color: #fff;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay-content {
  transform: translateY(0);
}

.gallery-category {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-red-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.gallery-overlay-content h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.gallery-overlay-content > i {
  position: absolute;
  top: -50px;
  right: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: var(--shadow-red);
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay-content > i {
  opacity: 1;
  transform: rotate(360deg);
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  background: linear-gradient(135deg, #2D1B1F 0%, #E63946 100%);
}

.lightbox-caption {
  margin-top: 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-normal);
  z-index: 10;
}

.lightbox-close:hover {
  background: var(--accent-red);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-normal);
  z-index: 10;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-nav:hover {
  background: var(--accent-red);
}

/* TESTIMONIALS SECTION */
.testimonials-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.testimonials-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(230, 57, 70, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

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

.testimonials-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.testimonials-slider {
  position: relative;
  min-height: 380px;
  margin-bottom: 40px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  opacity: 0;
  visibility: hidden;
  transform: translateX(50px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.testimonial-quote-icon {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 80px;
  color: var(--accent-red);
  opacity: 0.1;
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: #FFB800;
  font-size: 18px;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 30px;
  font-weight: 400;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E63946 0%, #C1121F 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-display);
  flex-shrink: 0;
  box-shadow: var(--shadow-red);
}

.avatar-2 { background: linear-gradient(135deg, #1A1A1A 0%, #3D3D3D 100%); }
.avatar-3 { background: linear-gradient(135deg, #C1121F 0%, #E63946 100%); }
.avatar-4 { background: linear-gradient(135deg, #2D1B1F 0%, #C1121F 100%); }
.avatar-5 { background: linear-gradient(135deg, #1A1A1A 0%, #E63946 100%); }

.author-info strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.author-info span {
  font-size: 13px;
  color: var(--text-muted);
}

/* Testimonial Controls */
.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.test-control {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.test-control:hover {
  background: var(--gradient-red);
  color: #fff;
  border-color: var(--accent-red);
  box-shadow: var(--shadow-red);
  transform: scale(1.1);
}

.test-dots {
  display: flex;
  gap: 8px;
}

.test-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-color);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.test-dot.active {
  width: 32px;
  border-radius: var(--radius-full);
  background: var(--gradient-red);
}

.test-dot:hover:not(.active) {
  background: var(--text-muted);
}

/* Testimonials Stats */
.testimonials-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 30px;
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.ts-stat {
  text-align: center;
  padding: 16px;
  border-right: 1px solid var(--border-color);
}

.ts-stat:last-child {
  border-right: none;
}

.ts-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  background: var(--gradient-red);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}

.ts-stat-stars {
  display: flex;
  justify-content: center;
  gap: 2px;
  color: #FFB800;
  font-size: 13px;
  margin-bottom: 8px;
}

.ts-stat span {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* WHY CHOOSE US SECTION */
.why-section {
  padding: 100px 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  cursor: default;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--gradient-red);
  transition: width 0.6s ease;
}

.why-card:hover::before {
  width: 100%;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(230, 57, 70, 0.15);
  border-color: var(--accent-red);
  background: var(--bg-primary);
}

.why-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--border-color);
  line-height: 1;
  transition: all var(--transition-normal);
  -webkit-text-stroke: 1px var(--border-color);
  color: transparent;
}

.why-card:hover .why-number {
  background: var(--gradient-red);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0;
  transform: scale(1.1);
}

.why-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, rgba(230, 57, 70, 0.05) 100%);
  border: 1px solid rgba(230, 57, 70, 0.2);
  color: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 24px;
  transition: all var(--transition-normal);
}

.why-card:hover .why-icon {
  background: var(--gradient-red);
  color: #fff;
  border-color: var(--accent-red);
  transform: rotate(-10deg) scale(1.1);
  box-shadow: var(--shadow-red);
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

.why-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  position: relative;
  z-index: 2;
}

.why-shape {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  transition: transform var(--transition-slow);
}

.why-card:hover .why-shape {
  transform: scale(1.5);
}

/* CONTACT SECTION */
.contact-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.contact-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 0% 100%, rgba(230, 57, 70, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 100% 0%, rgba(230, 57, 70, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

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

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.contact-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-red);
}

.contact-card-primary {
  background: var(--gradient-mixed);
  color: #fff;
  border-color: transparent;
}

.contact-card-primary::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  animation: rotateGlow 20s linear infinite;
  pointer-events: none;
}

.contact-card-primary > * {
  position: relative;
  z-index: 2;
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background: var(--gradient-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow-red);
}

.contact-card-primary .contact-card-icon {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.contact-card-content {
  flex: 1;
}

.contact-card-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.contact-card-primary .contact-card-label {
  color: rgba(255, 255, 255, 0.9);
}

.contact-card-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.contact-card-primary .contact-card-content h4 {
  color: #fff;
}

.contact-card-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
}

.contact-card-primary .contact-card-content p {
  color: rgba(255, 255, 255, 0.9);
}

.contact-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-red);
  transition: gap var(--transition-fast);
}

.contact-card-primary .contact-card-link {
  color: #fff;
}

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

/* Contact Mini Cards */
.contact-card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-card-mini {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.contact-card-mini:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-red);
}

.contact-card-mini.whatsapp:hover {
  border-color: #25D366;
}

.mini-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gradient-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.contact-card-mini.whatsapp .mini-icon {
  background: #25D366;
}

.contact-card-mini span {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.contact-card-mini strong {
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 700;
}

/* Hours Card */
.contact-card-hours .hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 13px;
  border-bottom: 1px dashed var(--border-color);
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list span {
  color: var(--text-secondary);
}

.hours-list strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* Contact Socials */
.contact-socials {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.contact-socials > span {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-social-links {
  display: flex;
  gap: 10px;
}

.contact-social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-secondary);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.contact-social-links a:hover {
  background: var(--gradient-red);
  color: #fff;
  border-color: var(--accent-red);
  transform: translateY(-4px) rotate(10deg);
  box-shadow: var(--shadow-red);
}

/* Contact Form */
.contact-form-wrapper {
  position: sticky;
  top: 100px;
}

.form-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-red);
}

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

.form-header h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-header p {
  font-size: 14px;
  color: var(--text-secondary);
}

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

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

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

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.3px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper > i {
  position: absolute;
  left: 16px;
  color: var(--text-muted);
  font-size: 14px;
  pointer-events: none;
  transition: color var(--transition-fast);
  z-index: 2;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
  width: 100%;
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px 16px 14px 44px;
  font-size: 14px;
  color: var(--text-primary);
  font-family: inherit;
  transition: all var(--transition-fast);
  outline: none;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
  border-color: var(--accent-red);
  background: var(--bg-primary);
  box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.1);
}

.input-wrapper input:focus ~ i,
.input-wrapper select:focus ~ i {
  color: var(--accent-red);
}

.textarea-wrapper {
  align-items: flex-start;
}

.textarea-wrapper > i {
  top: 16px;
}

.input-wrapper textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

.input-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23888'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 20px;
  padding-right: 44px;
  cursor: pointer;
}

.form-submit {
  margin-top: 10px;
  justify-content: center;
  font-size: 16px;
  padding: 18px;
}

.form-submit i {
  transition: transform var(--transition-normal);
}

.form-submit:hover i {
  transform: translateX(8px) rotate(-15deg);
}

.form-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
  padding: 12px 16px;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent-red);
  line-height: 1.5;
}

.form-note i {
  color: var(--accent-red);
  margin-top: 2px;
  flex-shrink: 0;
}

/* MAP SECTION */
.map-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

.map-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.map-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.map-tab i {
  font-size: 16px;
}

.map-tab:hover {
  border-color: var(--accent-red);
  color: var(--accent-red);
}

.map-tab.active {
  background: var(--gradient-red);
  color: #fff;
  border-color: var(--accent-red);
  box-shadow: var(--shadow-red);
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  position: relative;
}

.map-content {
  display: none;
  grid-template-columns: 1.5fr 1fr;
  background: var(--bg-secondary);
}

.map-content.active {
  display: grid;
}

.map-iframe-wrapper {
  position: relative;
  background: var(--bg-tertiary);
  min-height: 450px;
}

.map-iframe-wrapper iframe {
  display: block;
  filter: var(--map-filter);
}

[data-theme="dark"] .map-iframe-wrapper iframe {
  filter: invert(0.9) hue-rotate(180deg) brightness(0.95) contrast(0.9);
}

.map-info-card {
  padding: 36px 32px;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.map-info-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 16px;
  margin-bottom: 8px;
  border-bottom: 2px solid var(--border-color);
}

.map-info-header i {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--gradient-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: var(--shadow-red);
}

.map-info-header h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.map-info-header span {
  font-size: 12px;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.map-info-card p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.map-info-card p i {
  width: 24px;
  color: var(--accent-red);
  margin-top: 2px;
  flex-shrink: 0;
}

.map-info-card p a {
  color: var(--text-primary);
  font-weight: 600;
}

.map-info-card p a:hover {
  color: var(--accent-red);
}

.map-info-card .btn {
  margin-top: 12px;
  justify-content: center;
}

/* CTA BANNER SECTION */
.cta-banner-section {
  padding: 60px 0;
  background: var(--bg-primary);
}

.cta-banner {
  max-width: var(--container-max);
  margin: 0 auto;
  border-radius: var(--radius-lg);
  padding: 70px 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1A1A1A 0%, #2D1B1F 40%, #C1121F 100%);
  box-shadow: 0 30px 80px rgba(230, 57, 70, 0.3);
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.cta-blob-1 {
  width: 400px;
  height: 400px;
  background: #E63946;
  top: -100px;
  left: -100px;
  animation: blobMove 12s ease-in-out infinite;
}

.cta-blob-2 {
  width: 350px;
  height: 350px;
  background: #FF8C94;
  bottom: -80px;
  right: -80px;
  animation: blobMove 15s ease-in-out infinite reverse;
}

.cta-blob-3 {
  width: 300px;
  height: 300px;
  background: #FFD700;
  top: 50%;
  left: 50%;
  opacity: 0.2;
  animation: blobMove 18s ease-in-out infinite;
}

@keyframes blobMove {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -40px) scale(1.1); }
  66% { transform: translate(-30px, 30px) scale(0.95); }
}

.cta-banner-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 30%);
  pointer-events: none;
}

.cta-banner .container {
  position: relative;
  z-index: 5;
}

.cta-banner-wrapper {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta-banner-content {
  color: #fff;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.cta-badge i {
  color: #FFD700;
  animation: fireFlicker 1.5s ease-in-out infinite;
}

@keyframes fireFlicker {
  0%, 100% { transform: scale(1) rotate(-5deg); opacity: 1; }
  50% { transform: scale(1.2) rotate(5deg); opacity: 0.85; }
}

.cta-banner-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.cta-banner-title span {
  display: block;
}

.cta-title-accent {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 4s linear infinite;
  font-style: italic;
}

.cta-banner-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
  max-width: 600px;
}

.cta-banner-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

.cta-feature i {
  color: #FFD700;
  font-size: 18px;
}

.cta-banner-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-white {
  background: #fff;
  color: var(--accent-red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 15px;
  transition: all var(--transition-normal);
  border: 2px solid #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-white:hover {
  background: var(--brand-black);
  color: #fff;
  border-color: var(--brand-black);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 15px;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--accent-red);
  border-color: #fff;
  transform: translateY(-4px);
}

.cta-trust-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.cta-trust-item span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* CTA Visual - Discount Circle */
.cta-banner-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.cta-discount-circle {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatCircle 4s ease-in-out infinite;
}

@keyframes floatCircle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

.cta-discount-inner {
  position: relative;
  z-index: 3;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 0 0 8px rgba(255, 255, 255, 0.15),
    0 0 0 16px rgba(255, 255, 255, 0.08),
    0 25px 60px rgba(0, 0, 0, 0.4);
  animation: pulseDiscount 2s ease-in-out infinite;
}

@keyframes pulseDiscount {
  0%, 100% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.15), 0 0 0 16px rgba(255, 255, 255, 0.08), 0 25px 60px rgba(0, 0, 0, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.2), 0 0 0 24px rgba(255, 255, 255, 0.1), 0 25px 60px rgba(0, 0, 0, 0.4); }
}

.cta-discount-percent {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 900;
  color: var(--brand-black);
  line-height: 1;
}

.cta-discount-label {
  font-size: 22px;
  font-weight: 800;
  color: var(--brand-black);
  letter-spacing: 4px;
  margin-top: 4px;
}

.cta-discount-text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: rotateText 15s linear infinite;
}

.cta-discount-text text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  fill: #fff;
  letter-spacing: 4px;
}

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

.cta-floating-icon {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: floatIcon 5s ease-in-out infinite;
}

.cta-icon-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.cta-icon-2 {
  top: 15%;
  right: 5%;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #fff;
  animation-delay: 1s;
}

.cta-icon-3 {
  bottom: 15%;
  left: 8%;
  animation-delay: 2s;
}

.cta-icon-4 {
  bottom: 10%;
  right: 8%;
  background: var(--gradient-red);
  color: #fff;
  animation-delay: 1.5s;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}
