/*:root {
  --red: #CC0000;
  --red-dark: #A30000;
  --ink: #1C1C1C;
  --mist: #F7F7F5;
  --line: #E2E2E0;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
}*/

/* ──────────────────────────────────────
   GLOBAL ACCENTS & UTILITIES
   ────────────────────────────────────── */

.red-text {
  color: var(--red) !important;
}

.red-accent {
  color: var(--red) !important;
  position: relative;
}

.red-accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(204, 0, 0, 0.1);
  z-index: -1;
}

.red-accent-light {
  color: var(--red);
  opacity: 0.9;
}

/* ──────────────────────────────────────
   PREMIUM BUTTONS
   ────────────────────────────────────── */

.btn-red {
  background: var(--red) !important;
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(204, 0, 0, 0.3);
}

/* DELETED: .btn-red-premium, .btn-outline-premium, and commented out .btn-steelam-cta */

/* ──────────────────────────────────────
   INTERACTIVE ELEMENTS
   ────────────────────────────────────── */

.category-link {
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.category-link:hover {
  gap: 12px;
  color: var(--red-dark);
}

.gallery-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.gallery-link:hover {
  color: var(--red);
  border-bottom-color: #fff;
}

.filter-btn {
  background: none;
  border: 1px solid var(--line);
  padding: 8px 24px;
  border-radius: 30px;
  font-weight: 600;
  color: #666;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NAVBAR
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.s-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  height: 72px;
  display: flex;
  align-items: stretch;
  /* The one structural accent — left red border block */
  border-left: 4px solid var(--red);
  border-bottom: 1px solid var(--line);
  /* Subtle shadow suggestion */
  box-shadow: 0 1px 28px rgba(0, 0, 0, 0.05);
  /* Entrance */
  animation: navDrop 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes navDrop {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.s-nav__inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* ── LOGO ──────────────────────── */

.s-nav__logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 100%;
  /* Stagger in */
  opacity: 0;
  animation: fadeUp 0.5s ease 0.15s forwards;
}

.s-nav__logo-img {
  max-height: 48px;
  /* Adjusted for 72px navbar height */
  width: auto;
  object-fit: contain;
  display: block;
}

/* â”€â”€ NAV LINKS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.s-nav__links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
  margin-left: auto;
  padding-top: 17px;
}

.s-nav__item {
  opacity: 0;
  animation: fadeUp 0.45s ease forwards;
}

.s-nav__item:nth-child(1) {
  animation-delay: 0.20s;
}

.s-nav__item:nth-child(2) {
  animation-delay: 0.27s;
}

.s-nav__item:nth-child(3) {
  animation-delay: 0.34s;
}

.s-nav__item:nth-child(4) {
  animation-delay: 0.41s;
}

.s-nav__item:nth-child(5) {
  animation-delay: 0.48s;
}

.s-nav__link {
  display: block;
  position: relative;
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  text-decoration: none;
  padding: 8px 18px;
  transition: color 0.2s ease;
}

/* Number counter â€” editorial flavour */
.s-nav__link::before {
  content: attr(data-num);
  position: absolute;
  top: -1px;
  left: 18px;
  font-size: 7px;
  font-weight: 700;
  color: var(--red);
  opacity: 0;
  transform: translateY(2px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  letter-spacing: 0;
  line-height: 1;
}

/* Underline: thin red line grows from left */
.s-nav__link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 18px;
  right: 18px;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.s-nav__link:hover {
  color: var(--ink);
}

.s-nav__link:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.s-nav__link:hover::after,
.s-nav__link.active::after {
  transform: scaleX(1);
}

.s-nav__link.active {
  color: var(--ink);
}

.s-nav__link.active::before {
  opacity: 1;
  transform: translateY(0);
}

/* â”€â”€ CONTACT CTA â€” last link â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.s-nav__item:last-child .s-nav__link {
  color: var(--red);
  padding-right: 0;
  letter-spacing: 2px;
}

.s-nav__item:last-child .s-nav__link::before {
  display: none;
}

.s-nav__item:last-child .s-nav__link::after {
  display: none;
}

/* Animated arrow that slides in on hover */
.s-nav__item:last-child .s-nav__link .arrow {
  display: inline-block;
  margin-left: 4px;
  transform: translateX(0);
  transition: transform 0.25s ease;
  opacity: 0.6;
}

.s-nav__item:last-child .s-nav__link:hover {
  color: var(--red-dark);
}

.s-nav__item:last-child .s-nav__link:hover .arrow {
  transform: translateX(5px);
  opacity: 1;
}

/* â”€â”€ MOBILE TOGGLE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.s-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-right: -8px;
  flex-shrink: 0;
}

.s-nav__toggle span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.s-nav__toggle span:nth-child(1) {
  width: 24px;
}

.s-nav__toggle span:nth-child(2) {
  width: 16px;
}

.s-nav__toggle span:nth-child(3) {
  width: 20px;
}

/* Open state */
.s-nav__toggle.open span:nth-child(1) {
  width: 24px;
  transform: translateY(6.5px) rotate(45deg);
  background: var(--red);
}

.s-nav__toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.s-nav__toggle.open span:nth-child(3) {
  width: 24px;
  transform: translateY(-6.5px) rotate(-45deg);
  background: var(--red);
}

/* KEYFRAMES */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}




.footer-section {
  position: relative;
  background: #0a0a0a;
  color: #ffffff;
  padding: 5rem 1.5rem 2rem;
  overflow: hidden;
}

/* Furniture Background Image with Overlay */
.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/p-2.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.08;
  z-index: 1;
}

/* Dark Gradient Overlay for better readability */
.footer-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(10, 10, 10, 0.95) 0%,
      rgba(10, 10, 10, 0.9) 100%);
  z-index: 2;
}

/* Ensure content stays above overlays */
.footer-section .container-fluid {
  position: relative;
  z-index: 10;
}

/* Logo */
.footer-logo {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  border-left: 4px solid #e63946;
  padding-left: 1rem;
}

.footer-logo-img {
  max-height: 50px;
  width: auto;
  object-fit: contain;
}

/* Footer Text */
.footer-text {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 300px;
}

/* Footer Titles */
.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #e63946;
}

/* ──────────────────────────────────────
   SERVICE HIGHLIGHTS SECTION
   ────────────────────────────────────── */

.service-highlights-section {
  padding: 50px 0;
  background: #fcfcfc;
}

.highlights-bar {
  background: #ffffff;
  padding: 30px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #eee;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 20px;
  flex: 1;
  min-width: 240px;
}

.highlight-icon-wrap {
  width: 54px;
  height: 54px;
  background: rgba(204, 0, 0, 0.07);
  color: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.highlight-item:hover .highlight-icon-wrap {
  transform: scale(1.1);
  background: var(--red);
  color: #fff;
}

.highlight-icon-wrap svg {
  width: 28px;
  height: 28px;
}

.highlight-text h4 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.highlight-text p {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: #777;
  margin: 0;
  font-weight: 500;
}

/* Vertical separator for desktop */
@media (min-width: 992px) {
  .highlight-item:not(:last-child) {
    border-right: 1px solid #eee;
  }
}

@media (max-width: 1199px) {
  .highlight-item {
    min-width: calc(50% - 20px);
    border-right: none !important;
  }
}

@media (max-width: 767px) {
  .highlight-item {
    min-width: 100%;
    padding: 20px 10px;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .service-highlights-section {
    padding: 40px 0;
  }
  .highlights-bar {
    padding: 20px;
  }
  .highlight-icon-wrap svg {
    width: 28px;
    height: 28px;
  }
  .highlight-text h4 {
    font-size: 1.15rem;
  }
}


/* ──────────────────────────────────────
   TOP CATEGORIES SECTION
   ────────────────────────────────────── */

.top-categories-section {
  padding: 80px 0;
  background: #fff;
}

@media (max-width: 991px) {
  .top-categories-section {
    display: none;
  }
}

.top-cat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.top-cat-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
  position: relative;
  padding-bottom: 10px;
}

.top-cat-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
}

.top-cat-view-more {
  color: #666;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.top-cat-view-more:hover {
  color: var(--red);
}

.top-cat-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.top-cat-item {
  flex: 0 0 180px;
  text-align: center;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.top-cat-item:hover {
  transform: translateY(-10px);
}

.top-cat-icon-wrap {
  width: 140px;
  height: 140px;
  background: #fff;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.top-cat-icon-wrap::before {
  content: '';
  position: absolute;
  width: 110px;
  height: 110px;
  background: rgba(204, 0, 0, 0.08);
  border-radius: 50%;
  z-index: 1;
  transition: all 0.3s ease;
}

.top-cat-item:hover .top-cat-icon-wrap::before {
  transform: scale(1.1);
  background: var(--red);
}

.top-cat-item:hover .top-cat-icon-wrap i {
  color: #fff;
}

.top-cat-icon-wrap i {
  font-size: 45px;
  color: #1a1a1a;
  position: relative;
  z-index: 2;
}

.top-cat-name {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 5px;
}

.top-cat-count {
  display: block;
  font-size: 0.9rem;
  color: #888;
  font-weight: 500;
}

@media (max-width: 1199px) {
  .top-cat-item {
    flex: 0 0 calc(33.333% - 30px);
  }
}

@media (max-width: 767px) {
  .top-cat-item {
    flex: 0 0 calc(50% - 30px);
  }
  .top-cat-icon-wrap {
    width: 120px;
    height: 120px;
  }
  .top-cat-icon-wrap::before {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 480px) {
  .top-cat-item {
    flex: 0 0 100%;
  }
  .top-cat-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #e63946;
  transform: translateX(5px);
}

/* Contact Info */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-contact a:hover {
  color: #e63946;
}

/* Bottom Bar */
.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin: 0;
}

/* ══════════════════════════════════════
   PREMIUM HERO SLIDER (SPLIT-LAYOUT)
   - Used in products.php
   ══════════════════════════════════════ */

.hero-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--ink);
}

.hero-main-slider {
  height: 90vh;
  min-height: 600px;
}

.hero-main-slider .carousel-inner,
.hero-main-slider .carousel-item {
  height: 100%;
}

.hero-slide-container {
  display: block;
  height: 100%;
  position: relative;
}

/* Background image - now spans full width */
.hero-image-side {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  transition: transform 10s ease-out;
}

/* Editorial Overlay - ensures text readability on left side */
.hero-overlay-editorial {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(247, 247, 245, 0.7) 0%,
      rgba(247, 247, 245, 0.3) 35%,
      rgba(247, 247, 245, 0) 70%);
  z-index: 2;
  pointer-events: none;
}

/* Text Content - now overlays the image side */
.hero-text-side {
  width: 50%;
  padding: 0 10% 0 12%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
  /* Changed from var(--mist) */
  height: 100%;
  position: relative;
}

/* Ken Burns Effect */
.carousel-item.active .hero-slide-bg {
  transform: scale(1.15);
}

.hero-content-box {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1) 0.3s;
}

.carousel-item.active .hero-content-box {
  opacity: 1;
  transform: translateY(0);
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--red);
  margin-bottom: 25px;
  display: block;
  opacity: 1;
}

.hero-main-heading {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  /* Slightly larger */
  font-weight: 800;
  line-height: 1;
  /* Tighter leading */
  color: var(--ink);
  margin-bottom: 25px;
}

.hero-main-heading span {
  display: block;
  color: var(--red);
}

.hero-description {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 45px;
  max-width: 90%;
  font-weight: 500;
}

.hero-cta-group {
  display: flex;
  gap: 20px;
}

/* Rounded CTA Buttons */
.btn-premium-solid {
  background: var(--red);
  color: #fff !important;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  box-shadow: 0 10px 20px rgba(204, 0, 0, 0.2);
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-premium-solid:hover {
  background: var(--red-dark);
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(204, 0, 0, 0.3);
}

.btn-premium-outline {
  background: transparent;
  color: var(--ink) !important;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--ink);
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-premium-outline:hover {
  background: var(--ink);
  color: #fff !important;
  transform: scale(1.05);
}

/* Slider Pagination Dots (Premium Look) */
.hero-main-slider .carousel-indicators {
  bottom: 50px;
  left: 12%;
  margin: 0;
  justify-content: flex-start;
  z-index: 15;
}

.hero-main-slider .carousel-indicators [data-bs-target] {
  width: 30px;
  height: 4px;
  border-radius: 2px;
  background-color: var(--line);
  border: none;
  opacity: 0.5;
  margin: 0 8px 0 0;
  transition: all 0.3s ease;
}

.hero-main-slider .carousel-indicators .active {
  background-color: var(--red);
  width: 65px;
  opacity: 1;
}

/* Navigation Arrows - High Visibility Glow */
.hero-arrow {
  width: 60px;
  height: 60px;
  background: #fff;
  color: var(--ink);
  /* Dark icons for contrast */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15), 0 0 10px rgba(255, 255, 255, 0.8);
  /* Glow effect */
  opacity: 1;
  /* Always fully visible */
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
}

.hero-arrow:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 30px rgba(204, 0, 0, 0.4);
  /* Red glow on hover */
}

.hero-arrow-prev {
  left: 30px;
}

.hero-arrow-next {
  right: 30px;
}

.hero-arrow-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

/* Mobile Responsive Adjustments */
@media (max-width: 991px) {
  .hero-slide-container {
    height: 100%;
  }

  .hero-image-side {
    height: 50vh;
    position: relative;
  }

  .hero-overlay-editorial {
    background: linear-gradient(to top,
        rgba(247, 247, 245, 1) 0%,
        rgba(247, 247, 245, 0.5) 50%,
        rgba(247, 247, 245, 0) 100%);
  }

  .hero-text-side {
    width: 100%;
    height: auto;
    padding: 60px 30px 100px;
    text-align: center;
    align-items: center;
    background: var(--mist);
  }

  .hero-description {
    max-width: 100%;
  }

  .hero-main-slider .carousel-indicators {
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;
  }

  .hero-arrow {
    display: none;
  }
}

/* ══════════════════════════════════════
   ORIGINAL SIMPLE HERO SLIDER
   - Used in index.php (Homepage)
   ══════════════════════════════════════ */

.simple-hero-slider {
  height: 85vh;
  height: 80vh;
  min-height: 500px;
}

.simple-hero-slider .carousel-item {
  height: 85vh;
  height: 80vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.simple-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.simple-hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 15%;
  color: #fff;
}

.simple-hero-tag {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #fff;
  margin-bottom: 20px;
  display: block;
  opacity: 0.9;
}

.simple-hero-title {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}

.simple-hero-title span {
  color: var(--red);
}

.simple-hero-lead {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 700px;
}

/* Simple Slider Indicators (Dots) */
.simple-hero-slider .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 6px;
  background-color: #fff;
  opacity: 0.5;
  border: 1px solid rgba(0,0,0,0.1);
}

.simple-hero-slider .carousel-indicators .active {
  background-color: var(--red);
  opacity: 1;
  transform: scale(1.2);
}

/* Simple Slider Controls */
.simple-hero-slider .carousel-control-prev,
.simple-hero-slider .carousel-control-next {
  width: 5%;
  z-index: 15;
}

.simple-control-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.simple-hero-slider .carousel-control-prev:hover .simple-control-icon,
.simple-hero-slider .carousel-control-next:hover .simple-control-icon {
  background: var(--red);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .simple-hero-content {
    padding: 0 5%;
  }
  .simple-hero-title {
    font-size: 2.2rem;
  }
  .simple-hero-lead {
    font-size: 1rem;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   OUR BRANCHES PAGE STYLES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: var(--line);
  text-transform: uppercase;
  letter-spacing: 1px;
}



.carousel-indicators [data-bs-target] {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 2px solid #333333;
  opacity: 1;
  margin: 0 5px;
  transition: all 0.3s;
  position: relative;
}

.carousel-indicators [data-bs-target]::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 1px solid rgba(230, 57, 70, 0.5);
  opacity: 0;
  transition: opacity 0.3s;
}

.carousel-indicators [data-bs-target]:hover::after {
  opacity: 1;
}

.carousel-indicators .active {
  background-color: #e63946 !important;
  border-color: #e63946;
  transform: scale(1.1);
}

/* Carousel controls now visible by default */

/* ===== ABOUT SECTION - ENHANCED WITH MORE GAP & HEIGHT ===== */
.about-section {
  position: relative;
  background-color: #ffffff;
  color: #1e1e1e;
  padding: 7rem 2rem !important;
  /* Increased from 4rem to 7rem */
  overflow: hidden;
}

/* Subtle background pattern */
.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(230, 57, 70, 0.02) 100%);
  pointer-events: none;
}

/* Decorative red accent lines */
.about-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30%;
  height: 2px;
  background: linear-gradient(90deg, #e63946, transparent);
}

/* Container spacing */
.about-section .container,
.about-section .container-fluid {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Increased row gap */
.about-section .row {
  --bs-gutter-x: 5rem !important;
  /* Increased from default */
  margin-bottom: 0;
}

/* Left content enhancements */
.about-content {
  padding-right: 3rem !important;
  /* Extra right padding for more gap */
}

.section-tag {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e63946;
  border-bottom: 3px solid #e63946;
  padding-bottom: 0.6rem;
  /* Slightly increased */
  margin-bottom: 2rem;
  /* Increased from 1.5rem */
  position: relative;
}

/* Animated tag line */
.section-tag::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 30px;
  height: 3px;
  background: #1e1e1e;
  animation: tagPulse 3s infinite;
}

@keyframes tagPulse {

  0%,
  100% {
    width: 30px;
    opacity: 0.3;
  }

  50% {
    width: 60px;
    opacity: 1;
  }
}

.about-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  /* Increased size */
  font-weight: 800;
  /* Bolder */
  line-height: 1.2;
  margin-bottom: 2rem;
  /* Increased from 1.5rem */
  color: #1e1e1e;
  position: relative;
}

/* Red accent underline for title */
.about-title .red-accent {
  color: #e63946 !important;
  position: relative;
  display: inline-block;
}

.about-title .red-accent::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(230, 57, 70, 0.2);
  z-index: -1;
}

.about-description {
  font-size: 1.2rem;
  /* Slightly larger */
  color: #4a4a4a;
  border-left: 5px solid #e63946;
  /* Thicker border */
  padding-left: 2rem;
  /* More padding */
  margin-bottom: 3rem;
  /* Added bottom margin */
  max-width: 550px;
  line-height: 1.8;
  /* Better line height */
}

/* Stats section with more gap */
.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 3.5rem !important;
  /* Increased from 2rem */
  margin: 2rem 0 1.5rem;
  /* Added vertical margin */
}

.stat-item {
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Decorative dot after each stat except last */
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -1.75rem;
  width: 6px;
  height: 6px;
  background: #e63946;
  border-radius: 50%;
  transform: translateY(-50%);
}

.stat-number {
  font-size: 2.5rem;
  /* Increased from 2rem */
  font-weight: 800;
  color: #e63946;
  line-height: 1.2;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 1rem;
  /* Increased from 0.9rem */
  color: #4a4a4a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* Button spacing */
.about-section .btn-red {
  margin-top: 2.5rem !important;
  /* Increased from mt-4 */
  padding: 1rem 3rem;
  /* Larger button */
  font-size: 1.1rem;
}

/* ===== ENHANCED IMAGE GRID WITH MORE HEIGHT & GAP ===== */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem !important;
  /* Increased from 1rem */
  height: 100%;
  min-height: 600px !important;
  /* Increased from 450px */
}

/* Grid items with increased heights */
.grid-item {
  overflow: hidden;
  border-radius: 24px;
  /* Larger border radius */
  box-shadow: 0 20px 35px -15px rgba(0, 0, 0, 0.3);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

/* Red overlay on hover */
.grid-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.grid-item:hover::after {
  opacity: 1;
}

.grid-item:hover {
  box-shadow: 0 30px 45px -15px rgba(230, 57, 70, 0.4);
  transform: translateY(-5px);
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.grid-item:hover img {
  transform: scale(1.1);
}

/* Updated grid dimensions - TALLER */
.grid-item-1 {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  height: 400px !important;
  /* Increased from 300px */
}

.grid-item-2 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  height: 190px !important;
  /* Increased from 140px */
}

.grid-item-3 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  height: 190px !important;
  /* Increased from 140px */
}

.grid-item-4 {
  grid-column: 1 / 3;
  grid-row: 3 / 4;
  height: 240px !important;
  /* Increased from 180px */
}

/* Add image captions on hover */
.grid-item .image-caption {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  font-weight: 600;
  transition: bottom 0.3s ease;
  z-index: 3;
}

.grid-item:hover .image-caption {
  bottom: 0;
}

/* Decorative element */
.about-grid::before {
  content: '✦';
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 3rem;
  color: rgba(230, 57, 70, 0.1);
  z-index: 1;
}




/* ===== CATEGORIES SECTION ===== */
.categories-section {
  position: relative;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #ffffff;
  padding: 6rem 1.5rem !important;
  overflow: hidden;
}

/* Abstract background pattern */
.categories-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(230, 57, 70, 0.03) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(230, 57, 70, 0.03) 0%, transparent 30%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.01) 0px, rgba(255, 255, 255, 0.01) 2px, transparent 2px, transparent 8px);
  pointer-events: none;
}

/* Decorative red accent line */
.categories-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #e63946, transparent);
}

/* Section header styling */
.categories-section .section-tag {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e63946;
  border-bottom: 2px solid #e63946;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.categories-section .section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.categories-section .red-accent {
  color: #e63946;
  position: relative;
  display: inline-block;
}

.categories-section .red-accent::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(230, 57, 70, 0.2);
  z-index: -1;
}

.categories-section .section-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 850px;
  margin-top: 0.5rem;
  position: relative;
  z-index: 2;
}

/* ===== CATEGORY CARDS ===== */
.category-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #1e1e1e;
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.5);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(230, 57, 70, 0.1);
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 40px -10px rgba(230, 57, 70, 0.3);
  border-color: rgba(230, 57, 70, 0.3);
}

/* Image container with overlay */
.category-img {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card:hover .category-img img {
  transform: scale(1.1);
}

/* Gradient overlay on image */
.category-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      transparent 0%,
      transparent 50%,
      rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.category-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(230, 57, 70, 0.2) 0%,
      transparent 50%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.category-card:hover .category-img::after {
  opacity: 1;
}

/* Category content */
.category-content {
  position: relative;
  padding: 1.8rem 1.5rem 2rem;
  background: #1e1e1e;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Red top border on content */
.category-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e63946, transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.category-card:hover .category-content::before {
  transform: scaleX(1);
}

.category-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.category-content h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #e63946;
  transition: width 0.3s ease;
}

.category-card:hover .category-content h3::after {
  width: 50px;
}

.category-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 1.2rem;
  flex: 1;
}

/* Category link */
.category-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  text-decoration: none;
  padding: 0.5rem 0;
  position: relative;
  width: fit-content;
  transition: all 0.3s ease;
}

.category-link span {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.category-link:hover {
  color: #e63946;
}

.category-link:hover span {
  transform: translateX(5px);
}

.category-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #e63946;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.category-link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* ===== GALLERY SECTION - NORMAL 3x5 GRID ===== */
.gallery-section {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  color: #1e1e1e;
  padding: 6rem 1.5rem !important;
  overflow: hidden;
}

/* Section header */
.gallery-section .section-tag {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e63946;
  border-bottom: 2px solid #e63946;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.gallery-section .section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: #1e1e1e;
}

.gallery-section .red-accent {
  color: #e63946;
}

.gallery-section .section-subtitle {
  font-size: 1.1rem;
  color: #4a4a4a;
  max-width: 850px;
  margin-top: 0.5rem;
}

/* Filter buttons */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.filter-btn {
  background: transparent;
  border: 2px solid #e0e0e0;
  color: #4a4a4a;
  padding: 0.6rem 1.8rem;
  border-radius: 40px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: #e63946;
  color: #e63946;
}

.filter-btn.active {
  background: #e63946;
  border-color: #e63946;
  color: white;
  box-shadow: 0 8px 15px -5px rgba(230, 57, 70, 0.4);
}

/* ===== 3x5 GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Gallery items */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  aspect-ratio: 4/3;
  /* Consistent rectangle shape */
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px -12px rgba(230, 57, 70, 0.3);
}

/* Hidden items for load more */
.gallery-item.hidden-item {
  display: none;
}

/* Cards */
.gallery-card {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-card img {
  transform: scale(1.08);
}

/* Overlay */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.3) 50%,
      transparent 80%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: white;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-category {
  display: inline-block;
  background: #e63946;
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.2rem 1rem;
  border-radius: 30px;
  margin-bottom: 0.5rem;
  width: fit-content;
}

.gallery-overlay h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: white;
}

.gallery-link {
  color: white;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border-bottom: 1px solid #e63946;
  padding-bottom: 0.1rem;
  transition: all 0.3s ease;
  width: fit-content;
}

.gallery-link:hover {
  color: #e63946;
  gap: 0.6rem;
}

/* Load More Button */
#loadMoreBtn {
  padding: 1rem 3rem;
  font-size: 1rem;
  border-radius: 40px;
  box-shadow: 0 15px 25px -10px rgba(230, 57, 70, 0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

#loadMoreBtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 30px -10px rgba(230, 57, 70, 0.5);
}

#loadMoreBtn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}



/* ===== CRAFTSMANSHIP SECTION - DARK THEME ===== */
.craft-section.dark-theme {
  position: relative;
  background: #0a0a0a;
  color: #ffffff;
  padding: 6rem 1.5rem !important;
  overflow: hidden;
}

/* Background image with overlay */
.craft-section.dark-theme::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/p-2.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
}

/* Dark overlay */
.craft-section.dark-theme::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

/* Content stays above overlays */
.craft-section.dark-theme .container,
.craft-section.dark-theme .container-fluid {
  position: relative;
  z-index: 5;
}

/* Section header */
.craft-section.dark-theme .section-tag {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e63946;
  border-bottom: 2px solid #e63946;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.craft-section.dark-theme .section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.craft-section.dark-theme .red-accent {
  color: #e63946;
}

.craft-section.dark-theme .section-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
}

/* ===== CRAFT STEPS ===== */
.craft-section.dark-theme .craft-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.craft-section.dark-theme .craft-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.craft-section.dark-theme .step-number {
  font-size: 2rem;
  font-weight: 700;
  color: #e63946;
  opacity: 0.4;
  line-height: 1;
  min-width: 50px;
}

.craft-section.dark-theme .step-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.craft-section.dark-theme .step-content p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ===== IMAGE GRID - One on top, two below ===== */
.craft-image-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Top image */
.top-img {
  width: 100%;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

/* Bottom images container */
.bottom-images {
  display: flex;
  gap: 1rem;
  width: 100%;
}

.bottom-left,
.bottom-right {
  flex: 1;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

/* Image styling */
.craft-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.craft-img:hover img {
  transform: scale(1.05);
}

/* Image overlay with text */
.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.craft-img:hover .image-overlay {
  transform: translateY(0);
}

.image-overlay span {
  font-size: 0.9rem;
  font-weight: 500;
  color: white;
}

/* Button */
.craft-section.dark-theme .btn-red {
  background: #e63946;
  color: white;
  border: none;
  padding: 0.9rem 2.5rem;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.craft-section.dark-theme .btn-red:hover {
  background: #b81f2d;
  transform: translateY(-3px);
  box-shadow: 0 20px 30px -10px rgba(230, 57, 70, 0.5);
}



/*Testimonial*/
/* Testimonial Section - Refined Light Theme */
.steelam-testimonials {
  padding: 100px 0;
  background: #ffffff;
  color: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.steelam-testimonials::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 50px;
  font-size: 200px;
  color: rgba(230, 57, 70, 0.03);
  font-family: serif;
  line-height: 1;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 15px;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}

.section-header span {
  color: #e63946;
  position: relative;
}

.section-header p {
  color: #666;
  margin-bottom: 60px;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Card - Premium Light Style */
.testimonial-card {
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 20px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
}

.testimonial-card p {
  flex-grow: 1;
}

.testimonial-card .customer {
  margin-top: auto;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(230, 57, 70, 0.08);
  border-color: rgba(230, 57, 70, 0.1);
}



.testimonial-card p {
  color: #444;
  margin: 25px 0;
  line-height: 1.7;
  font-style: italic;
  font-size: 1.05rem;
  flex-grow: 1;
}

.stars {
  color: #ffc107;
  font-size: 16px;
  letter-spacing: 2px;
}

/* Customer Info */
.customer {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.customer img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.customer h4 {
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  color: #1a1a1a;
}

.customer span {
  font-size: 14px;
  color: #888;
  font-weight: 500;
}

/* Swiper Pagination & Navigation - Refined */
.swiper-pagination {
  position: relative !important;
  margin-top: 40px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ddd;
  opacity: 1;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #e63946;
  width: 30px;
  border-radius: 10px;
}

/* ===== STEELAM CTA SECTION - DARK MODERN (OUTLINE VERSION) ===== */

/* ===== STEELAM CTA SECTION - LIGHT PREMIUM REDESIGN ===== */
.steelam-cta {
  background: #f8f9fa;
  /* Light grey/white for separation */
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.steelam-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(230, 57, 70, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.steelam-cta .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* CTA BOX - Premium Light Card */
.steelam-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 30px;
  padding: 60px 80px;
  gap: 50px;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.steelam-cta-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

/* Red dot accent */
.steelam-cta-box::after {
  content: '';
  position: absolute;
  top: 30px;
  right: 30px;
  width: 10px;
  height: 10px;
  background: #e63946;
  border-radius: 50%;
  opacity: 0.6;
}

/* TEXT */
.cta-content h3 {
  color: #1a1a1a;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.cta-content p {
  color: #666;
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.7;
  max-width: 550px;
}

/* BUTTON - Refined for light background */
.btn-steelam-cta {
  background: #e63946;
  color: #ffffff;
  padding: 16px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 2px solid #e63946;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.btn-steelam-cta:hover {
  background: transparent;
  color: #e63946;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(230, 57, 70, 0.3);
}

/* Responsive - same as above */





/* ===== ABOUT US HERO SECTION ===== */
.about-hero-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: #0a0a0a;
  color: #ffffff;
  padding: 6rem 1.5rem;
  overflow: hidden;
}

/* Furniture Background Image with Overlay */
.about-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/about-hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.45;
  z-index: 1;
}

/* Premium Grey Overlay */
.about-hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(40, 40, 40, 0.4) 0%, rgba(20, 20, 20, 0.85) 100%);
  z-index: 2;
}

/* Ensure content stays above overlays */
.about-hero-section .container,
.about-hero-section .container-fluid {
  position: relative;
  z-index: 10;
}

/* Breadcrumb */
.about-breadcrumb {
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.about-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.about-breadcrumb a:hover {
  color: #e63946;
}

.about-breadcrumb span {
  margin: 0 0.5rem;
  color: #e63946;
}

/* Main Title */
.about-hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.about-hero-title .red-accent {
  color: #e63946;
  position: relative;
  display: inline-block;
}

.about-hero-title .red-accent::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 12px;
  background: rgba(230, 57, 70, 0.2);
  z-index: -1;
}

/* Description Text */
.about-hero-text {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin-bottom: 2.5rem;
  border-left: 4px solid #e63946;
  padding-left: 1.5rem;
}

/* Stats */
.about-stats-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.stat-item-hero {
  display: flex;
  flex-direction: column;
}

.stat-number-hero {
  font-size: 2.2rem;
  font-weight: 700;
  color: #e63946;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

.stat-label-hero {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Buttons */
.about-hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary-about {
  background: #e63946;
  color: white;
  border: none;
  padding: 0.9rem 2.5rem;
  border-radius: 40px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid #e63946;
}

.btn-primary-about:hover {
  background: #b81f2d;
  transform: translateY(-3px);
  box-shadow: 0 15px 25px -10px rgba(230, 57, 70, 0.5);
}

.btn-outline-about {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 0.9rem 2.5rem;
  border-radius: 40px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-outline-about:hover {
  border-color: #e63946;
  color: #e63946;
  transform: translateY(-3px);
  background: rgba(230, 57, 70, 0.05);
}

/* Decorative Elements */
.about-hero-section .container,
.about-hero-section .container-fluid {
  position: relative;
}

/* Subtle red accent line */
.about-hero-section .container::before,
.about-hero-section .container-fluid::before {
  content: '';
  position: absolute;
  bottom: -3rem;
  left: 0;
  width: 150px;
  height: 3px;
  background: linear-gradient(90deg, #e63946, transparent);
}


/* ============================================
   VALUES SECTION - WHITE/RED/BLACK THEME
   Base Styles (Desktop First)
   ============================================ */

.values-section {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #f1f3f5 100%);
  color: #1e1e1e;
  padding: 6rem 1.5rem !important;
  overflow: hidden;
}

/* Greyish overlay gradient - lighter for white theme */
.values-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(230, 57, 70, 0.02) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(230, 57, 70, 0.02) 0%, transparent 40%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(240, 240, 240, 0.3) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Subtle pattern - darker for contrast */
.values-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.01) 0px, rgba(0, 0, 0, 0.01) 2px, transparent 2px, transparent 8px);
  z-index: 1;
  pointer-events: none;
}

/* Content stays above overlays */
.values-section .container,
.values-section .container-fluid {
  position: relative;
  z-index: 10;
}

/* Section Header */
.values-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e63946;
  border-bottom: 2px solid #e63946;
  padding-bottom: 0.4rem;
  margin-bottom: 1.2rem;
}

.values-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #1e1e1e;
}

.values-title .red-accent {
  color: #e63946;
  text-shadow: 0 0 10px rgba(230, 57, 70, 0.2);
}

.values-subtitle {
  font-size: 1.1rem;
  color: #4a4a4a;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== VALUES GRID ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (max-width: 1200px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* Value Card */
.value-card {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(230, 57, 70, 0.15);
  border-radius: 24px;
  padding: 2rem 1.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 15px 25px -15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(30px);
  animation: slideUpCard 0.6s ease forwards;
}

/* Card animations - staggered */
.value-card:nth-child(1) {
  animation-delay: 0.1s;
}

.value-card:nth-child(2) {
  animation-delay: 0.2s;
}

.value-card:nth-child(3) {
  animation-delay: 0.3s;
}

.value-card:nth-child(4) {
  animation-delay: 0.4s;
}

.value-card:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes slideUpCard {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover effects */
.value-card:hover {
  transform: translateY(-10px);
  border-color: #e63946;
  box-shadow: 0 25px 35px -15px rgba(230, 57, 70, 0.25);
  background: rgba(255, 255, 255, 0.95);
}

/* Glowing border effect */
.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  border: 2px solid transparent;
  background: linear-gradient(135deg, #e63946, transparent) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.value-card:hover::before {
  opacity: 0.5;
}

/* Icon */
.value-icon {
  color: #e63946;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
  display: inline-block;
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 8px rgba(230, 57, 70, 0.3));
}

/* Title */
.value-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 0.8rem;
  position: relative;
  display: inline-block;
}

.value-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #e63946;
  transition: width 0.4s ease;
}

.value-card:hover .value-title::after {
  width: 100%;
}

/* Description */
.value-description {
  font-size: 0.9rem;
  color: #4a4a4a;
  line-height: 1.6;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.value-card:hover .value-description {
  color: #1e1e1e;
}

/* Value Number - Decorative */
.value-number {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(230, 57, 70, 0.08);
  line-height: 1;
  transition: all 0.4s ease;
  z-index: 0;
}

.value-card:hover .value-number {
  color: rgba(230, 57, 70, 0.15);
  transform: scale(1.1);
}

/* ============================================
   OUR STORY SECTION - DARK WITH FURNITURE OVERLAY
   ============================================ */

.story-dark-section {
  position: relative;
  background: #0a0a0a;
  color: #ffffff;
  padding: 6rem 1.5rem !important;
  overflow: hidden;
}

/* Furniture Background Image with Overlay */
.story-dark-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/p-2.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.08;
  z-index: 1;
}

/* Dark gradient overlay */
.story-dark-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(20, 20, 20, 0.9) 50%, rgba(10, 10, 10, 0.95) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Content stays above overlays */
.story-dark-section .container,
.story-dark-section .container-fluid {
  position: relative;
  z-index: 10;
}

/* Left Content */
.story-content {
  position: relative;
  z-index: 15;
}

/* Section Tag */
.story-tag-dark {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e63946;
  border-bottom: 2px solid #e63946;
  padding-bottom: 0.4rem;
  margin-bottom: 1.5rem;
}

/* Title */
.story-title-dark {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  color: #ffffff;
}

.story-title-dark .red-accent {
  color: #e63946;
  text-shadow: 0 0 15px rgba(230, 57, 70, 0.4);
}

/* Subtitle */
.story-subtitle-dark {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  font-weight: 400;
  border-left: 4px solid #e63946;
  padding-left: 1.5rem;
}

/* Story Text */
.story-text-dark {
  margin-bottom: 2rem;
}

.story-text-dark p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.2rem;
}

/* Signature */
.story-signature {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.signature-line {
  width: 60px;
  height: 2px;
  background: #e63946;
}

.signature-text {
  display: flex;
  flex-direction: column;
}

.founder-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1px;
}

.founder-title {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Stats */
.story-stats-dark {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.stat-item-dark {
  display: flex;
  flex-direction: column;
}

.stat-number-dark {
  font-size: 2rem;
  font-weight: 700;
  color: #e63946;
  line-height: 1.2;
}

.stat-label-dark {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Button */
.btn-story-dark {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.8rem 2rem;
  border-radius: 40px;
  border: 2px solid rgba(230, 57, 70, 0.3);
  transition: all 0.3s ease;
  gap: 0.5rem;
}

.btn-story-dark:hover {
  background: #e63946;
  border-color: #e63946;
  transform: translateY(-3px);
  box-shadow: 0 15px 25px -10px rgba(230, 57, 70, 0.5);
  gap: 1rem;
}

/* ===== RIGHT IMAGE COLLAGE ===== */
.story-images-dark {
  position: relative;
  height: 550px;
  width: 100%;
}

/* Base Image Styles */
.story-img-dark {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 30px -15px rgba(0, 0, 0, 0.7);
  transition: all 0.5s ease;
  cursor: pointer;
  border: 2px solid rgba(230, 57, 70, 0.2);
}

.story-img-dark:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: #e63946;
  box-shadow: 0 25px 35px -15px rgba(230, 57, 70, 0.4);
}

.story-img-dark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.story-img-dark:hover img {
  transform: scale(1.1);
}

/* Main Image */
.main-story-img {
  top: 0;
  right: 0;
  width: 70%;
  height: 60%;
  z-index: 3;
}

/* Floating Images */
.float-story-img {
  width: 50%;
  height: 40%;
  border: 3px solid #1a1a1a;
}

.img-1-dark {
  bottom: 0;
  left: 0;
  z-index: 4;
}

.img-2-dark {
  bottom: 10%;
  right: 5%;
  z-index: 4;
  width: 45%;
  height: 35%;
}

/* Image Captions */
.img-caption-dark {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: white;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.img-caption-dark.small {
  padding: 0.8rem;
}

.story-img-dark:hover .img-caption-dark {
  transform: translateY(0);
}

.img-caption-dark span {
  font-size: 0.85rem;
  font-weight: 500;
  color: white;
}

.img-caption-dark.small span {
  font-size: 0.7rem;
}

/* Decorative Years */
.story-years {
  position: absolute;
  top: 10%;
  left: 0;
  font-size: 6rem;
  font-weight: 800;
  color: rgba(230, 57, 70, 0.05);
  line-height: 1;
  z-index: 1;
  transform: rotate(-10deg);
  white-space: nowrap;
  pointer-events: none;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.story-tag-dark,
.story-title-dark,
.story-subtitle-dark,
.story-text-dark,
.story-signature,
.story-stats-dark,
.btn-story-dark {
  animation: fadeInLeft 0.8s ease forwards;
  opacity: 0;
}

.story-title-dark {
  animation-delay: 0.1s;
}

.story-subtitle-dark {
  animation-delay: 0.2s;
}

.story-text-dark {
  animation-delay: 0.3s;
}

.story-signature {
  animation-delay: 0.4s;
}

.story-stats-dark {
  animation-delay: 0.5s;
}

.btn-story-dark {
  animation-delay: 0.6s;
}

.story-images-dark {
  animation: fadeInRight 1s ease 0.2s forwards;
  opacity: 0;
}

@media (max-width: 991px) {
  .story-images-dark {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 4rem;
    animation: fadeInUp 1s ease 0.2s forwards;
  }

  .story-img-dark {
    position: relative !important;
    width: 100% !important;
    height: 400px !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
  }

  .main-story-img,
  .float-story-img {
    width: 100% !important;
    height: 400px !important;
  }

  .story-years {
    display: none;
  }

  .story-content {
    text-align: center;
  }

  .signature-line {
    margin: 1.5rem auto;
  }

  .story-stats-dark {
    justify-content: center;
    gap: 2rem;
  }
}

@media (max-width: 576px) {

  .story-img-dark,
  .main-story-img,
  .float-story-img {
    height: 300px !important;
  }
}

/* ===== RESPONSIVE ===== */

/* Tablet Landscape */


/* Tablet Portrait */


/* Mobile */


/* Small Mobile */


/* DELETED: REDUNDANT PRODUCT HERO SLIDER CSS */

/* ===== RESPONSIVE — see responsive.css ===== */

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */

/* Tablet */


/* Mobile Landscape */


/* Mobile */


/* Small Mobile */



/* ===== STEELAM FURNITURE CATEGORY SECTION ===== */
.steelam-category-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 5rem 1.5rem;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e63946;
  border-bottom: 2px solid #e63946;
  padding-bottom: 0.4rem;
  margin-bottom: 1.2rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 0.5rem;
}

.section-title .red-accent {
  color: #e63946;
}

.section-subtitle {
  color: #4a4a4a;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== FILTER PILLS ===== */
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-btn {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 40px;
  padding: 0.7rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1e1e1e;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.filter-btn i {
  color: #e63946;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: #e63946;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px -8px rgba(230, 57, 70, 0.3);
}

.filter-btn.active {
  background: #e63946;
  border-color: #e63946;
  color: white;
}

.filter-btn.active i {
  color: white;
}

/* ===== CATEGORY GRID ===== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* ===== STEELAM CARDS ===== */
.steelam-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.02);
  position: relative;
}

.steelam-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 40px -15px rgba(230, 57, 70, 0.25);
  border-color: rgba(230, 57, 70, 0.1);
}

/* Card Image */
.card-image-wrapper {
  aspect-ratio: 4/3;
  background: #f5f5f5;
  overflow: hidden;
  position: relative;
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.steelam-card:hover .card-image-wrapper img {
  transform: scale(1.08);
}

/* Card Badge */
.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #e63946;
  color: white;
  border-radius: 30px;
  padding: 0.3rem 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(230, 57, 70, 0.3);
}

.card-badge.new {
  background: #1e1e1e;
}

/* Card Content */
.card-content {
  padding: 1.5rem;
}

.card-category {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #e63946;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.card-title {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #1e1e1e;
}

.card-description {
  font-size: 0.85rem;
  color: #4a4a4a;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.card-features span {
  background: #f5f5f5;
  color: #4a4a4a;
  font-size: 0.7rem;
  padding: 0.2rem 0.8rem;
  border-radius: 30px;
}

.card-price {
  font-weight: 700;
  color: #e63946;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.shop-link {
  color: #e63946;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.shop-link:hover {
  gap: 0.6rem;
  border-bottom-color: #e63946;
}

/* Filter visibility */
.steelam-card.hidden-filter {
  display: none;
}

/* ===== RESPONSIVE ===== */








/* Container width */
.steelam-category-section .container-fluid {
  max-width: 1400px;
  margin: 0 auto;
}


/* ============================================
   LOOKBOOK - PINTEREST EDITORIAL STYLE
   Class prefix: lb-*
   ============================================ */

/* ---- Section Wrapper ---- */
.lb-section {
  background: linear-gradient(160deg, #0c0c0c 0%, #161616 45%, #0a0a0a 100%);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', 'Montserrat', system-ui, sans-serif;
}

/* ambient blobs */
.lb-section::before,
.lb-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.lb-section::before {
  width: 500px;
  height: 500px;
  top: -10%;
  left: -8%;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.08) 0%, transparent 70%);
}

.lb-section::after {
  width: 400px;
  height: 400px;
  bottom: -8%;
  right: -6%;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.06) 0%, transparent 70%);
}

/* ---- Container ---- */
.lb-container {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* ---- Section Header ---- */
.lb-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.lb-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #e63946;
  margin-bottom: 1rem;
}

.lb-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.6rem;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.lb-accent {
  color: #e63946;
  position: relative;
}

.lb-accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #e63946, transparent);
  border-radius: 2px;
}

.lb-subtitle {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 auto 1.8rem;
  max-width: 440px;
}

.lb-header-line {
  width: 48px;
  height: 2px;
  background: #e63946;
  margin: 0 auto;
  border-radius: 2px;
}

/* ---- Pinterest Masonry ---- */
/* CSS columns approach — images determine card height organically */
.lb-masonry {
  column-count: 4;
  column-gap: 1.2rem;
}

/* ---- Each Pin Card ---- */
.lb-pin {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: block;
  /* stagger entrance - set via nth-child in animation block below */
}

.lb-pin-inner {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.lb-pin:hover .lb-pin-inner {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(230, 57, 70, 0.28);
}

/* Image */
.lb-pin-inner img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lb-pin:hover .lb-pin-inner img {
  transform: scale(1.07);
}

/* ---- Room Label (top-left floating badge) ---- */
.lb-room-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.28rem 0.75rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 3;
  pointer-events: none;
}

/* ---- Save / Heart Button (top-right) ---- */
.lb-save-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.lb-pin:hover .lb-save-btn {
  opacity: 1;
  transform: scale(1);
}

.lb-save-btn:hover {
  background: #e63946;
  color: #fff;
}

/* ---- Info Panel (fixed-height bottom bar, grows on hover) ---- */
.lb-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.55) 60%, transparent 100%);
  padding: 2rem 1rem 1rem;
  transform: translateY(calc(100% - 46px));
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.lb-pin:hover .lb-info {
  transform: translateY(0);
}

/* Always-visible "shop look" strip (bottom 46px) */
.lb-info::before {
  content: '';
  /* purely decorative separator – already covered by gradient */
}

/* ---- Tags ---- */
.lb-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.7rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
}

.lb-pin:hover .lb-tags {
  opacity: 1;
  transform: translateY(0);
}

.lb-tags span {
  display: inline-block;
  background: rgba(230, 57, 70, 0.82);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.22rem 0.75rem;
  border-radius: 30px;
  letter-spacing: 0.3px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* ---- Shop Button ---- */
.lb-shop-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: none;
  background: none;
  padding: 0;
  transition: color 0.3s ease, gap 0.3s ease;
}

.lb-shop-btn::after {
  content: '→';
  transition: transform 0.3s ease;
  display: inline-block;
}

.lb-shop-btn:hover {
  color: #e63946;
}

.lb-shop-btn:hover::after {
  transform: translateX(4px);
}

/* ---- View All CTA ---- */
.lb-cta-wrap {
  text-align: center;
  margin-top: 3.5rem;
}

.lb-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.85rem 2.4rem;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  transition: all 0.35s ease;
}

.lb-view-all svg {
  transition: transform 0.35s ease;
}

.lb-view-all:hover {
  background: #e63946;
  border-color: #e63946;
  color: #fff;
  box-shadow: 0 12px 30px rgba(230, 57, 70, 0.35);
}

.lb-view-all:hover svg {
  transform: translateX(5px);
}

/* ---- Entrance Animations ---- */
@keyframes lb-fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lb-pin {
  opacity: 0;
  animation: lb-fadeUp 0.55s ease forwards;
}

.lb-pin:nth-child(1) {
  animation-delay: 0.05s;
}

.lb-pin:nth-child(2) {
  animation-delay: 0.12s;
}

.lb-pin:nth-child(3) {
  animation-delay: 0.19s;
}

.lb-pin:nth-child(4) {
  animation-delay: 0.26s;
}

.lb-pin:nth-child(5) {
  animation-delay: 0.33s;
}

.lb-pin:nth-child(6) {
  animation-delay: 0.40s;
}

.lb-pin:nth-child(7) {
  animation-delay: 0.47s;
}

.lb-pin:nth-child(8) {
  animation-delay: 0.54s;
}

/* ===== RESPONSIVE — see responsive.css ===== */


/* ============================================
   WHY TRUST US - LIGHT BACKGROUND
   Clean, minimal design with red accents
   ============================================ */

.trust-light-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 5rem 1.5rem;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  position: relative;
  overflow: hidden;
}

/* Subtle background pattern */
.trust-light-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 10% 20%, rgba(230, 57, 70, 0.02) 0%, transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(230, 57, 70, 0.02) 0%, transparent 30%);
  pointer-events: none;
}

/* Section Header */
.trust-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e63946;
  border-bottom: 2px solid #e63946;
  padding-bottom: 0.4rem;
  margin-bottom: 1.2rem;
}

.trust-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 1rem;
}

.trust-title .red-accent {
  color: #e63946;
  position: relative;
  display: inline-block;
}

.trust-title .red-accent::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(230, 57, 70, 0.1);
  z-index: -1;
}

.trust-subtitle {
  color: #4a4a4a;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== TRUST CARDS GRID ===== */
.trust-light-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto;
}

@media (max-width: 1200px) {
  .trust-light-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }
}

@media (max-width: 576px) {
  .trust-light-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Trust Card */
.trust-light-card {
  background: white;
  border-radius: 24px;
  padding: 2rem 1.8rem;
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.trust-light-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px -12px rgba(230, 57, 70, 0.15);
  border-color: rgba(230, 57, 70, 0.1);
}

/* Red accent line on top */
.trust-light-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #e63946, #ff8a9c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.trust-light-card:hover::before {
  transform: scaleX(1);
}

/* Icon Wrapper */
.trust-icon-wrapper {
  color: #e63946;
  margin-bottom: 1.5rem;
  display: inline-flex;
  justify-content: center;
  transition: all 0.4s ease;
}

.trust-light-card:hover .trust-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.trust-icon-wrapper svg {
  width: 48px;
  height: 48px;
}

/* Card Title */
.trust-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 0.8rem;
}

/* Card Text */
.trust-card-text {
  font-size: 0.95rem;
  color: #4a4a4a;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Card Footer Badge */
.trust-card-footer {
  margin-top: auto;
}

.trust-badge {
  display: inline-block;
  background: #f8f9fa;
  color: #e63946;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 1.2rem;
  border-radius: 30px;
  border: 1px solid rgba(230, 57, 70, 0.2);
  transition: all 0.3s ease;
}

.trust-light-card:hover .trust-badge {
  background: #e63946;
  color: white;
  border-color: #e63946;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.trust-light-card {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.trust-light-card:nth-child(1) {
  animation-delay: 0.1s;
}

.trust-light-card:nth-child(2) {
  animation-delay: 0.2s;
}

.trust-light-card:nth-child(3) {
  animation-delay: 0.3s;
}

.trust-light-card:nth-child(4) {
  animation-delay: 0.4s;
}

/* ===== RESPONSIVE ===== */

/* Tablet Landscape */


/* Tablet Portrait */


/* Mobile */


/* Small Mobile */



/* ===== RESPONSIVE ===== */

/* Tablet */


/* Mobile Landscape */


/* Mobile */


/* Small Mobile */



/* ============================================
   STEELAM CONTACT SECTION - LIGHT THEME
   ============================================ */

/* Section Background */
.enquiry-section-light {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

/* Subtle pattern overlay */
.enquiry-section-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 30%, rgba(230, 57, 70, 0.02) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(230, 57, 70, 0.02) 0%, transparent 30%);
  pointer-events: none;
}

/* Section Gap Utility */
.section-gap {
  padding: 5rem 0;
}

.section-gap-sm {
  padding: 3rem 0;
}

/* Left Info Styles - Light */
.enquiry-section-light h1 {
  color: #1e1e1e;
  font-weight: 700;
}

.enquiry-section-light .red-accent {
  color: #e63946;
}

.text-secondary {
  color: #4a4a4a !important;
}

/* Icon Square - Light */
.icon-square-light {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.bg-red-light {
  background: rgba(230, 57, 70, 0.1);
}

.text-red {
  color: #e63946 !important;
}

/* Contact Info Links - Light */
.enquiry-section-light a {
  transition: all 0.3s ease;
  font-weight: 500;
}

.enquiry-section-light a:hover {
  color: #e63946 !important;
  transform: translateX(5px);
}

.enquiry-section-light h6 {
  color: #1e1e1e;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Business Hours */
.enquiry-section-light .text-secondary {
  line-height: 1.7;
}

/* ===== FORM CARD - LIGHT ===== */
.form-card-light {
  background: white;
  border-radius: 24px;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1) !important;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.form-card-light:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 45px -12px rgba(230, 57, 70, 0.15) !important;
  border-color: rgba(230, 57, 70, 0.1);
}

.form-title-light {
  color: #1e1e1e;
  font-weight: 600;
  font-size: 1.5rem;
}

.form-title-light .red-accent {
  color: #e63946;
}

/* Form Inputs - Light */
.form-input-light {
  padding: 0.8rem 1.2rem;
  border-radius: 12px !important;
  background: #f8f9fa !important;
  border: 1px solid #e9ecef !important;
  transition: all 0.3s ease;
}

.form-input-light:focus {
  background: white !important;
  border-color: #e63946 !important;
  box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.1) !important;
  outline: none;
}

.form-input-light::placeholder {
  color: #adb5bd;
}

/* Submit Button - Light */
.btn-submit-light {
  background: #e63946;
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid #e63946;
}

.btn-submit-light:hover {
  background: #b81f2d;
  transform: translateY(-3px);
  box-shadow: 0 15px 25px -10px rgba(230, 57, 70, 0.4);
}

.btn-submit-light i {
  transition: transform 0.3s ease;
}

.btn-submit-light:hover i {
  transform: translateX(5px);
}

/* ===== MAP SECTION - LIGHT ===== */
.compact-map-section-light {
  background: #ffffff;
  padding: 3rem 0 4rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.map-card-light {
  border-radius: 20px !important;
  overflow: hidden;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.08) !important;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.map-card-light:hover {
  border-color: #e63946;
  transform: translateY(-5px);
  box-shadow: 0 20px 35px -12px rgba(230, 57, 70, 0.15) !important;
}

.map-card-light iframe {
  display: block;
  filter: grayscale(10%);
  transition: filter 0.3s ease;
}

.map-card-light:hover iframe {
  filter: grayscale(0%);
}

/* Map Caption - Light */
.compact-map-section-light .text-secondary {
  font-size: 0.95rem;
  color: #4a4a4a;
}

.compact-map-section-light .red-accent {
  color: #e63946;
}

/* ===== RESPONSIVE - LIGHT THEME ===== */

/* Tablet */


/* Mobile Landscape */


/* Mobile */


/* Small Mobile */



/* Responsive adjustments */


/* ============================================
   BRANCHES HERO SECTION - DARK THEME
   ============================================ */

.branches-hero {
  position: relative;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  padding: 6rem 0 4rem;
  color: #ffffff;
  overflow: hidden;
}

/* Subtle furniture pattern overlay */
.branches-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/p-2.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.03;
  z-index: 1;
  pointer-events: none;
}

/* Red radial gradient overlay */
.branches-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(230, 57, 70, 0.05) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(230, 57, 70, 0.05) 0%, transparent 30%);
  z-index: 2;
  pointer-events: none;
}

/* Content stays above overlays */
.branches-hero .container {
  position: relative;
  z-index: 10;
}

/* Min Height Utility */
.min-vh-50 {
  min-height: 50vh;
}

/* ===== BREADCRUMB ===== */
.hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 0.6rem 1.5rem;
  border-radius: 40px;
  margin-bottom: 2rem;
  border: 1px solid rgba(230, 57, 70, 0.2);
  animation: fadeInDown 0.8s ease;
}

.hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.hero-breadcrumb a:hover {
  color: #e63946;
}

.hero-breadcrumb .separator i {
  color: #e63946;
  font-size: 0.7rem;
}

.hero-breadcrumb .current {
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ===== TITLE ===== */
.hero-title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.8rem;
  color: #ffffff;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-title .red-accent {
  color: #e63946;
  position: relative;
  display: inline-block;
}

.hero-title .red-accent::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 12px;
  background: rgba(230, 57, 70, 0.2);
  z-index: -1;
  border-radius: 6px;
}

/* ===== SUBTITLE ===== */
.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.2rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

/* ===== DESCRIPTION ===== */
.hero-description {
  font-size: 1.5rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease 0.3s both;
}

/* ===== LOCATION STATS ===== */
.location-stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #e63946;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== CTA BUTTONS ===== */
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  background: #e63946;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  border: 2px solid #e63946;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: transparent;
  color: #e63946;
  transform: translateY(-3px);
  box-shadow: 0 15px 25px -10px rgba(230, 57, 70, 0.4);
}

.btn-primary i {
  transition: transform 0.3s ease;
}

.btn-primary:hover i {
  transform: translateX(3px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: #e63946;
  color: #e63946;
  transform: translateY(-3px);
  background: rgba(230, 57, 70, 0.05);
}

/* ===== DECORATIVE ELEMENTS ===== */
.hero-decorative {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.decor-line {
  width: 150px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #e63946, transparent);
  margin-bottom: 2rem;
  opacity: 0.5;
}

.decor-dots {
  display: flex;
  gap: 1rem;
}

.decor-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e63946;
  opacity: 0.3;
  animation: pulse 2s infinite;
}

.decor-dots span:nth-child(2) {
  animation-delay: 0.3s;
}

.decor-dots span:nth-child(3) {
  animation-delay: 0.6s;
}

.decor-dots span:nth-child(4) {
  animation-delay: 0.9s;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

/* ===== WAVE DIVIDER ===== */
/* ===== CSS WAVE DIVIDER (Customizable) ===== */
:root {
  --hero-wave-color: #ffffff;
  --hero-wave-height: 120px;
}

.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: var(--hero-wave-height);
  background-color: var(--hero-wave-color);
  z-index: 5;
  /* Premium wave shape using CSS clip-path */
  clip-path: polygon(0% 41%, 4% 47%, 9% 53%, 14% 58%, 19% 62%, 24% 65%, 29% 66%, 34% 66%, 39% 64%, 44% 61%, 49% 57%, 54% 52%, 59% 47%, 64% 42%, 69% 38%, 74% 35%, 79% 34%, 84% 34%, 89% 37%, 94% 41%, 100% 46%, 100% 100%, 0% 100%);
  transition: all 0.4s ease;
}

/* To customize: just change the clip-path coordinates or variables */
@media (max-width: 768px) {
  :root {
    --hero-wave-height: 80px;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE - Add to responsive.css ===== */

/* Tablet Landscape */


/* Tablet Portrait */


/* Mobile */


/* Small Mobile */


/* ============================================
   BRANCHES GRID SECTION - LIGHT BACKGROUND
   ============================================ */

.branches-grid-section-light {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

/* Subtle pattern overlay */
.branches-grid-section-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 10% 20%, rgba(230, 57, 70, 0.02) 0%, transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(230, 57, 70, 0.02) 0%, transparent 30%);
  pointer-events: none;
}

/* Content stays above overlay */
.branches-grid-section-light .container {
  position: relative;
  z-index: 10;
}

/* Section Header - Light */
.section-tag-light {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e63946;
  border-bottom: 2px solid #e63946;
  padding-bottom: 0.4rem;
  margin-bottom: 1.2rem;
}

.section-title-light {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 1rem;
}

.section-title-light .red-accent {
  color: #e63946;
  position: relative;
  display: inline-block;
}

.section-title-light .red-accent::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(230, 57, 70, 0.1);
  z-index: -1;
  border-radius: 5px;
}

.section-subtitle-light {
  color: #64748b;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== BRANCHES WIDE LIST - LIGHT ===== */
.branches-wide-list-light {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

/* Wide Branch Card */
.branch-card-wide {
  display: flex;
  background: white;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  min-height: 400px;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.branch-card-wide.row-reverse {
  flex-direction: row-reverse;
}

.branch-card-wide:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px -15px rgba(230, 57, 70, 0.12);
  border-color: rgba(230, 57, 70, 0.1);
}

/* Info Section (Left/Right) */
.branch-info {
  flex: 1.2;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* Image Section (Right/Left) */
.branch-image-box {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.branch-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.branch-card-wide:hover .branch-image-box img {
  transform: scale(1.1);
}

/* Featured / Special Variations */
.branch-card-wide.featured {
  border-left: 6px solid #e63946;
}

.branch-card-wide.special-partner {
  background: #fafafc;
}

/* Header & Text */
.branch-city-light {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.branch-name-light {
  font-size: 1rem;
  color: #e63946;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 2rem;
}

/* Details */
.branch-details-light {
  margin-bottom: 2.5rem;
}

.branch-detail-light {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.branch-detail-light i {
  color: #e63946;
  font-size: 1.2rem;
  background: rgba(230, 57, 70, 0.08);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.branch-detail-light span {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Phone */
.phone-link-light {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  transition: color 0.3s ease;
}

.phone-link-light:hover {
  color: #e63946;
}

/* Tags */
.branch-tags-light {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.tag-light {
  background: #f1f5f9;
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.branch-card-wide:hover .tag-light {
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Footer Links */
.branch-btn-light {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #1a1a1a;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.branch-btn-light:hover {
  background: #e63946;
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(230, 57, 70, 0.2);
  color: white;
}

/* Badge Fix */
.branch-badge-light {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: #e63946;
  color: white;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 10;
}

.branch-badge-light.partner-light {
  background: #475569;
}

/* ===== RESPONSIVE ===== */






/* ===== CONTACT BAR - LIGHT ===== */
.contact-bar-light {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 80px;
  padding: 1.5rem 2.5rem;
  margin-top: 2rem;
  box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.05);
  animation: fadeInUp 0.8s ease 0.6s both;
}

.contact-bar-content-light {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.contact-message-light {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-message-light i {
  color: #e63946;
  font-size: 1.8rem;
  animation: pulse 2s infinite;
}

.contact-message-light span {
  color: #1e1e1e;
  font-size: 1.2rem;
  font-weight: 500;
}

.contact-number-light {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: #e63946;
  color: white;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 60px;
  transition: all 0.3s ease;
  border: 2px solid #e63946;
}

.contact-number-light:hover {
  background: transparent;
  color: #e63946;
  transform: scale(1.05);
  box-shadow: 0 15px 25px -10px rgba(230, 57, 70, 0.3);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

/* ===== RESPONSIVE ===== */

/* Large Desktop */


/* Tablet Landscape */


/* Tablet Portrait */


/* Mobile */


/* Small Mobile */


/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact-hero-modern {
  position: relative;
  /* Replaced linear-gradient with a background image + dark overlay */
  background:
    linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 26, 26, 0.85) 50%, rgba(43, 0, 0, 0.9) 100%),
    url('../img/p-2.webp');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  padding: 100px 0 80px;
  color: #ffffff;
  overflow: hidden;
  border-bottom: 2px solid #e60000;
}

.contact-hero-modern::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(230, 0, 0, 0.05) 0%, transparent 60%);
  z-index: 1;
  animation: pulseGradient 15s infinite linear;
}

@keyframes pulseGradient {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.contact-hero-modern .container {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 5px 15px;
  background: rgba(230, 0, 0, 0.1);
  border: 1px solid #e60000;
  border-radius: 50px;
  color: #e60000;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(230, 0, 0, 0.2);
}

.contact-hero-modern h1 {
  font-size: 4rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-hero-modern h1 .red-text {
  color: #e60000;
  position: relative;
  display: inline-block;
}

.contact-hero-modern p.lead-text {
  font-size: 1.2rem;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.info-cards-wrapper {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.hero-info-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 30px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  flex: 0 1 auto;
  min-width: 280px;
  max-width: 400px;
}

.hero-info-card:hover {
  transform: translateY(-5px);
  border-color: #e60000;
  background: rgba(230, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(230, 0, 0, 0.1);
}

.hero-info-card .icon-box {
  width: 50px;
  height: 50px;
  background: #e60000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(230, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.hero-info-card .card-content {
  text-align: left;
}

.hero-info-card .card-title {
  font-size: 0.85rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  display: block;
}

.hero-info-card .card-text {
  font-size: 1.15rem;
  color: #ffffff;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
}

.floating-shape {
  position: absolute;
  background: #e60000;
  opacity: 0.1;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
}

/* ============================================
   BRANCH PAGE SUPPLEMENTAL SECTIONS
   ============================================ */

/* --- SECTION 1: SERVICES OFFERED (DARK) --- */
.branch-services-dark {
  background: linear-gradient(135deg, #000000 0%, #111111 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.section-tag-red {
  display: inline-block;
  color: #e63946;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.section-title-white {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.section-subtitle-grey {
  color: #94a3b8;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.services-modern-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.service-card-modern {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem 2rem;
  border-radius: 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

.service-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(230, 57, 70, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 24px;
}

.service-card-modern:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(230, 57, 70, 0.4);
}

.service-card-modern:hover::before {
  opacity: 1;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: #e63946;
  color: white;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin: 0 auto 2rem;
  box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3);
  transition: transform 0.4s ease;
}

.service-card-modern:hover .service-icon {
  transform: rotateY(180deg);
}

.service-card-modern h3 {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-card-modern p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-hover-tag {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(230, 57, 70, 0.15);
  color: #e63946;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 30px;
  opacity: 0;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.service-card-modern:hover .service-hover-tag {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* --- SECTION 2: HIGHLIGHTS (LIGHT) --- */
.branch-highlights-light {
  padding: 6rem 0;
  background: #f8fafc;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 1.5rem;
  margin-top: 3rem;
}

.highlight-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.highlight-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.highlight-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.highlight-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
  opacity: 0;
  transition: all 0.4s ease;
}

.highlight-item:hover img {
  transform: scale(1.1);
}

.highlight-item:hover .highlight-overlay {
  opacity: 1;
}

.highlight-info h3 {
  color: white;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.highlight-info span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  display: block;
  margin-bottom: 1.5rem;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.1s;
}

.highlight-cta {
  display: inline-block;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.7rem 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  transition: all 0.3s ease;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.2s;
}

.highlight-cta:hover {
  background: #e63946;
  border-color: #e63946;
}

.highlight-item:hover .highlight-info h3,
.highlight-item:hover .highlight-info span,
.highlight-item:hover .highlight-cta {
  transform: translateY(0);
}

/* --- SECTION 3: FAQ & CTA (DARK) --- */
.branch-faq-cta-dark {
  background: linear-gradient(135deg, #050505 0%, #1a1a1a 100%);
  padding: 7rem 0;
  color: white;
}

/* Accordion */
.modern-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item-modern {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
}

.accordion-trigger {
  display: none;
}

.accordion-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0;
  transition: all 0.3s ease;
}

.accordion-label i {
  transition: transform 0.3s ease;
  color: #e63946;
}

.accordion-content-modern {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  padding: 0 1.5rem;
}

.accordion-content-modern p {
  color: #94a3b8;
  padding-bottom: 1.5rem;
  margin: 0;
  line-height: 1.6;
}

.accordion-trigger:checked+.accordion-label {
  background: rgba(230, 57, 70, 0.05);
}

.accordion-trigger:checked+.accordion-label i {
  transform: rotate(180deg);
}

.accordion-trigger:checked~.accordion-content-modern {
  max-height: 200px;
  padding-top: 0.5rem;
}

/* Booking Card */
.cta-booking-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3.5rem;
  border-radius: 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  position: relative;
}

.cta-badge {
  display: inline-block;
  background: rgba(230, 57, 70, 0.1);
  color: #e63946;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.cta-booking-card h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-booking-card p {
  color: #94a3b8;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.cta-actions-modern {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.btn-primary-red {
  background: #e63946;
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(230, 57, 70, 0.2);
  transition: all 0.3s ease;
}

.btn-secondary-outline {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-primary-red:hover {
  transform: translateY(-5px);
  background: #c1121f;
  color: white;
}

.btn-secondary-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  color: white;
}

.cta-footer-info {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 500;
}

.cta-footer-info i {
  color: #e63946;
  margin-right: 0.5rem;
}

/* Responsive Supplemental Sections */
/* ══════════════════════════════════════
   SCROLL-REVEAL SYSTEM
   ══════════════════════════════════════ */

.reveal-on-scroll {
  opacity: 0;
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: transform, opacity;
}

.reveal-on-scroll {
  transform: translateY(30px);
}

.reveal-on-scroll.is-visible {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* Stagger delays for multiple items */
.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* Responsive Supplement */
@media (max-width: 768px) {

  .reveal-left,
  .reveal-right {
    transform: translateY(20px);
    /* Convert to fade-up on mobile */
  }
}

/* --------------------------------------
   CRAFT SECTION
   -------------------------------------- */

.craft-section.dark-theme {
  background: #0a0a0a;
  color: #fff;
  padding: 100px 0;
}

.craft-step {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  opacity: 0.8;
}

.step-content h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-content p {
  color: #999;
  line-height: 1.7;
}

.craft-image-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.craft-img {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.craft-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.craft-img:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}

.bottom-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}


.customer img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.customer h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
}

.customer span {
  font-size: 0.85rem;
  color: #888;
}

/* --------------------------------------
   CTA SECTION
   -------------------------------------- */

/* --------------------------------------
   MODERN PREMIUM CTA SECTION
   -------------------------------------- */
.steelam-cta-modern {
  padding: 120px 0;
  position: relative;
  background:
    linear-gradient(rgba(10, 10, 10, 0.85), rgba(28, 28, 28, 0.9)),
    url('../img/p-2.webp');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}

.cta-modern-content {
  position: relative;
  z-index: 5;
}

.cta-badge {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(230, 57, 70, 0.15);
  border: 1px solid var(--red);
  border-radius: 50px;
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  animation: fadeInUp 0.8s ease backwards;
}

.cta-modern-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #ffffff;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.cta-modern-title .red-text {
  color: var(--red);
}

.cta-modern-text {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.cta-modern-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s backwards;
}

.btn-modern-primary {
  background: var(--red);
  color: #fff;
  padding: 16px 40px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 20px rgba(204, 0, 0, 0.3);
}

.btn-modern-primary:hover {
  background: var(--red-dark);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(204, 0, 0, 0.5);
  color: #fff;
}

.btn-modern-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 16px 40px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.btn-modern-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .steelam-cta-modern {
    padding: 80px 0;
  }

  .cta-modern-title {
    font-size: 2.5rem;
  }

  .cta-modern-buttons {
    flex-direction: column;
    padding: 0 20px;
  }

  .btn-modern-primary,
  .btn-modern-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ──────────────────────────────────────
   Counter Section (Live Stats)
   ────────────────────────────────────── */
.about-counter-section {
  padding: 60px 0;
  background: #1a1a1a; /* Professional dark charcoal */
  color: #fff;
  border-top: 4px solid var(--red); /* Top branding accent */
}

.counter-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 30px;
}

.counter-item {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 200px;
  justify-content: center;
}

.counter-icon-wrap {
  width: 70px;
  height: 70px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.counter-icon-wrap i {
  font-size: 28px;
  color: #fff;
}

.counter-item:hover .counter-icon-wrap {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-5px);
}

.counter-info {
  display: flex;
  flex-direction: column;
}

.counter-number {
  font-family: var(--font-sans);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: -1px;
}

.counter-label {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-transform: capitalize;
}

@media (max-width: 991px) {
  .counter-item {
    min-width: calc(50% - 30px);
  }
}

@media (max-width: 575px) {
  .counter-item {
    min-width: 100%;
    justify-content: flex-start;
    padding-left: 20%;
  }
}
/* ====== EXTRACTED CSS ====== */
/* Extracted from header.php */
header {
    position: sticky !important;
    top: 0 !important;
    width: 100%;
    z-index: 10000 !important;
}

/* Extracted from footer.php */
.footer-heart { color: red; }
.footer-dev-link { color: #FF9933; font-weight: 600; text-decoration: none; }

/* Extracted from index.php */
.btn-premium-outline-white { border-color: #fff; color: #fff !important; }

/* Extracted from products.php hero background images */
.bg-p1 { background-image: url('../img/steelam/p-1.webp'); }
.bg-p2 { background-image: url('../img/steelam/p-2.webp'); }
.bg-p3 { background-image: url('../img/steelam/p-3.webp'); }
.bg-p4 { background-image: url('../img/steelam/p-4.webp'); }

/* Extracted from contact.php iframe border */
.border-0 { border: 0; }
