/*
Theme Name: Fitnessrecall
Theme URI: http://fitnessrecall.in/
Description: A premium custom theme for Fitnessrecall, built with custom code (no Elementor).
Author: Satyabrata Dash
Author URI: https://satyabratadash-developer.netlify.app/
Version: 1.1.0
Text Domain: fitnessrecall
*/

:root {
  --main-red: #e53935;
  --dark-red: #e53935;
  --deep-navy: #1a365d;
  --light-navy: #1a365d;
  --premium-navy: #1a365d;
  --pure-white: #ffffff;
  --off-white: #ffffff;
  --light-gray: #ffffff;
  --red-gradient: #e53935;
  --navy-gradient: #1a365d;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container-width: 1200px;
}

/* Cardio Product Highlighting */
.cardio-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--main-red);
  color: #ffffff;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 4px;
  z-index: 5;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(229, 57, 53, 0.3);
}

.bh-product-card.is-cardio {
  border: 1px solid rgba(225, 66, 6, 0.2) !important;
  box-shadow: 0 10px 30px rgba(229, 57, 53, 0.05) !important;
}

.bh-product-card.is-cardio:hover {
  border-color: var(--main-red) !important;
  box-shadow: 0 15px 40px rgba(229, 57, 53, 0.15) !important;
}

/* Utility Classes */
.white-text {
  color: var(--pure-white) !important;
}
.light-text {
  color: rgba(255, 255, 255, 0.7) !important;
}
.navy-text {
  color: var(--deep-navy) !important;
}
.red-text {
  color: var(--main-red) !important;
}

/* SEO Helper Heading Style */
.h1-style,
.hero-content h1 {
  font-family: "Inter", sans-serif;
  font-size: 64px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--pure-white);
  letter-spacing: -1px;
}

.section-tag {
  display: block;
  width: max-content;
  margin-bottom: 20px;
  margin-left: 0;
  margin-right: auto;
  line-height: normal;
  background: var(--main-red);
  color: #ffffff;
  padding: 5px 15px;
  border-radius: 4px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}

/* Center tags when inside a centered section title */
.section-title .section-tag,
.text-center .section-tag {
  margin-left: auto !important;
  margin-right: auto !important;
}

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

body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  color: #1a365d;
  line-height: 1.6;
  background: #ffffff;
  overflow-x: hidden;
  width: 100%;
}

img,
video,
iframe,
canvas {
  max-width: 100%;
  height: auto;
}

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

ul {
  list-style: none;
}

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

/* Header & Navigation */
.site-header {
  background: var(--pure-white);
  color: var(--deep-navy);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 2000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.site-header .inner_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 70px; /* Force minimum height for better centering */
}

.site-branding {
  display: flex;
  align-items: center;
}

.site-branding img,
.site-branding a img {
  max-height: 55px; /* Slightly taller allowed for better visibility */
  width: auto;
  display: block;
  object-fit: contain;
}

.site-title a {
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--main-red);
}

.main-navigation ul {
  display: flex;
  gap: 30px;
}

.main-navigation a {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: var(--deep-navy);
  padding: 10px 0;
}

.main-navigation a:hover {
  color: var(--main-red);
}

/* Corporate Top Bar */
.site-top-bar {
  background: var(--deep-navy);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.top-contacts a,
.top-socials a {
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  margin-right: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.top-contacts a:last-child {
  margin-right: 0;
}

.top-contacts a:hover,
.top-socials a:hover {
  color: #ffffff;
}

.top-contacts a i,
.top-socials a i {
  color: var(--main-red);
  font-size: 16px;
  line-height: 1;
}

.top-socials {
  display: flex;
  gap: 20px;
}

.top-socials a {
  margin-right: 0;
}

@media (max-width: 991px) {
  .site-top-bar {
    padding: 8px 0;
  }
  .top-bar-content {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    text-align: center;
  }
  .top-contacts {
    display: flex;
    flex-direction: row;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .top-socials {
    display: flex;
    justify-content: center;
  }
}

/* Footer Newsletter Original Style Refined */
.newsletter-group {
  display: flex;
  align-items: center;
  background: var(--light-navy);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  margin-top: 25px;
  overflow: hidden;
}

.newsletter-group input {
  flex-grow: 1;
  background: transparent;
  border: none;
  color: #ffffff;
  padding: 12px 20px;
  font-size: 14px;
  outline: none;
}

.newsletter-submit-btn {
  background: var(--main-red);
  color: #ffffff;
  border: none;
  padding: 0 25px;
  height: 48px;
  font-size: 18px;
  cursor: pointer;
  line-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.newsletter-submit-btn:hover {
  background: #ffffff;
  color: #1a365d;
}

/* Mega Menu */
.main-navigation ul li {
  position: relative;
}

.main-navigation ul li.mega-menu {
  position: relative; /* Not static anymore to keep it contained or near the item */
}

.main-navigation ul li .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--pure-white);
  min-width: 250px;
  padding: 20px;
  border: 1px solid #1a365d;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}

.main-navigation ul li:hover > .sub-menu {
  display: block;
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.main-navigation ul li.mega-menu .sub-menu {
  width: 750px;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 30px;
  border-bottom: 3px solid var(--main-red);
}

.main-navigation ul li.mega-menu .sub-menu li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  font-weight: 800;
  color: var(--deep-navy);
}

.mega-menu-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #1a365d;
}

.mega-menu-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 15px;
}

.mobile-menu-toggle {
  display: none;
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
  z-index: 3000;
}

.mobile-menu-toggle .bar {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--deep-navy);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.mobile-menu-toggle .bar-1 {
  top: 0px;
}
.mobile-menu-toggle .bar-2 {
  top: 9px;
}
.mobile-menu-toggle .bar-3 {
  top: 18px;
}

/* Animation when active */
.menu-open .mobile-menu-toggle .bar-1 {
  top: 9px;
  transform: rotate(135deg);
}

.menu-open .mobile-menu-toggle .bar-2 {
  opacity: 0;
  left: -60px;
}

.menu-open .mobile-menu-toggle .bar-3 {
  top: 9px;
  transform: rotate(-135deg);
}

/* Mobile responsive menu handling */
@media screen and (max-width: 1024px) {
  .site-header {
    padding: 5px 0; /* Tighter padding on mobile */
  }

  .site-header .inner_wrapper {
    min-height: 60px; /* Slightly smaller on mobile */
  }

  .site-branding img,
  .site-branding a img {
    max-height: 45px; /* Scaled logo for mobile */
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .main-navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--pure-white);
    display: none;
    padding: 100px 20px 40px;
    z-index: 2500;
    overflow-y: auto;
  }

  .main-navigation.active {
    display: block;
    animation: slideIn 0.3s forwards;
  }

  @keyframes slideIn {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(0);
    }
  }

  .main-navigation ul {
    flex-direction: column;
    gap: 0;
    text-align: center;
  }

  .main-navigation ul li {
    border-bottom: 1px solid #1a365d;
    padding: 15px 0;
  }

  .main-navigation a {
    font-size: 20px;
    color: var(--deep-navy);
    display: block;
    width: 100%;
    font-weight: 800;
  }

  /* Sub-menus on mobile - Vertical static stack */
  .main-navigation ul li .sub-menu {
    position: static !important;
    transform: none !important;
    display: flex !important;
    flex-direction: column !important;
    visibility: visible !important;
    opacity: 1 !important;
    box-shadow: none !important;
    border: none !important;
    padding: 10px 0 0 !important;
    width: 100% !important;
    background: transparent !important;
    gap: 10px !important;
    align-items: center !important;
  }

  .main-navigation ul li .sub-menu li {
    padding: 5px 0 !important;
    border: none !important;
    width: 100% !important;
  }

  .main-navigation ul li .sub-menu li a {
    font-size: 15px !important; /* Smaller font size */
    font-weight: 600 !important;
    color: var(--main-red) !important;
    text-transform: uppercase;
  }

  /* Force Mega Menu sub-items to vertical on mobile */
  .main-navigation ul li.mega-menu .sub-menu {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    align-items: center !important;
    width: 100% !important;
    padding: 20px 0 !important;
  }

  .main-navigation ul li.mega-menu .sub-menu li {
    padding: 5px 0 !important;
    border: none !important;
    width: 100% !important;
  }

  .main-navigation ul li.mega-menu .sub-menu li a {
    font-size: 15px !important; /* Consistent smaller font size */
    font-weight: 700 !important;
    color: var(--main-red) !important;
  }

  .mega-menu-img {
    display: none !important;
  }
}
.hero-slider {
  height: 85vh;
  position: relative;
  overflow: hidden;
}

.hero-slider .swiper-slide {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 64px;
  font-weight: 900;
  margin-bottom: 25px;
  line-height: 1.1;
  color: var(--pure-white);
  text-transform: uppercase;
  letter-spacing: -1px;
}

.hero-content p {
  font-size: 24px;
  margin-bottom: 40px;
  color: #ffffff;
  font-weight: 500;
}

.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
}

@media (max-width: 768px) {
  .hero-slider {
    height: 85vh;
    min-height: 500px;
  }
  .hero-content h1,
  .h1-style {
    font-size: 32px;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
  }
  .hero-content p {
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.4;
  }
  .hero-btns {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  .hero-btns .btn-primary,
  .hero-btns .btn-secondary {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
    text-align: center;
  }
  .section-tag {
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 11px; /* Slightly smaller tag */
  }
  h2,
  .about-content h2,
  .section-title h2 {
    font-size: 30px !important;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  .about-content p,
  .section-title p {
    font-size: 16px !important;
    line-height: 1.6;
  }

  /* Reduction of large gaps between sections */
  section,
  .brand-landing-section,
  .brand-products-section,
  .informative-gym-section,
  .bh-tech-section {
    padding: 60px 0 !important;
  }

  section.hero-slider {
    padding: 0 !important;
  }
  .section-title {
    text-align: center !important;
    margin-bottom: 40px !important;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about-image img,
  .main-about-img img {
    margin: 0 auto;
    max-width: 100%;
  }

  .about-stats {
    flex-direction: column;
    gap: 30px !important;
    align-items: center;
  }

  .leader-flex {
    flex-direction: column !important;
    text-align: center;
  }

  .leader-img {
    max-width: 300px;
    margin: 0 auto 30px;
  }

  .process-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .viva-container {
    flex-direction: column !important;
    text-align: center;
    padding: 40px 20px !important;
    gap: 30px !important;
  }

  .viva-action .btn-primary {
    width: 100%;
    padding: 15px 30px !important;
  }

  .products-cta-box {
    padding: 40px 25px !important;
    border-radius: 20px !important;
  }

  .products-cta-box h3 {
    font-size: 28px !important;
  }

  .products-cta-box p {
    font-size: 16px !important;
  }

  .products-cta-box .btn-primary {
    width: 100%;
    padding: 20px !important;
    font-size: 16px !important;
    min-width: auto !important;
    white-space: normal !important;
    line-height: 1.4 !important;
    display: block !important;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 95vh;
  }
  .hero-content h1,
  .h1-style {
    font-size: 32px;
  }
  .hero-content p {
    font-size: 16px;
  }
  .hero-btns {
    flex-direction: column;
    gap: 15px;
  }
  .contact-info-area {
    padding: 10px !important;
  }
  .footer-copy p {
    text-align: center;
  }
}

/* Swiper Controls */
.swiper-button-next,
.swiper-button-prev {
  color: var(--main-red) !important;
}

.swiper-pagination-bullet {
  background: var(--pure-white) !important;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: var(--main-red) !important;
  opacity: 1;
}

.btn-primary {
  background: var(--red-gradient);
  color: var(--pure-white);
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  display: inline-block;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary:hover {
  background: var(--dark-red);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(229, 57, 53, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--pure-white);
  padding: 15px 40px;
  border: 2px solid var(--pure-white);
  border-radius: 5px;
  font-weight: 700;
  display: inline-block;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.btn-outline:hover {
  background: #ffffff;
  color: #1a365d;
  transform: translateY(-3px);
}

.products-section,
.about-preview-section,
.brands-section,
.services-section,
.why-choose-us-section,
.clients-section,
.testimonials-section,
.contact-cta-section,
.page-content {
  padding: 100px 0;
}

/* Contact CTA Section */
.contact-cta-section {
  background: var(--navy-gradient);
  position: relative;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
}

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

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

.lead-form input,
.lead-form textarea {
  width: 100%;
  background: var(--pure-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 25px;
  border-radius: 12px;
  color: var(--deep-navy);
  font-size: 16px;
  transition: var(--transition);
}

.lead-form textarea {
  height: 150px;
  resize: none;
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--main-red);
  box-shadow: 0 0 15px rgba(229, 57, 53, 0.2);
}

.contact-info-area {
  background: var(--light-navy);
  padding: 50px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.info-list {
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.info-item .icon {
  font-size: 24px;
  color: var(--main-red);
}

.info-item h4 {
  font-size: 18px;
  color: var(--pure-white);
  margin-bottom: 5px;
  text-transform: uppercase;
}

.info-item p {
  color: var(--light-gray);
  font-size: 16px;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.map-container iframe {
  height: 450px;
}
@media screen and (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media screen and (max-width: 768px) {
  .lead-form .form-row {
    grid-template-columns: 1fr;
  }
}

/* Trusted Clients Section */
.clients-section {
  background: var(--off-white);
  border-top: 1px solid var(--light-gray);
}

.clients-slider {
  padding: 40px 0;
}

.client-logo-item {
  height: 120px !important;
  width: 200px !important;
  margin: 10px 15px !important; /* Added horizontal and vertical margin */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: var(--pure-white);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  padding: 20px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.client-logo-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  filter: grayscale(1);
  opacity: 0.8;
  transition: var(--transition);
  display: block;
}

.client-logo-item:hover {
  border-color: var(--main-red);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(229, 57, 53, 0.15);
}

.client-logo-item:hover img {
  filter: grayscale(0); /* Reveal brand colors on hover */
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .client-logo-item {
    height: 80px;
  }
}

/* Why Choose Us Section */
.why-choose-us-section {
  background: var(--premium-navy);
}

.why-choose-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.why-card {
  background: var(--deep-navy);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  gap: 25px;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateX(10px);
  border-color: var(--main-red);
  background: rgba(229, 57, 53, 0.05);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: var(--light-navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--main-red);
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.why-card:hover .why-icon {
  background: var(--main-red);
  color: var(--pure-white);
  border-color: var(--main-red);
}

.why-text h3 {
  font-size: 18px;
  color: var(--pure-white);
  margin-bottom: 8px;
  text-transform: uppercase;
  font-weight: 800;
}

.why-text p {
  font-size: 14px;
  color: var(--light-gray);
  line-height: 1.5;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .why-card {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

/* Services Highlight Grid */
.services-section {
  background: var(--deep-navy);
}

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

.service-item {
  padding: 40px;
  background: var(--light-navy);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  text-align: center;
}

.service-item:hover {
  transform: translateY(-10px);
  border-color: var(--main-red);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: rgba(229, 57, 53, 0.1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  color: var(--main-red);
  transition: var(--transition);
}

.service-item:hover .service-icon {
  background: var(--main-red);
  color: var(--pure-white);
  transform: rotate(10deg);
}

.service-item h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--pure-white);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.service-item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--light-gray);
  font-weight: 300;
}

@media screen and (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Brands Highlight Grid */
.brands-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.brand-highlight-card {
  background: var(--light-navy);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  text-align: center;
}

.brand-highlight-card:hover {
  transform: translateY(-10px);
  border-color: var(--main-red);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.brand-card-image {
  height: 250px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.brand-card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.brand-highlight-card:hover .brand-card-image img {
  transform: scale(1.05);
}

.brand-card-body {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.brand-card-body h3 {
  font-size: 24px;
  color: var(--pure-white);
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 900;
}

.brand-card-body p {
  color: var(--light-gray);
  font-size: 15px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-brand-view {
  background: transparent;
  border: 2px solid var(--main-red);
  color: var(--main-red);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  display: inline-block;
  margin: 0 auto;
}

.btn-brand-view:hover {
  background: var(--main-red);
  color: var(--pure-white);
  box-shadow: 0 10px 20px rgba(229, 57, 53, 0.3);
}

/* About Preview */
.about-preview-section {
  background: var(--off-white);
}

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

.about-image {
  position: relative;
  border-left: 5px solid var(--main-red);
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 4px 20px 20px 4px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  display: block;
}

/* Consolidated into global section-tag style */

.about-content h2 {
  font-size: 48px;
  font-weight: 900;
  color: var(--deep-navy);
  margin-bottom: 30px;
  text-transform: uppercase;
}

.about-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 40px;
  font-weight: 300;
}

@media screen and (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}

/* Products Grid */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 900;
  color: var(--deep-navy);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Modifier for dark sections */
.services-section .section-title h2,
.testimonials-section .section-title h2,
.contact-cta-section .section-title h2,
.why-choose-us-section .section-title h2 {
  color: var(--pure-white);
}

.section-title p {
  color: #666;
  font-size: 18px;
  margin-top: 10px;
}

.services-section .section-title p,
.testimonials-section .section-title p,
.contact-cta-section .section-title p,
.why-choose-us-section .section-title p {
  color: rgba(255, 255, 255, 0.7);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  padding: 80px 0;
}

.product-card {
  background: var(--pure-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border: 1px solid var(--light-gray);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border-color: var(--main-red);
}

.product-image {
  height: 250px;
  background: var(--off-white);
  position: relative;
}

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

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

.product-info h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--deep-navy);
}

.product-excerpt {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
}

.product-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.btn-sm {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
}

.btn-know-more {
  background: var(--deep-navy);
  color: var(--pure-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-know-more:hover {
  border-color: var(--main-red);
}

.btn-download {
  background: var(--red-gradient);
  color: var(--pure-white);
}

.btn-download:hover {
  filter: brightness(1.2);
}

/* Modal Logic Styles (Preserved) */
.custom-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  justify-content: center;
  align-items: center;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.modal-container {
  position: relative;
  background: var(--light-navy);
  color: var(--pure-white);
  width: 90%;
  max-width: 800px;
  padding: 40px;
  border-radius: 24px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Testimonials Section */
.testimonials-section {
  background: var(--deep-navy);
}

.testimonials-slider {
  padding: 40px 0 60px;
}

.testimonial-card {
  background: var(--pure-white); /* Clean White Card */
  padding: 50px 40px;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(229, 57, 53, 0.2);
}

.testimonial-stars {
  color: var(--main-red);
  font-size: 20px;
  margin-bottom: 25px;
}

.testimonial-content {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 35px;
  font-style: italic;
  font-weight: 400;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid #eee;
  padding-top: 25px;
}

.author-img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--main-red);
}

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

.author-info h4 {
  font-size: 18px;
  color: var(--deep-navy);
  margin-bottom: 2px;
  font-weight: 800;
}

.author-info span {
  font-size: 13px;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimonials-slider .swiper-pagination-bullet {
  background: var(--pure-white) !important;
  opacity: 0.3;
}

.testimonials-slider .swiper-pagination-bullet-active {
  background: var(--main-red) !important;
  opacity: 1;
}

/* Single Product Page */
.product-single {
  padding: 100px 0;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.main-image {
  background: var(--light-navy);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.main-image img {
  width: 100%;
  height: auto;
  display: block;
}

.product-summary h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--pure-white);
  line-height: 1.2;
}

.product-description {
  font-size: 18px;
  line-height: 1.8;
  color: var(--light-gray);
  margin-bottom: 40px;
}

.product-single-actions {
  display: flex;
  gap: 20px;
}

.btn-secondary {
  padding: 15px 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-weight: 700;
  color: var(--pure-white);
  background: transparent;
  transition: var(--transition);
}

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

/* Footer */
.site-footer {
  background: var(--deep-navy);
  color: var(--pure-white);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 30px;
  color: var(--pure-white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-logo h2 {
  font-size: 32px;
  font-weight: 900;
  color: var(--pure-white);
  margin-bottom: 20px;
}

.footer-logo span {
  color: var(--main-red);
}

.about-col p {
  line-height: 1.8;
  color: var(--light-gray);
  margin-bottom: 30px;
  font-size: 15px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-btn {
  width: 45px;
  height: 45px;
  background: var(--light-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--pure-white);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-btn:hover {
  background: var(--main-red);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(229, 57, 53, 0.3);
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links-list a {
  color: var(--light-gray);
  transition: var(--transition);
  font-size: 15px;
  font-weight: 400;
}

.footer-links-list a:hover {
  color: var(--main-red);
  padding-left: 8px;
}

.newsletter-col p {
  font-size: 14px;
  color: var(--light-gray);
  margin-bottom: 25px;
  line-height: 1.6;
}

.footer-newsletter-form .newsletter-group {
  display: flex;
  background: var(--light-navy);
  padding: 5px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-newsletter-form input {
  flex-grow: 1;
  background: transparent;
  border: none;
  color: var(--pure-white);
  padding: 12px 25px;
  font-size: 14px;
}

.footer-newsletter-form input:focus {
  outline: none;
}

.newsletter-submit-btn {
  background: var(--main-red);
  color: var(--pure-white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-submit-btn:hover {
  background: var(--dark-red);
  transform: scale(1.05);
}

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

.footer-copy p {
  color: #666;
  font-size: 14px;
}

.footer-copy strong {
  color: var(--light-gray);
}

.footer-legal a {
  color: #666;
  font-size: 14px;
  margin-left: 20px;
  transition: var(--transition);
}

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

@media screen and (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media screen and (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }

  .footer-legal a {
    margin: 0 10px;
  }
}

/* About Us Template */
.about-hero-section {
  padding: 180px 0 100px;
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
}

.about-hero-content h1 {
  font-size: 64px;
  color: var(--pure-white);
  margin: 20px 0;
  font-weight: 900;
}

.about-hero-content p {
  font-size: 20px;
  color: var(--light-gray);
  max-width: 600px;
  margin: 0 auto;
}

.about-intro-section {
  padding: 120px 0;
  background: var(--pure-white);
}

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

.about-image-stack {
  position: relative;
}

.main-about-img {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.main-about-img img {
  width: 100%;
  display: block;
}

.about-accent-box {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 100%;
  height: 100%;
  border: 10px solid var(--main-red);
  border-radius: 20px;
  z-index: 1;
}

.about-text-content h2 {
  font-size: 44px;
  color: var(--deep-navy);
  margin: 15px 0 30px;
  line-height: 1.2;
}

.about-paragraphs p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
}

.about-stats {
  display: flex;
  gap: 50px;
  margin: 40px 0;
}

.stat-num {
  display: block;
  font-size: 40px;
  font-weight: 900;
  color: var(--main-red);
}

.stat-label {
  font-size: 14px;
  color: #777;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

.mission-vision-section {
  background: var(--off-white);
  padding: 120px 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mission-card,
.vision-card {
  background: var(--pure-white);
  padding: 60px;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.mission-card h3,
.vision-card h3 {
  font-size: 28px;
  color: var(--deep-navy);
  margin: 20px 0;
}

.mission-card p,
.vision-card p {
  color: #555;
  line-height: 1.7;
}

.m-icon,
.v-icon {
  font-size: 40px;
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-10px);
  border-color: var(--main-red);
}

@media (max-width: 1024px) {
  .about-grid,
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

/* About Team Section */
.about-team-section {
  padding: 120px 0 150px;
  background: var(--pure-white);
  text-align: center;
}

.about-team-section .section-title h2 {
  color: var(--deep-navy) !important;
}

/* Use global section-tag style */

.team-department-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.dept-card {
  background: #fcfcfc;
  padding: 60px 40px;
  border-radius: 24px;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.dept-card.featured {
  background: var(--deep-navy);
  border-color: var(--main-red);
  transform: scale(1.05);
  z-index: 2;
}

.dept-card.featured h3 {
  color: var(--pure-white);
}

.dept-card.featured p {
  color: var(--light-gray);
}

.dept-icon {
  font-size: 40px;
  color: var(--main-red);
  margin-bottom: 25px;
}

.dept-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--deep-navy);
  margin-bottom: 20px;
}

.dept-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 30px;
}

.dept-features {
  list-style: none;
  padding: 0;
  margin-top: auto;
}

.dept-features li {
  font-size: 14px;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}

.dept-card.featured .dept-features li {
  color: var(--pure-white);
}

.dept-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--main-red);
  font-weight: 900;
}

.dept-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1024px) {
  .team-department-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Products Parent Page - Horizontal Blocks */
.products-hero-section {
  padding: 180px 0 120px;
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
}

.brand-horizontal-block {
  padding: 120px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-horizontal-block.alt-bg {
  background: #080808;
}

.brand-block-flex {
  display: flex;
  align-items: center;
  gap: 80px;
}

.brand-block-flex.alternate {
  flex-direction: row-reverse;
}

.brand-content-side {
  flex: 1;
}

.brand-visual-side {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.bg-brand-text {
  font-size: 12vw;
  font-weight: 900;
  line-height: 1;
  margin: 0;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
  font-family: var(--primary-font);
  pointer-events: none;
}

.brand-horizontal-block:hover .bg-brand-text {
  -webkit-text-stroke: 1px var(--main-red);
  transform: scale(1.05);
  transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.products-cta-box {
  background: #000;
  padding: 120px 0;
  text-align: center;
}

@media (max-width: 1024px) {
  .brand-block-flex,
  .brand-block-flex.alternate {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .bg-brand-text {
    font-size: 15vw;
  }
}

/* Why Choose Us Enhanced (About Page) */
.about-why-section {
  padding: 120px 0;
  background: var(--off-white);
}

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

.why-item {
  background: var(--pure-white);
  padding: 50px 40px;
  border-radius: 30px;
  position: relative;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  z-index: 1;
}

.why-num {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 100px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.04);
  z-index: -1;
  line-height: 1;
  user-select: none;
}

.why-icon-box {
  width: 60px;
  height: 60px;
  background: rgba(229, 57, 53, 0.1);
  color: var(--main-red);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 30px;
  border: 1px solid rgba(229, 57, 53, 0.2);
  transition: var(--transition);
}

.why-item h3 {
  font-size: 24px;
  color: var(--deep-navy);
  margin-bottom: 20px;
  font-weight: 800;
}

.why-item p {
  color: #555;
  line-height: 1.8;
  font-size: 15px;
}

.why-item:hover {
  background: var(--pure-white);
  transform: translateY(-8px);
  border-color: var(--main-red);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.why-item:hover .why-icon-box {
  background: var(--main-red);
  color: var(--pure-white);
  transform: rotateY(180deg);
}

.why-item:hover .why-num {
  color: rgba(229, 57, 53, 0.06);
}
@media (max-width: 768px) {
  .about-why-section {
    padding: 80px 0;
  }
}

/* FAQ Accordion Styles */
.about-faq-section {
  padding: 120px 0;
  background: #f8f8f8;
}

.about-faq-section .section-title h2 {
  color: var(--deep-navy) !important;
}

/* Use global section-tag style */

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

.faq-item {
  background: var(--pure-white);
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
  transition: var(--transition);
}

.faq-header {
  padding: 25px 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-header h3 {
  font-size: 18px;
  color: var(--deep-navy);
  margin: 0;
  font-weight: 700;
  line-height: 1.4;
}

.faq-toggle-icon {
  font-size: 24px;
  color: var(--main-red);
  font-weight: 300;
  transition: var(--transition);
}

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

.faq-content {
  padding: 0 35px 35px;
}

.faq-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

/* Active State */
.faq-item.active {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--main-red);
}

.faq-item.active .faq-header {
  background: #fff;
}

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

@media (max-width: 768px) {
  .faq-header {
    padding: 20px;
  }
  .faq-content {
    padding: 0 20px 20px;
  }
}

/* ============================
   FORMS & MODALS DESIGN SYSTEM
   ============================ */

/* Contact Page Layout */
.contact-main-section {
  padding: 120px 0;
  background: #fff;
  color: #000;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
}

.contact-form-side h2,
.contact-details-side h2 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 25px;
  text-transform: uppercase;
  color: #000;
}

.contact-details-header p {
  color: #555;
  font-size: 17px;
  margin-bottom: 40px;
}

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

.info-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.info-icon {
  width: 65px;
  height: 65px;
  background: #111; /* Changed to premium black box */
  color: var(--main-red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.info-icon i {
  font-size: 30px;
  width: 30px;
  height: 30px;
}

.info-item:hover .info-icon {
  transform: scale(1.1);
}

.info-content h4 {
  font-size: 19px;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
  color: #000;
  letter-spacing: 0.5px;
}

.info-content p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.info-content a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.info-content a:hover {
  color: var(--main-red);
}

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

/* Global Input Styling */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  background: #f8f8f8;
  border: 1px solid #e2e2e2;
  padding: 18px 24px;
  border-radius: 12px;
  font-size: 16px;
  color: #000;
  font-family: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.02);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  border-color: var(--main-red);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(225, 66, 6, 0.08); /* Soft Red glow */
  outline: none;
}

/* Contact Form Specifics */
.contact-form-container .form-group {
  margin-bottom: 24px;
}

.btn-solid-large {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 22px 65px;
  font-size: 19px;
  font-weight: 800;
  text-transform: uppercase;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.4s ease;
  letter-spacing: 1px;
}

.btn-solid-large:hover {
  background: var(--main-red);
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(225, 66, 6, 0.25);
}

/* Brochure Modal Form */
#brochureModal .modal-container {
  padding: 60px;
  border-radius: 25px;
}

#brochureModal h3 {
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.brochure-form {
  background: transparent;
}

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

.brochure-form .form-row.full {
  grid-template-columns: 1fr;
}

.submit-brochure-btn {
  width: 100%;
  background: #000;
  color: #fff;
  padding: 20px;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-brochure-btn:hover {
  background: var(--main-red);
  box-shadow: 0 10px 20px rgba(225, 66, 6, 0.2);
}

#brochureSuccess h3 {
  color: #2f855a !important; /* Professional Success Green */
  margin-bottom: 10px;
}

/* Modal Overlay Polish */
.custom-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

.modal-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.modal-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--charcoal-black);
  width: 90%;
  max-width: 700px;
  padding: 40px;
  border-radius: 20px;
  z-index: 10001;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-close {
  position: absolute;
  top: 25px;
  right: 25px;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  transition: color 0.3s;
}

.modal-close:hover {
  color: var(--main-red);
}

@media (max-width: 768px) {
  .brochure-form .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  #brochureModal .modal-container {
    padding: 40px 25px;
  }
}

/* BH Dynamic Pictures Gallery (Pinterest Style) */
.bh-gallery-section {
  padding: 120px 0;
  background: #000;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bh-pictures-grid {
  column-count: 3;
  column-gap: 20px;
}

.bh-picture-item {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
  background: #111;
  break-inside: avoid; /* Essential for masonry */
}

.bh-picture-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bh-picture-overlay {
  position: absolute;
  inset: 0;
  background: rgba(225, 66, 6, 0.9); /* Main Red overlay */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
  cursor: pointer;
}

.bh-picture-overlay i {
  font-size: 32px;
  color: #fff;
  margin-bottom: 10px;
  transform: translateY(20px);
  transition: 0.4s ease;
}

.bh-picture-overlay span {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  transform: translateY(20px);
  transition: 0.5s ease;
}

.bh-picture-item:hover .bh-picture-overlay {
  opacity: 1;
}

.bh-picture-item:hover .bh-picture-overlay i,
.bh-picture-item:hover .bh-picture-overlay span {
  transform: translateY(0);
}

.bh-picture-item:hover img {
  transform: scale(1.08);
}

@media (max-width: 1024px) {
  .bh-pictures-grid {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .bh-pictures-grid {
    column-count: 1;
  }
}

/* BH Header Divider Fix */
.bh-section-header .bh-about-divider {
  margin: 0 auto 40px !important;
}

/* BH Final CTA Section */
.bh-cta-section {
  padding: 120px 0;
  background: var(--main-red);
  text-align: center;
  overflow: hidden;
}

.bh-cta-container h2 {
  font-size: 64px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.bh-cta-container p {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  line-height: 1.6;
}

.bh-cta-btns {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.bh-cta-btns .btn-solid {
  background: #000;
  color: #fff;
  border-color: #000;
  padding: 20px 50px;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
}

.bh-cta-btns .btn-solid:hover {
  background: #fff;
  color: var(--main-red) !important;
  border-color: #fff;
}

.bh-cta-btns .btn-outline {
  padding: 20px 50px;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: var(--transition);
}

.bh-cta-btns .btn-outline:hover {
  background: #fff;
  color: var(--main-red) !important;
}

@media (max-width: 768px) {
  .bh-cta-container h2 {
    font-size: 36px;
  }

  .bh-cta-btns {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .bh-cta-btns a {
    width: 100%;
    max-width: 320px;
  }
}

/* BH Why Choose Section */
.bh-why-section {
  padding: 120px 0;
  background: var(--deep-navy);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bh-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.bh-why-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bh-why-card:hover {
  background: #ffffff;
  border-color: var(--main-red);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.bh-why-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: rgba(26, 54, 93, 0.05);
  color: var(--main-red);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.bh-why-icon i {
  font-size: 32px;
}

.bh-why-card:hover .bh-why-icon {
  background: var(--main-red);
  color: #fff;
}

.bh-why-text h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--deep-navy);
}

.bh-why-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

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

@media (max-width: 768px) {
  .bh-why-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 20px;
  }
}

/* BH Installation Gallery Section */
.bh-gallery-section {
  padding: 120px 0;
  background: #000;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bh-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.bh-gallery-item {
  position: relative;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  background: #1a365d;
  display: block;
}

.bh-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bh-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(225, 66, 6, 0.85); /* Main Red overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
}

.bh-gallery-overlay i {
  font-size: 40px;
  color: #fff;
  transform: translateY(20px);
  transition: 0.4s ease;
}

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

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

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

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

@media (max-width: 600px) {
  .bh-gallery-grid {
    grid-template-columns: 1fr;
  }
  .bh-gallery-item {
    height: 250px;
  }
}

/* BH Product Categories Section */
.bh-categories-section {
  padding: 120px 0;
  background: #ffffff;
  color: #1a365d;
  border-bottom: 1px solid rgba(26, 54, 93, 0.1);
}

.bh-categories-section .bh-section-header h2 {
  color: #1a365d !important;
}

.bh-categories-section .bh-section-header p {
  color: #1a365d;
}

.bh-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.bh-category-card {
  background: #ffffff;
  padding: 50px 30px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(26, 54, 93, 0.1);
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(26, 54, 93, 0.05);
}

.bh-category-card:hover {
  background: #ffffff;
  border-color: var(--main-red);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(26, 54, 93, 0.12);
}

.bh-cat-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(225, 66, 6, 0.1);
  border-radius: 50%;
  padding: 20px;
  transition: var(--transition);
}

.bh-category-card:hover .bh-cat-icon {
  background: var(--main-red);
  transform: rotateY(180deg);
}

.bh-cat-icon img {
  max-width: 100%;
  height: auto;
}

.bh-category-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #1a365d;
}

.bh-category-card p {
  font-size: 15px;
  color: #1a365d;
  line-height: 1.6;
  margin-bottom: 25px;
}

.bh-cat-link {
  color: var(--main-red);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: var(--transition);
}

.bh-cat-link:hover {
  gap: 10px;
  color: #fff;
}

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

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

/* BH About Section */
.bh-about-section {
  padding: 120px 0;
  background: #000;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bh-about-grid {
  display: flex;
  align-items: center;
  gap: 80px;
}

.bh-about-text {
  flex: 1.2;
}

.bh-about-text h2 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 30px;
  color: #fff;
}

.bh-about-divider {
  width: 80px;
  height: 4px;
  background: var(--main-red);
  margin-bottom: 40px;
}

.bh-about-text p {
  font-size: 20px;
  line-height: 1.8;
  color: #aaa;
  font-weight: 300;
}

.bh-about-visual {
  flex: 0.8;
  background: #111;
  padding: 60px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.bh-about-visual img {
  max-width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

/* BH Featured Products Section */
.bh-products-section {
  padding: 120px 0;
  background: #000;
  color: #fff;
}

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

.bh-section-header h2 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  color: #fff;
}

.bh-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.bh-product-card {
  background: #111;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.bh-product-card:hover {
  transform: translateY(-10px);
  border-color: var(--main-red);
  box-shadow: 0 20px 40px rgba(229, 57, 53, 0.1);
}

.bh-product-image {
  height: 300px;
  position: relative;
  overflow: hidden;
  background: #000;
}

.bh-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.bh-product-card:hover .bh-product-image img {
  transform: scale(1.1);
}

.bh-product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
}

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

.bh-product-info {
  padding: 30px;
}

.bh-product-info h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #fff;
}

.bh-product-info p {
  font-size: 16px;
  color: #aaa;
  line-height: 1.6;
  margin: 0;
}

/* Pagination Styling */
.bh-pagination {
  margin-top: 80px;
  text-align: center;
}

.bh-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #111;
  color: #fff;
  border-radius: 50%;
  margin: 0 5px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.bh-pagination .page-numbers:hover,
.bh-pagination .page-numbers.current {
  background: var(--main-red);
  border-color: var(--main-red);
  color: #fff;
}

.bh-pagination .page-numbers.prev,
.bh-pagination .page-numbers.next {
  width: auto;
  padding: 0 25px;
  border-radius: 50px;
}

@media (max-width: 1024px) {
  .bh-hero-content h1 {
    font-size: 40px;
  }

  .hero-action-btns {
    flex-direction: column;
  }

  .hero-action-btns a {
    margin-left: 0 !important;
    width: 100%;
  }

  .bh-about-grid {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .bh-about-divider {
    margin: 0 auto 40px;
  }

  .bh-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .bh-products-grid {
    grid-template-columns: 1fr;
  }
}

/* BH Fitness Brand Page */
.bh-hero-section {
  padding: 220px 0 180px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bh-hero-content h1 {
  font-size: 72px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
}

.bh-hero-content p {
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #eee;
}

.hero-action-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.hero-action-btns .btn-outline {
  transition: var(--transition);
}

.hero-action-btns .btn-outline:hover {
  background: var(--pure-white);
  color: var(--deep-navy) !important;
}

@media (max-width: 768px) {
  .bh-hero-content h1 {
    font-size: 40px;
  }

  .hero-action-btns {
    flex-direction: column;
  }

  .hero-action-btns a {
    margin-left: 0 !important;
    width: 100%;
  }
}

/* BH Fitness Brand Page */
.bh-hero-section {
  padding: 220px 0 180px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bh-hero-content h1 {
  font-size: 72px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
}

.bh-hero-content p {
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #eee;
}

.hero-action-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.hero-action-btns .btn-outline {
  transition: var(--transition);
}

.hero-action-btns .btn-outline:hover {
  background: var(--pure-white);
  color: var(--deep-navy) !important;
}

/* BH About Section */
.bh-about-section {
  padding: 120px 0;
  background: var(--deep-navy);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bh-about-grid {
  display: flex;
  align-items: center;
  gap: 80px;
}

.bh-about-text {
  flex: 1.2;
}

.bh-about-text h2 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 30px;
  color: #fff;
}

.bh-about-divider {
  width: 80px;
  height: 4px;
  background: var(--main-red);
  margin-bottom: 40px;
}

.bh-about-text p {
  font-size: 20px;
  line-height: 1.8;
  color: #aaa;
  font-weight: 300;
}

.bh-about-visual {
  flex: 0.8;
  background: var(--light-navy);
  padding: 60px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.bh-about-visual img {
  max-width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

/* BH Featured Products Section */
.bh-products-section {
  padding: 120px 0;
  background: var(--premium-navy);
  color: #fff;
}

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

.bh-section-header h2 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  color: #fff;
}

.bh-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.bh-product-card {
  background: var(--deep-navy);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.bh-product-card:hover {
  transform: translateY(-10px);
  border-color: var(--main-red);
  box-shadow: 0 20px 40px rgba(229, 57, 53, 0.1);
}

.bh-product-image {
  height: 300px;
  position: relative;
  overflow: hidden;
  background: var(--light-navy);
}

.bh-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.bh-product-card:hover .bh-product-image img {
  transform: scale(1.1);
}

.bh-product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
}

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

.bh-product-info {
  padding: 30px;
}

.bh-product-info h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #fff;
}

.bh-product-info p {
  font-size: 16px;
  color: #aaa;
  line-height: 1.6;
  margin: 0;
}

/* Pagination Styling */
.bh-pagination {
  margin-top: 80px;
  text-align: center;
}

.bh-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--deep-navy);
  color: #fff;
  border-radius: 50%;
  margin: 0 5px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.bh-pagination .page-numbers:hover,
.bh-pagination .page-numbers.current {
  background: var(--main-red);
  border-color: var(--main-red);
  color: #fff;
}

.bh-pagination .page-numbers.prev,
.bh-pagination .page-numbers.next {
  width: auto;
  padding: 0 25px;
  border-radius: 50px;
}

@media (max-width: 1024px) {
  .bh-hero-content h1 {
    font-size: 40px;
  }

  .hero-action-btns {
    flex-direction: column;
  }

  .hero-action-btns a {
    margin-left: 0 !important;
    width: 100%;
  }

  .bh-about-grid {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .bh-about-divider {
    margin: 0 auto 40px;
  }

  .bh-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .bh-products-grid {
    grid-template-columns: 1fr;
  }
}

/* BH Fitness Brand Page */
.bh-hero-section {
  padding: 220px 0 180px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bh-hero-content h1 {
  font-size: 72px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
}

.bh-hero-content p {
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #eee;
}

.hero-action-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.hero-action-btns .btn-outline {
  transition: var(--transition);
}

.hero-action-btns .btn-outline:hover {
  background: var(--pure-white);
  color: var(--deep-navy) !important;
}

/* BH About Section */
.bh-about-section {
  padding: 120px 0;
  background: var(--deep-navy);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bh-about-grid {
  display: flex;
  align-items: center;
  gap: 80px;
}

.bh-about-text {
  flex: 1.2;
}

.bh-about-text h2 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 30px;
  color: #fff;
}

.bh-about-divider {
  width: 80px;
  height: 4px;
  background: var(--main-red);
  margin-bottom: 40px;
}

.bh-about-text p {
  font-size: 20px;
  line-height: 1.8;
  color: #aaa;
  font-weight: 300;
}

.bh-about-visual {
  flex: 0.8;
  background: var(--light-navy);
  padding: 60px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.bh-about-visual img {
  max-width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

@media (max-width: 1024px) {
  .bh-hero-content h1 {
    font-size: 40px;
  }

  .hero-action-btns {
    flex-direction: column;
  }

  .hero-action-btns a {
    margin-left: 0 !important;
    width: 100%;
  }

  .bh-about-grid {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .bh-about-divider {
    margin: 0 auto 40px;
  }
}

/* BH Fitness Brand Page */
.bh-hero-section {
  padding: 220px 0 180px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bh-hero-content h1 {
  font-size: 72px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
}

.bh-hero-content p {
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #eee;
}

.hero-action-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.hero-action-btns .btn-outline {
  transition: var(--transition);
}

.hero-action-btns .btn-outline:hover {
  background: var(--pure-white);
  color: var(--deep-navy) !important;
}

@media (max-width: 768px) {
  .bh-hero-content h1 {
    font-size: 40px;
  }

  .hero-action-btns {
    flex-direction: column;
  }

  .hero-action-btns a {
    margin-left: 0 !important;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .contact-info-area {
    padding: 30px;
    border-radius: 20px;
  }
  .contact-form-area .section-title h2 {
    font-size: 36px !important;
  }
  .map-container iframe {
    height: 300px;
  }
}

/* Fix button text wrap & contact buttons alignment globally */
.btn-primary,
.btn-secondary,
.btn-solid,
.btn-solid-large,
.btn-outline,
.btn-know-more,
.btn-brand-view {
  white-space: nowrap !important;
  text-align: center;
}

.contact-btns {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

/* ========================================================
   GLOBAL RESPONSIVE OVERRIDES - ALL PAGES
   ======================================================== */

/* --- Tablet (max-width: 1024px) --- */
@media (max-width: 1024px) {
  /* Home hero slider */
  .hero-slider {
    height: 70vh;
  }

  /* About hero */
  .about-hero-section {
    padding: 140px 0 80px !important;
  }
  .about-hero-content h1 {
    font-size: 48px !important;
  }

  /* Products hero */
  .products-hero-section {
    padding: 140px 0 80px !important;
  }
  .products-hero-section .hero-content-area h1 {
    font-size: 48px !important;
  }

  /* Brand landing hero (BH, Tunturi, California, Contact, Blog) */
  .bh-hero-section {
    padding: 140px 0 80px !important;
  }
  .bh-hero-content h1 {
    font-size: 48px !important;
  }
  .bh-hero-content p {
    font-size: 20px !important;
  }

  /* Products page brand blocks */
  .brand-content-side h2 {
    font-size: 36px !important;
  }

  /* Section titles across all pages */
  .section-title h2,
  .bh-section-header h2 {
    font-size: 36px !important;
  }

  /* Products CTA box */
  .products-cta-box {
    padding: 50px 30px !important;
  }
  .products-cta-box h3 {
    font-size: 28px !important;
  }

  /* BH CTA section */
  .bh-cta-container h2 {
    font-size: 42px !important;
  }

  /* Padding reduction for sections */
  .about-preview-section,
  .brands-highlight-section,
  .services-section,
  .testimonials-section,
  .home-blog-section,
  .contact-cta-section,
  .brand-horizontal-block,
  .bh-about-section,
  .bh-why-section,
  .bh-categories-section,
  .bh-products-section,
  .bh-gallery-section,
  .bh-pictures-section,
  .bh-cta-section,
  .about-intro-section,
  .mission-vision-section,
  .about-team-section,
  .about-why-section,
  .about-faq-section {
    padding: 80px 0 !important;
  }

  /* About page intro section */
  .about-intro-section .about-grid {
    gap: 60px !important;
  }
  .about-text-content h2 {
    font-size: 36px !important;
  }
  .about-accent-box {
    top: -20px !important;
    left: -20px !important;
  }
}

/* --- Mobile (max-width: 768px) --- */
@media (max-width: 768px) {
  /* Home hero slider */
  .hero-slider {
    height: 60vh;
  }
  .hero-content h1 {
    font-size: 36px !important;
    margin-bottom: 15px;
  }
  .hero-content p {
    font-size: 16px !important;
    margin-bottom: 25px;
  }
  .hero-btns {
    flex-direction: column;
    gap: 12px;
  }

  /* About hero */
  .about-hero-section {
    padding: 120px 0 60px !important;
  }
  .about-hero-content h1 {
    font-size: 36px !important;
  }
  .about-hero-content p {
    font-size: 16px !important;
  }

  /* Products hero */
  .products-hero-section {
    padding: 120px 0 60px !important;
  }
  .products-hero-section .hero-content-area h1 {
    font-size: 32px !important;
  }
  .products-hero-section .hero-content-area p {
    font-size: 16px !important;
  }

  /* Brand landing hero (BH, Tunturi, California, Contact, Blog) */
  .bh-hero-section {
    padding: 120px 0 60px !important;
  }
  .bh-hero-content h1 {
    font-size: 36px !important;
    line-height: 1.15 !important;
  }
  .bh-hero-content p {
    font-size: 16px !important;
    margin-bottom: 30px !important;
  }

  /* Hero action buttons (brand pages) */
  .hero-action-btns {
    flex-direction: column;
    gap: 15px;
  }
  .hero-action-btns a {
    margin-left: 0 !important;
    width: 100%;
    text-align: center;
  }

  /* Single blog hero */
  .single-blog-hero {
    padding: 100px 0 60px !important;
  }
  .single-blog-hero h1 {
    font-size: 32px !important;
  }

  /* Blog archive grid */
  .blog-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  /* Single blog form grid */
  #blog-inquiry-form {
    grid-template-columns: 1fr !important;
  }
  #blog-inquiry-form input[style*="grid-column: span 2"],
  #blog-inquiry-form textarea[style*="grid-column: span 2"] {
    grid-column: span 1 !important;
  }
  #blog-inquiry-form > div[style*="grid-column: span 2"] {
    grid-column: span 1 !important;
  }
  .blog-article-form {
    padding: 30px !important;
  }
  .blog-article-form h2 {
    font-size: 24px !important;
  }

  /* Blog post navigation */
  .post-nav {
    flex-direction: column !important;
    gap: 20px !important;
    text-align: center !important;
  }
  .post-nav .nav-next {
    text-align: center !important;
  }

  /* Products page brand blocks */
  .brand-content-side h2 {
    font-size: 30px !important;
  }
  .brand-content-side p {
    font-size: 16px !important;
  }

  /* Products CTA box */
  .products-cta-box {
    padding: 40px 20px !important;
    margin-top: 60px !important;
    border-radius: 20px !important;
  }
  .products-cta-box h3 {
    font-size: 24px !important;
  }
  .products-cta-box p {
    font-size: 16px !important;
  }

  /* Contact page hero */
  .contact-main-section {
    padding: 80px 0 !important;
  }
  .contact-form-side h2,
  .contact-details-side h2 {
    font-size: 30px !important;
  }

  /* Why contact us grid (inline grid-template) */
  .contact-why-grid {
    grid-template-columns: 1fr !important;
  }
  .contact-why-section {
    padding: 80px 0 !important;
  }
  .contact-why-section h2 {
    font-size: 30px !important;
  }

  /* Contact map */
  .contact-map-section .map-container {
    height: 350px !important;
  }

  /* BH CTA section */
  .bh-cta-container h2 {
    font-size: 30px !important;
  }
  .bh-cta-container p {
    font-size: 16px !important;
  }

  /* Section titles */
  .section-title h2,
  .bh-section-header h2 {
    font-size: 30px !important;
  }

  /* About page sections */
  .about-text-content h2 {
    font-size: 30px !important;
  }
  .mission-card,
  .vision-card {
    padding: 40px !important;
  }
  .mission-card h3,
  .vision-card h3 {
    font-size: 22px !important;
  }

  /* Contact info area mobile */
  .contact-info-area {
    padding: 30px !important;
    border-radius: 20px !important;
  }
  .contact-form-area .section-title h2 {
    font-size: 30px !important;
  }

  /* Map iframes */
  .map-container iframe {
    height: 300px !important;
  }

  /* Footer responsive */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .footer-bottom {
    flex-direction: column !important;
    gap: 15px !important;
    text-align: center !important;
  }

  /* All section padding */
  .about-preview-section,
  .brands-highlight-section,
  .services-section,
  .testimonials-section,
  .home-blog-section,
  .contact-cta-section,
  .brand-horizontal-block,
  .bh-about-section,
  .bh-why-section,
  .bh-categories-section,
  .bh-products-section,
  .bh-gallery-section,
  .bh-pictures-section,
  .bh-cta-section,
  .about-intro-section,
  .mission-vision-section,
  .about-team-section,
  .about-why-section,
  .about-faq-section {
    padding: 60px 0 !important;
  }

  /* Leads dashboard responsive */
  .leads-dashboard-area form {
    grid-template-columns: 1fr !important;
  }
}

/* --- Small mobile (max-width: 480px) --- */
@media (max-width: 480px) {
  /* Home hero */
  .hero-slider {
    height: 55vh;
  }
  .hero-content h1 {
    font-size: 28px !important;
  }

  /* Brand hero */
  .bh-hero-content h1 {
    font-size: 28px !important;
  }

  /* About hero */
  .about-hero-content h1 {
    font-size: 28px !important;
  }

  /* Products hero */
  .products-hero-section .hero-content-area h1 {
    font-size: 26px !important;
  }

  /* Single blog hero */
  .single-blog-hero h1 {
    font-size: 26px !important;
  }

  /* CTA */
  .bh-cta-container h2 {
    font-size: 24px !important;
  }

  /* Products CTA box */
  .products-cta-box h3 {
    font-size: 20px !important;
  }

  /* Contact buttons */
  .contact-btns {
    flex-direction: column;
  }
  .contact-btns a,
  .contact-btns button {
    width: 100%;
    text-align: center;
  }

  /* Stat items on about page */
  .about-stats {
    flex-direction: column !important;
    gap: 20px !important;
  }

  /* Info items */
  .contact-info-area {
    padding: 20px !important;
  }

  /* About page intro section - hide accent box on small screens */
  .about-accent-box {
    display: none !important;
  }
  .about-intro-section .about-grid {
    gap: 30px !important;
  }
  .about-text-content h2 {
    font-size: 26px !important;
  }
  .about-paragraphs p {
    font-size: 16px !important;
  }
  .stat-num {
    font-size: 32px !important;
  }
}

/* Featured Machine Spotlight Styling */
.featured-machine-section {
  background: #ffffff;
  padding: 120px 0;
  overflow: hidden;
}

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

.machine-content h2 {
  font-size: 56px;
  font-weight: 900;
  color: var(--deep-navy);
  line-height: 1.1;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.machine-content p {
  font-size: 18px;
  color: #444;
  margin-bottom: 40px;
  line-height: 1.8;
}

.machine-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 50px;
}

.m-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--deep-navy);
  font-weight: 600;
  font-size: 16px;
}

.m-feature span {
  color: var(--main-red);
  font-size: 20px;
}

.machine-image {
  position: relative;
}

.machine-image img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}

.machine-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(
    circle,
    rgba(229, 57, 53, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 1;
}

@media screen and (max-width: 1024px) {
  .featured-machine-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  .machine-features {
    align-items: center;
  }
  .machine-content h2 {
    font-size: 36px;
  }
}
/* --- Single Product Page Styling --- */
.product-single {
  background: var(
    --off-white
  ); /* Keep light base but with controlled contrast */
  padding: 80px 0;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
  background: var(--pure-white);
  padding: 50px;
  border-radius: 30px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
}

.product-gallery {
  position: sticky;
  top: 120px;
}

.main-image {
  background: var(--off-white);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.main-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.product-summary h1 {
  font-size: 48px;
  font-weight: 900;
  color: var(--deep-navy);
  margin-bottom: 25px;
  line-height: 1.1;
  text-transform: uppercase;
}

.product-description {
  color: #555;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.product-description ul {
  list-style: none;
  padding: 0;
}

.product-description li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: #444; /* Darker for accessibility */
}

.product-description li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--main-red);
  font-weight: 900;
}

.product-single-actions {
  display: flex;
  gap: 20px;
  margin-top: 50px;
}

.product-single-actions .btn-secondary {
  padding: 15px 30px;
  background: var(--light-navy);
  color: #fff;
  border-radius: 5px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
}

.product-single-actions .btn-secondary:hover {
  background: var(--deep-navy);
}

/* Fix for light background text contrast */
.product-single .brand-legacy-section {
  margin-top: 100px;
}

@media (max-width: 991px) {
  .product-layout {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 30px;
  }
  .product-summary h1 {
    font-size: 32px;
  }
  .product-gallery {
    position: static;
  }
}

/* --- Brand Page Pagination --- */
.bh-pagination {
  margin-top: 60px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.bh-pagination .page-numbers {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 700;
  transition: all 0.3s ease;
  text-decoration: none;
}

.bh-pagination .page-numbers:hover {
  background: var(--main-red);
  border-color: var(--main-red);
  transform: translateY(-3px);
  color: #fff;
}

.bh-pagination .page-numbers.current {
  background: var(--main-red);
  border-color: var(--main-red);
  color: #fff;
}

.bh-pagination .prev.page-numbers,
.bh-pagination .next.page-numbers {
  background: var(--light-navy);
}

@media (max-width: 768px) {
  .bh-pagination {
    flex-wrap: wrap;
  }
  .bh-pagination .page-numbers {
    padding: 8px 15px;
    font-size: 13px;
  }
}

/* --- Shatter Transition Effect --- */
.hero-slider .swiper-slide {
  position: relative;
  overflow: hidden;
}

.hero-action-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.shatter-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  pointer-events: none;
  background: transparent;
  display: none;
}

.shatter-tile {
  position: absolute;
  background-size: 400% 400%; /* Important since we use 4x4 grid */
  transition:
    transform 1.2s cubic-bezier(0.19, 1, 0.22, 1),
    opacity 0.8s ease-out;
  opacity: 1;
  backface-visibility: hidden;
  transform: translate(0, 0) scale(1) rotate(0);
}

.shatter-overlay.exploding .shatter-tile {
  opacity: 0;
  transform: translate(50px, -50px) scale(1.5) rotate(45deg);
  filter: blur(8px);
}

/* Ensure Slides Don't Flash During Shatter */
.hero-slider .swiper-slide-active {
  z-index: 5;
}
.hero-slider .swiper-slide-prev,
.hero-slider .swiper-slide-next {
  z-index: 1;
}

/* Products CTA Box */
.products-cta-box {
  background: linear-gradient(135deg, #111, #000);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 100px 80px;
  border-radius: 40px;
  text-align: center;
}

.products-cta-box h3 {
  color: #fff;
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 25px;
}

.products-cta-box p {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 50px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.products-cta-box .btn-primary {
  padding: 18px 50px;
  font-size: 18px;
}

/* Global Brand Landing Components */
.brand-hero-section {
  padding: 120px 0 80px;
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.brand-hero-content h1 {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 25px;
  text-transform: uppercase;
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.brand-hero-content p {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 50px;
  color: rgba(255, 255, 255, 0.9) !important;
}

@media (max-width: 768px) {
  .brand-hero-section {
    padding: 80px 0;
    min-height: 60vh;
  }
  .brand-hero-content h1 {
    font-size: 36px !important;
  }
  .brand-hero-content p {
    font-size: 16px !important;
  }
  .brand-hero-content .hero-action-btns {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .brand-hero-content .hero-action-btns a {
    margin: 0 !important;
    width: 100%;
  }
}

.brand-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: center;
  padding: 60px 0;
}

.bh-about-text h2 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.bh-about-divider {
  width: 80px;
  height: 4px;
  background: var(--main-red);
  margin-bottom: 35px;
  border-radius: 2px;
}

.bh-about-text p {
  color: #ffffff;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.brand-about-visual {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-about-visual img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 991px) {
  .brand-about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  .bh-about-text h2 {
    font-size: 32px;
  }
  .bh-about-divider {
    margin: 0 auto 35px;
  }
  .brand-about-visual {
    order: -1;
    padding: 20px;
  }
  .brand-about-visual img {
    max-width: 320px;
    margin: 0 auto;
  }
}

.heritage-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 80px;
  text-align: center;
}

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

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

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

.usp-card {
  padding: 45px 35px;
  background: var(--light-navy);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.usp-card:hover {
  transform: translateY(-5px);
  border-color: var(--main-red);
}

.usp-icon {
  font-size: 52px;
  margin-bottom: 30px;
  display: block;
  transition: transform 0.3s ease;
}

.usp-card:hover .usp-icon {
  transform: scale(1.15);
}

.usp-card h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 15px;
}

.usp-card p {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.7;
}

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

@media (max-width: 768px) {
  .usp-grid {
    grid-template-columns: 1fr;
  }
  .usp-card {
    padding: 35px 25px;
  }
  .usp-icon {
    font-size: 42px;
    margin-bottom: 20px;
  }
}

/* Heritage Stats Cards */
.stat-card {
  padding: 40px 20px;
  background: var(--light-navy);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
}

.stat-num {
  font-size: 52px;
  font-weight: 900;
  color: var(--main-red);
  margin-bottom: 5px;
  display: block;
  letter-spacing: -1px;
}

.stat-label {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}
