@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --brand-red: #ff1e27;
  --brand-red-hover: #d6141c;
  --brand-red-light: rgba(255, 30, 39, 0.15);
  --brand-black: #0c0c0e;
  --brand-dark: #121216;
  --brand-card: #181820;
  --brand-card-hover: #1e1e28;
  --brand-white: #ffffff;
  --text-primary: #f8f9fa;
  --text-secondary: #a0aec0;
  --text-muted: #718096;
  --font-main: 'Outfit', sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  background-color: var(--brand-black);
  color: var(--text-primary);
  overflow-x: hidden;
}

body {
  background-color: var(--brand-black);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(12, 12, 14, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 30, 39, 0.1);
  transition: var(--transition-smooth);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

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

.logo-img-footer {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--brand-red);
  color: var(--brand-red);
}

.btn-outline:hover {
  background-color: var(--brand-red);
  color: var(--brand-white);
  box-shadow: 0 0 15px rgba(255, 30, 39, 0.4);
}

.btn-primary {
  background-color: var(--brand-red);
  color: var(--brand-white);
  box-shadow: 0 4px 15px rgba(255, 30, 39, 0.3);
}

.btn-primary:hover {
  background-color: var(--brand-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 30, 39, 0.5);
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 12px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--brand-white);
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  position: relative;
  background: radial-gradient(circle at 10% 20%, rgba(255, 30, 39, 0.05) 0%, transparent 60%);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

@media (min-width: 992px) {
  .hero-container {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-badge {
  align-self: flex-start;
  background-color: var(--brand-red-light);
  color: var(--brand-red);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(255, 30, 39, 0.3);
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--brand-white);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 54px;
  }
}

.hero-title span {
  color: var(--brand-red);
}

.hero-description {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.hero-description span {
  color: var(--brand-red);
  font-weight: 700;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.stat-item {
  background-color: rgba(24, 24, 32, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition-smooth);
}

.stat-item:hover {
  border-color: rgba(255, 30, 39, 0.2);
  transform: translateY(-2px);
}

.stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--brand-red);
}

.stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 4px;
  font-weight: 500;
}

.hero-visual {
  position: relative;
  width: 100%;
}

/* Slider / Carousel */
.slider-container {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 30, 39, 0.15);
  border: 2px solid rgba(255, 30, 39, 0.2);
}

.slider-wrapper {
  position: relative;
  aspect-ratio: 16/10;
  width: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

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

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 12, 14, 0.9) 0%, rgba(12, 12, 14, 0.2) 60%, rgba(12, 12, 14, 0.4) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  z-index: 3;
}

.slide-title {
  color: var(--brand-white);
  font-size: 16px;
  font-weight: 600;
  background-color: rgba(255, 30, 39, 0.85);
  padding: 8px 16px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(12, 12, 14, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--brand-white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
}

.slider-btn:hover {
  background-color: var(--brand-red);
  border-color: var(--brand-red);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn-prev {
  left: 16px;
}

.slider-btn-next {
  right: 16px;
}

.slider-dots {
  position: absolute;
  bottom: 24px;
  right: 24px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition-smooth);
}

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

/* Sections General */
section.py-20 {
  padding: 100px 0;
}

.section-bg-dark {
  background-color: var(--brand-dark);
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--brand-white);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 40px;
  }
}

.section-title span {
  color: var(--brand-red);
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background-color: var(--brand-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 40px 32px;
  border-radius: 16px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--brand-red);
  opacity: 0;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-8px);
  background-color: var(--brand-card-hover);
  border-color: rgba(255, 30, 39, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 30, 39, 0.05);
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  background-color: var(--brand-red-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-red);
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  background-color: var(--brand-red);
  color: var(--brand-white);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--brand-white);
}

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

/* How It Works Section */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step-icon-wrapper {
  position: relative;
  margin-bottom: 8px;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-hover) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-white);
  box-shadow: 0 10px 20px rgba(255, 30, 39, 0.3);
  transition: var(--transition-smooth);
}

.step-card:hover .step-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 25px rgba(255, 30, 39, 0.5);
}

.step-number {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 28px;
  height: 28px;
  background-color: var(--brand-white);
  color: var(--brand-black);
  border-radius: 50%;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--brand-red);
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-white);
}

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

.installation-box {
  margin-top: 64px;
  background-color: var(--brand-dark);
  border: 1px solid rgba(255, 30, 39, 0.15);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

.installation-box h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--brand-white);
}

.installation-box p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.installation-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.install-badge {
  background-color: rgba(255, 30, 39, 0.08);
  color: var(--brand-red);
  border: 1px solid rgba(255, 30, 39, 0.2);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

/* Pricing Section */
.pricing-info-badge {
  align-self: center;
  margin-top: -16px;
  margin-bottom: 32px;
  background-color: var(--brand-red);
  color: var(--brand-white);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 30, 39, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 30, 39, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 30, 39, 0);
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.price-card {
  background-color: var(--brand-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.price-card.popular {
  border: 2px solid var(--brand-red);
  transform: scale(1.03);
  box-shadow: 0 15px 35px rgba(255, 30, 39, 0.1);
}

.price-card:hover {
  transform: translateY(-8px);
}

.price-card.popular:hover {
  transform: translateY(-8px) scale(1.03);
}

.popular-tag {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--brand-red);
  color: var(--brand-white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.price-header {
  text-align: center;
  margin-bottom: 24px;
}

.price-header h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--brand-white);
  margin-bottom: 8px;
}

.price-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
  height: 38px;
}

.price-val {
  margin: 16px 0;
}

.price-currency {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-red);
  vertical-align: super;
}

.price-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--brand-red);
}

.price-period {
  font-size: 14px;
  color: var(--text-muted);
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.price-features li {
  font-size: 14px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-features li svg {
  color: var(--brand-red);
  flex-shrink: 0;
}

.pricing-guarantees {
  margin-top: 64px;
  background-color: var(--brand-card);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.pricing-guarantees h3 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 32px;
  color: var(--brand-white);
}

.guarantees-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .guarantees-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.guarantee-item h4 {
  color: var(--brand-red);
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 700;
}

.guarantee-item p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial-card {
  background-color: var(--brand-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 32px;
  border-radius: 20px;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  border-color: rgba(255, 30, 39, 0.15);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.testimonial-user {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.user-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--brand-red);
  object-fit: cover;
}

.user-avatar-fallback {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--brand-red-light);
  color: var(--brand-white);
  border: 2px solid var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.user-details h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-white);
}

.user-details p {
  font-size: 12px;
  color: var(--text-secondary);
}

.verified-badge {
  background-color: rgba(255, 30, 39, 0.08);
  color: var(--brand-red);
  padding: 4px 8px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
}

.testimonial-rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.stars {
  display: flex;
  gap: 2px;
  color: var(--brand-red);
}

.stars svg {
  fill: currentColor;
}

.recovery-tag {
  font-size: 12px;
  color: var(--brand-red);
  font-weight: 600;
}

.testimonial-text {
  font-size: 14px;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
}

/* Certifications Section */
.certifications-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .certifications-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cert-card {
  background-color: var(--brand-card);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: var(--transition-smooth);
}

.cert-card:hover {
  border-color: rgba(255, 30, 39, 0.15);
  transform: translateY(-4px);
}

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

.cert-icon {
  color: var(--brand-red);
}

.cert-badge {
  background-color: var(--brand-red);
  color: var(--brand-white);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.cert-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-white);
}

.cert-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.compromise-box {
  margin-top: 56px;
  background-color: var(--brand-dark);
  border: 1px solid rgba(255, 30, 39, 0.1);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.compromise-box h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--brand-white);
}

.compromise-box p {
  font-size: 15px;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 16px;
}

.compromise-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-red);
  font-weight: 700;
  font-size: 14px;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--brand-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(255, 30, 39, 0.15);
}

.faq-header {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--brand-white);
}

.faq-header h3 {
  font-size: 16px;
  font-weight: 600;
  padding-right: 16px;
}

.faq-icon {
  color: var(--brand-red);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 24px;
}

.faq-item.active .faq-body {
  max-height: 200px;
  padding-bottom: 24px;
}

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

.faq-more-contacts {
  text-align: center;
  margin-top: 48px;
}

.faq-more-contacts p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 15px;
}

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

.btn-whatsapp {
  background-color: #25d366;
  color: var(--brand-white);
}

.btn-whatsapp:hover {
  background-color: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.contact-form-box {
  background-color: var(--brand-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 20px;
}

.contact-form-box h3 {
  font-size: 24px;
  margin-bottom: 24px;
  color: var(--brand-white);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  background-color: var(--brand-dark);
  border: 1px solid rgba(255, 30, 39, 0.15);
  padding: 14px 16px;
  border-radius: 8px;
  color: var(--brand-white);
  font-family: var(--font-main);
  font-size: 14px;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--brand-red);
  box-shadow: 0 0 10px rgba(255, 30, 39, 0.15);
}

.form-control::placeholder {
  color: var(--text-muted);
}

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

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-box {
  background-color: var(--brand-dark);
  border: 1px solid rgba(255, 255, 255, 0.02);
  padding: 32px;
  border-radius: 16px;
}

.contact-info-box h3 {
  font-size: 20px;
  margin-bottom: 24px;
  color: var(--brand-white);
}

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 44px;
  height: 44px;
  background-color: var(--brand-red-light);
  color: var(--brand-red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-white);
  margin-bottom: 4px;
}

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

.whatsapp-card {
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-hover) 100%);
  color: var(--brand-white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(255, 30, 39, 0.15);
}

.whatsapp-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.whatsapp-card p {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.btn-white {
  background-color: var(--brand-white);
  color: var(--brand-red);
}

.btn-white:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.hours-card {
  background-color: var(--brand-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 24px;
  border-radius: 16px;
}

.hours-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-white);
  margin-bottom: 16px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding-bottom: 8px;
}

.hours-row:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

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

.hours-value {
  color: var(--brand-white);
  font-weight: 600;
}

.hours-value.highlight {
  color: var(--brand-red);
}

/* Footer Section */
footer.main-footer {
  background-color: var(--brand-black);
  border-top: 1px solid rgba(255, 30, 39, 0.1);
  padding-top: 60px;
  padding-bottom: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 48px auto;
  padding: 0 24px;
}

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

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-white);
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 8px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: var(--brand-red);
}

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

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

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

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

.footer-links button {
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.footer-links button:hover {
  color: var(--brand-red);
  padding-left: 4px;
}

.footer-links li {
  font-size: 14px;
  color: var(--text-secondary);
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: var(--text-secondary);
}

.footer-contact-item svg {
  color: var(--brand-red);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

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

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.footer-legal-links a:hover {
  color: var(--brand-red);
}

/* Floating Contact Widget */
.floating-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-hover) 100%);
  color: var(--brand-white);
  border: none;
  box-shadow: 0 10px 25px rgba(255, 30, 39, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.floating-btn:hover {
  transform: scale(1.1) rotate(5deg);
}

.floating-popover {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 280px;
  background-color: var(--brand-card);
  border: 1px solid rgba(255, 30, 39, 0.2);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  display: none;
  flex-direction: column;
  gap: 16px;
  transform-origin: bottom right;
  animation: scaleUp 0.2s ease-out forwards;
}

.floating-popover.active {
  display: flex;
}

.popover-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 8px;
}

.popover-header h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-white);
}

.popover-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 18px;
}

.popover-close:hover {
  color: var(--brand-white);
}

.popover-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.popover-btn-whatsapp {
  background-color: #25d366;
  color: var(--brand-white);
}

.popover-btn-whatsapp:hover {
  background-color: #1ebe57;
}

.popover-btn-phone {
  background-color: var(--brand-red);
  color: var(--brand-white);
}

.popover-btn-phone:hover {
  background-color: var(--brand-red-hover);
}

.popover-title-sub {
  font-size: 13px;
  font-weight: 700;
}

.popover-desc-sub {
  font-size: 11px;
  opacity: 0.8;
}

.popover-form-link {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--brand-white);
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.popover-form-link:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.popover-footer-text {
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
}

/* Animations */
@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fade-in {
  animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Mobile Menu Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background-color: rgba(12, 12, 14, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 30, 39, 0.15);
  padding: 24px;
  display: none;
  flex-direction: column;
  gap: 20px;
  z-index: 999;
}

.mobile-nav-drawer.active {
  display: flex;
}

.mobile-nav-drawer .nav-links {
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-drawer .nav-links a {
  font-size: 18px;
  display: block;
}

.mobile-nav-drawer .header-actions {
  flex-direction: column;
  width: 100%;
}

.mobile-nav-drawer .header-actions .btn {
  width: 100%;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .header-actions {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
}
