/* ═══════════════════════════════════════════════════════════════ */
/* HOMEPAGE SECTIONS - PREMIUM DESIGN                             */
/* ═══════════════════════════════════════════════════════════════ */

/* === HERO SECTION === */
.hp-hero {
  position: relative;
  min-height: 920px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 180px 0 60px;
  overflow: hidden;
}
.hp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,15,30,0.92) 0%, rgba(10,15,30,0.7) 50%, rgba(10,15,30,0.4) 100%);
  z-index: 1;
}
.hp-hero .container { position: relative; z-index: 2; }

.hp-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.hp-tag-line {
  width: 24px; height: 3px;
  background: #e3000f;
  border-radius: 2px;
}
.hp-hero-tag span:last-child,
.hp-about-tag span:last-child {
  font-size: 18px;
  font-weight: 600;
  color: #e3000f;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hp-hero-title {
  font-size: 62px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -1px;
}
.hp-hero-desc {
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 750px;
  margin: 0 0 32px;
}

/* Hero Buttons */
.hp-hero-btns {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.hp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid transparent;
}
.hp-btn--primary {
  background: #e3000f;
  color: #fff;
  border-color: #e3000f;
}
.hp-btn--primary:hover {
  background: #c5000d;
  border-color: #c5000d;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(227,0,15,0.35);
}
.hp-btn--glass {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.hp-btn--glass:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
  transform: translateY(-2px);
}

/* Hero Features */
.hp-hero-features {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hp-hf-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.hp-hf-icon {
  flex: 0 0 40px;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
}
.hp-hf-item strong {
  display: block;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.hp-hf-item span {
  font-size: 18px;
  color: rgba(255,255,255,0.45);
}

/* Hero Badge */
.hp-hero-badge {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 180px; height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, #019ee3, #0180b8);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: hp-float 3s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(1,158,227,0.4);
}
.hp-hero-badge span {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@keyframes hp-float {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 10px)); }
}

/* === BRANDS SECTION === */
.hp-brands {
  padding: 80px 0 60px;
  background: #fff;
}
.hp-brands-header {
  text-align: center;
  margin-bottom: 48px;
}
.hp-brands-title {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 12px;
}
.hp-text-red { color: #e3000f; }
.hp-brands-subtitle {
  font-size: 15px;
  color: #64748b;
  margin: 0;
}

/* Brand Card */
.hp-brand-card {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 32px 24px 28px;
  text-align: center;
  transition: all 0.35s;
  height: 100%;
}
.hp-brand-card:hover {
  border-color: #e2e8f0;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-6px);
}
.hp-brand-img {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.hp-brand-img img {
  max-height: 100%;
  max-width: 90%;
  object-fit: contain;
  transition: transform 0.4s;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.1));
}
.hp-brand-card:hover .hp-brand-img img {
  transform: scale(1.05);
}
.hp-brand-name {
  font-size: 30px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 8px;
}
.hp-brand-desc {
  font-size: 17px;
  color: #94a3b8;
  margin: 0 0 20px;
  line-height: 1.5;
}
.hp-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  background: #f1f5f9;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
}
.hp-brand-link:hover {
  background: #0f172a;
  color: #fff;
}

/* See All */
.hp-brands-cta {
  text-align: center;
  margin-top: 32px;
}
.hp-see-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #475569;
  border: 1px solid #e2e8f0;
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s;
}
.hp-see-all:hover {
  border-color: #e3000f;
  color: #e3000f;
}

/* === COUNTER BAR === */
.hp-counter {
  padding: 0;
  margin-top: -1px;
  background: #fff;
}
.hp-counter-bar {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  border-radius: 16px;
  padding: 28px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.hp-counter-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hp-counter-icon {
  flex: 0 0 40px;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #019ee3;
}
.hp-counter-data strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}
.hp-counter-data span {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* === ABOUT SECTION === */
.hp-about {
  padding: 80px 0;
  background: #fff;
}
.hp-about-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.hp-about-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
}
.hp-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  background: rgba(227,0,15,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: 0 8px 32px rgba(227,0,15,0.4);
}
.hp-play-btn:hover {
  background: #e3000f;
  transform: translate(-50%, -50%) scale(1.1);
}

.hp-about-content { padding-left: 20px; }
.hp-about-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.hp-about-title {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 16px;
  line-height: 1.2;
}
.hp-about-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #64748b;
  margin: 0 0 28px;
}

/* About Feature Cards */
.hp-about-features {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.hp-af-card {
  flex: 1;
  min-width: 140px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  padding: 16px 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: all 0.3s;
}
.hp-af-card:hover {
  border-color: #e2e8f0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.hp-af-icon {
  flex: 0 0 36px;
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-af-icon--blue { background: #eff6ff; color: #019ee3; }
.hp-af-icon--red { background: #fef2f2; color: #e3000f; }
.hp-af-card strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2px;
}
.hp-af-card span {
  font-size: 11px;
  color: #94a3b8;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════════ */
/* MODERN FOOTER & SIDEBAR                                        */
/* ═══════════════════════════════════════════════════════════════ */

/* Footer Modernization */
.footer.style-2 .footer-wrapper.background-black {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a233a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}
.footer.style-2 .footer-widget-title {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 15px;
}
.footer.style-2 .footer-widget-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: #e3000f;
  border-radius: 2px;
}
.footer.style-2 .footer-widget-info p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}
.footer.style-2 .footer-contact ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.footer.style-2 .footer-contact .contact-icon {
  background: rgba(255, 255, 255, 0.05);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #019ee3;
  transition: all 0.3s;
}
.footer.style-2 .footer-contact ul li:hover .contact-icon {
  background: #e3000f;
  color: #fff;
  transform: translateY(-3px);
}
.footer.style-2 .footer-contact .contact-text a, 
.footer.style-2 .footer-contact .contact-text span {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
  text-decoration: none;
}
.footer.style-2 .footer-contact .contact-text a:hover {
  color: #019ee3;
}
.footer.style-2 .social-profile a {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
  border-radius: 8px;
}
.footer.style-2 .social-profile a:hover {
  background: #e3000f;
  border-color: #e3000f;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(227, 0, 15, 0.3);
}

/* Mobile Sidebar Modernization */
.menu-sidebar-area .menu-sidebar-wrapper {
  background: rgba(10, 15, 30, 0.95);
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.menu-sidebar-close-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.menu-sidebar-close-btn:hover {
  background: #e3000f;
  transform: rotate(90deg);
}
.mobile-nav-menu ul li a {
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-weight: 500;
  transition: all 0.3s;
}
.mobile-nav-menu ul li a:hover {
  color: #019ee3;
  padding-left: 10px;
}
.menu-sidebar-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}
.header-contact-info span a, .header-contact-info span {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}
.header-contact-info span a:hover {
  color: #019ee3;
}
.header-contact-info span i {
  color: #019ee3;
  margin-right: 10px;
}
.portal-button {
  background: linear-gradient(135deg, #e3000f, #a8000b);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  padding: 15px;
  transition: all 0.3s;
}
.portal-button:hover {
  box-shadow: 0 8px 20px rgba(227, 0, 15, 0.4);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════ */
/* RESPONSIVE                                                     */
/* ═══════════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .hp-hero { min-height: 540px; padding: 140px 0 50px; }
  .hp-hero-title { font-size: 38px; }
  .hp-hero-features { gap: 20px; }
  .hp-hero-badge { display: none; }
  .hp-counter-bar { flex-wrap: wrap; justify-content: center; padding: 24px 20px; }
  .hp-counter-item { min-width: 45%; }
  .hp-about-content { padding-left: 0; margin-top: 32px; }
  .hp-about-img img { height: 320px; }
}

@media (max-width: 767px) {
  .hp-hero { min-height: 480px; padding: 120px 0 40px; }
  .hp-hero-title { font-size: 30px; }
  .hp-hero-desc { font-size: 13px; }
  .hp-hero-features { flex-direction: column; gap: 16px; }
  .hp-hero-btns { flex-direction: column; }
  .hp-hero-btns .hp-btn { justify-content: center; }
  .hp-brands-title { font-size: 26px; }
  .hp-counter-bar { flex-direction: column; gap: 16px; }
  .hp-counter-item { min-width: 100%; }
  .hp-about-title { font-size: 24px; }
  .hp-about-features { flex-direction: column; }
  .hp-about-img img { height: 260px; }
}

@media (max-width: 480px) {
  .hp-hero-title { font-size: 26px; }
  .hp-brands-title { font-size: 22px; }
}
