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

body {
    font-family: 'Poppins', sans-serif;
}

/* ===== TOP HEADER ===== */
.top-header {
    background: linear-gradient(90deg, #b30000, #ff1a1a);
    color: #fff;
    font-size: 14px;
}

.top-info i {
    color: #e9900a;
    margin-right: 5px;
}

.social-icons a {
    display: inline-block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    margin-left: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #fff;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #e9900a;
    color: #b30000;
    transform: translateY(-3px);
}

/* ===== LOGO ===== */
.logo-text {
    font-size: 40px;
    font-weight: 700;
    color: #b30000;
}

.tagline {
    font-size: 14px;
    color: #777;
}

.logo-text-small {
    font-size: 22px;
    font-weight: 700;
    color: #b30000;
}

/* ===== NAVBAR ===== */
.custom-navbar {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,215,0,0.3);
    border-bottom: 1px solid rgba(255,215,0,0.3);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.custom-navbar .container {
    max-width: 1400px;
}

/* Nav Links */
.navbar-nav .nav-link {
    font-weight: 500;
    color: #333;
    padding: 14px 20px;
    position: relative;
}

/* Underline Effect */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 6px;
    width: 0;
    height: 2px;
    background: #e9900a;
    transition: 0.3s;
    transform: translateX(-50%);
}

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

.navbar-nav .nav-link:hover {
    color: #b30000;
}

/* Dropdown */
.dropdown-menu {
    border-radius: 10px;
    border: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.dropdown-item {
    padding: 10px 20px;
}

.dropdown-item:hover {
    background: #b30000;
    color: #fff;
}

/* Desktop Hover Fix */
@media (min-width: 992px) {
    .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: 0.3s;
    }

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

/* ===== MOBILE ===== */
/* Bigger logo and fonts on mobile */
@media (max-width: 991px) {
  /* Logo */
  .logo-text-small {
    font-size: 28px;
    font-weight: 700;
  }

  /* Top Header Contact */
  .top-header,
  .top-header .top-info span {
    font-size: 16px;
  }

  /* Social Icons bigger */
  .social-icons a {
    width: 42px;
    height: 42px;
    line-height: 42px;
    margin-left: 10px;
    font-size: 18px;
  }

  /* Navbar nav links bigger & spaced */
  .navbar-nav .nav-link {
    font-size: 16px;
    padding: 14px 20px;
  }
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 85vh;
  background: linear-gradient(to right, #fff, #fff8e6);
  padding: 60px 0;
}

/* Title */
.hero-title {
  font-size: 42px;
  font-weight: 700;
  color: #b30000;
  margin-bottom: 15px;
}

/* Subtitle */
.hero-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 25px;
}

/* Buttons */
.btn-#e9900a {
  background: #e9900a;
  color: #b30000;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  transition: 0.3s;
}

.btn-#e9900a:hover {
  background: #b30000;
  color: #fff;
}

/* Image */
.hero-img {
  max-width: 100%;
  border-radius: 10px;
}

/* ===== MOBILE HERO ===== */
@media (max-width: 991px) {

  .hero-section {
    text-align: center;
    padding: 40px 15px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 220px;
  }

  .hero-img {
    margin-top: 20px;
  }
}

/* ===== SLIDER ===== */
.slider-section {
  width: 100%;
  background: #000; /* optional */
}

/* Image settings */
.slider-img {
  width: 100%;
  height: 80vh;
  object-fit: contain; /* 🔥 prevents cropping */
  background: #000; /* fills empty space */
}

/* Arrows styling */
.custom-arrow {
  background-size: 60% 60%;
  filter: invert(1); /* white arrows */
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {

  .slider-img {
    height: auto;         /* 🔥 no forced height */
    max-height: 60vh;     /* keeps it neat */
    object-fit: contain;  /* ensures full image visible */
  }

}

/* ===== WHY CHOOSE US ===== */
.why-choose {
  background: #fff8e6;
  padding: 60px 0;
}

/* Section Title */
.section-title {
  font-size: 34px;
  font-weight: 700;
  color: #b30000;
}

/* Box */
.why-box {
  position: relative;
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  height: 100%;
  border: 1px solid transparent;
  overflow: hidden;
}

/* #e9900a TOP LINE */
.why-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: #e9900a;
  transition: 0.4s;
}

/* ICON */
.why-box .icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.2);
  color: #b30000;
  font-size: 28px;
  transition: 0.3s;
}

/* TEXT */
.why-box h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.why-box p {
  color: #555;
  font-size: 15px;
}

/* HOVER EFFECT */
.why-box:hover::before {
  left: 0;
}

.why-box:hover {
  transform: translateY(-8px);
  border: 1px solid #e9900a;
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.25);
}

.why-box:hover .icon {
  background: #e9900a;
  color: #b30000;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .why-choose {
    padding: 40px 15px;
  }

  .section-title {
    font-size: 26px;
  }

  .why-box {
    padding: 25px 15px;
  }

  .why-box h5 {
    font-size: 18px;
  }

  .why-box p {
    font-size: 14px;
  }

  .why-box .icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 24px;
  }
}

/* ===== SERVICES IMAGE STYLE ===== */
.services {
  background: #fff;
  padding: 60px 0;
}

/* Subtitle */
.section-subtitle {
  color: #666;
  font-size: 16px;
}

/* CARD */
.service-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

/* IMAGE */
.service-img {
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.5s ease;
}

/* CONTENT OVERLAY */
.service-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  text-align: center;
  transition: 0.3s;
}

.service-content h5 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

/* HOVER EFFECT */
.service-card:hover img {
  transform: scale(1.1); /* zoom image */
}

.service-card:hover .service-content {
  background: linear-gradient(to top, rgba(179,0,0,0.9), transparent);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .services {
    padding: 40px 15px;
  }

  .section-title {
    font-size: 26px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .service-img img {
    height: 200px;
  }

  .service-content h5 {
    font-size: 16px;
  }
}

/* Machines Section */
.machines {
  background: #fff8e6;
}

.machine-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.machine-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s;
}

.machine-card:hover img {
  transform: scale(1.1);
}

.machine-name {
  font-size: 16px;
  color: #b30000;
  font-weight: 600;
  padding: 12px 0;
}

/* Overlay */
.machine-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(179,0,0,0.75);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px 12px 0 0;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
  .machine-card img { height: 180px; }
}

@media (max-width: 576px) {
  .machine-card img { height: 150px; }
}

.key-benefits {
  background: #fff;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 2rem;
  text-transform: capitalize;
}

/* Grid container */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Individual cards */
.benefit-card {
  background: linear-gradient(145deg, #cc0000, #7a0000);
  color: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  cursor: default;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  user-select: none;
}

/* Icon circle */
.icon-circle {
  background: rgba(255, 255, 255, 0.25);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-circle i {
  font-size: 28px;
  color: #fff;
}

/* Card heading */
.benefit-card h4 {
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.3;
  text-align: center;
  margin: 0;
}

/* Hover effect */
.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.3);
  filter: brightness(1.1);
}

.faq-section {
  background: #fff8e6;
}

.section-title {
  font-weight: 700;
  color: #b30000;
  font-size: 2rem;
}

/* Bootstrap accordion overrides to fit color scheme */
.accordion-button {
  background-color: #b30000;
  color: white;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background-color: #7a0000;
  color: #fff;
  box-shadow: none;
}

.accordion-button:hover {
  background-color: #cc0000;
  color: white;
}

.accordion-body {
  background-color: #fff;
  color: #333;
  border-radius: 0 0 8px 8px;
}

.contact-form input,
.contact-form textarea {
  border-radius: 6px;
  border: 1.5px solid #b30000;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff1a1a;
  box-shadow: 0 0 5px rgba(179, 0, 0, 0.7);
  outline: none;
}

.btn-danger {
  background: #b30000;
  border: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-danger:hover {
  background: #ff1a1a;
}

.contact-details h5 {
  font-weight: 700;
  margin-bottom: 15px;
}

/* Responsive map container */
.map-responsive iframe {
  border-radius: 12px;
}

/* Small screen tweaks */
@media (max-width: 576px) {
  .contact-details {
    margin-bottom: 30px;
  }
}

/* Instagram Section */
.instagram-section {
  background: linear-gradient(135deg, #fff8e6 0%, #ffffff 52%, #fff0f0 100%);
}

.instagram-feed-box {
  min-height: 430px;
  padding: 18px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(179, 0, 0, 0.12);
  box-shadow: 0 12px 35px rgba(179, 0, 0, 0.08);
}

.instagram-feed-placeholder {
  min-height: 394px;
  height: 100%;
  border: 2px dashed rgba(179, 0, 0, 0.25);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(179, 0, 0, 0.08), rgba(233, 144, 10, 0.12)),
    #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 35px;
}

.instagram-feed-placeholder i {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #b30000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: 18px;
}

.instagram-feed-placeholder h3 {
  color: #b30000;
  font-weight: 700;
  margin-bottom: 12px;
}

.instagram-feed-placeholder p {
  max-width: 420px;
  color: #555;
  margin: 0;
}

.instagram-content {
  padding-left: 18px;
}

.instagram-kicker {
  display: inline-block;
  color: #e9900a;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 12px;
}

.instagram-content h2 {
  color: #b30000;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
}

.instagram-content p {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.instagram-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 26px;
}

.instagram-highlight {
  min-height: 98px;
  padding: 18px 12px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(233, 144, 10, 0.2);
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.instagram-highlight i {
  display: block;
  color: #e9900a;
  font-size: 24px;
  margin-bottom: 10px;
}

.instagram-highlight span {
  color: #333;
  font-weight: 600;
  font-size: 14px;
}

.instagram-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 24px;
  border-radius: 6px;
  background: #b30000;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.instagram-btn:hover {
  background: #e9900a;
  color: #b30000;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .instagram-content {
    padding-left: 0;
  }

  .instagram-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .instagram-feed-box {
    min-height: auto;
    padding: 12px;
  }

  .instagram-feed-placeholder {
    min-height: 320px;
    padding: 24px 16px;
  }

  .instagram-content h2 {
    font-size: 26px;
  }

  .instagram-highlights {
    grid-template-columns: 1fr;
  }
}

/* Footer Styling */

.site-footer {
  font-family: 'Poppins', sans-serif;
}

.footer-logo {
  color: #fff;
}

.footer-heading {
  color: #ffd9d9;
  font-weight: 600;
  font-size: 1.2rem;
}

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

.footer-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffb3b3;
}

.social-icons-footer {
  display: flex;
  gap: 15px;
  font-size: 1.4rem;
}

.social-icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
  background: #ff1a1a;
  color: #fff;
}

/* Responsive */
@media (max-width: 767px) {
  .social-icons-footer {
    justify-content: start;
  }
  .footer-links li {
    margin-bottom: 8px;
  }
}

.cta-section {
  background: linear-gradient(145deg, #cc9c00c9, #ffd903);
}

.floating-btn {
  position: fixed;
  bottom: 20px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  text-decoration: none;
}

/* WhatsApp - Left */
.floating-btn.whatsapp {
  left: 20px;
  background-color: #25D366;
}

/* Call - Right */
.floating-btn.call {
  right: 20px;
  background-color: #007bff;
}

/* Hover effect */
.floating-btn:hover {
  transform: scale(1.1);
}

 .breadcrumb-section {
      background: linear-gradient(145deg, #cc9c00c9, #ffd903);
      color: #fff;
      padding: 60px 0;
      border-radius: 0 0 30px 30px;
      position: relative;
      overflow: hidden;
    }

    /* Decorative blurred shapes */
    .breadcrumb-section::before,
    .breadcrumb-section::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.4;
    }

    .breadcrumb-section::before {
      width: 200px;
      height: 200px;
      background: #ffffff;
      top: -50px;
      left: -50px;
    }

    .breadcrumb-section::after {
      width: 300px;
      height: 300px;
      background: #c084fc;
      bottom: -100px;
      right: -100px;
    }

    .breadcrumb-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: #000;
    }

    .breadcrumb-subtitle {
      opacity: 0.85;
      margin-bottom: 20px;
    }

    .custom-breadcrumb {
      display: inline-flex;
      gap: 8px;
      background: linear-gradient(90deg, #b30000, #ff1a1a);
      padding: 10px 15px;
      border-radius: 50px;
      backdrop-filter: blur(10px);
    }

    .custom-breadcrumb a {
      color: #000;
      text-decoration: none;
      padding: 5px 10px;
      border-radius: 20px;
      transition: all 0.3s ease;
    }

    .custom-breadcrumb a:hover {
      background: rgba(255, 255, 255, 0.25);
    }

    .custom-breadcrumb .active {
      background: #fff;
      color: #b30000;
      font-weight: 600;
    }

    .breadcrumb-divider {
      opacity: 0.6;
      align-self: center;
    }

/* ===== ABOUT + WHY CHOOSE MODERN SECTIONS ===== */
.story-section,
.choose-modern-section {
  position: relative;
  overflow: hidden;
}

.story-section {
  background:
    radial-gradient(circle at top left, rgba(233, 144, 10, 0.16), transparent 28%),
    linear-gradient(180deg, #fffdf8 0%, #fff7ea 100%);
}

.choose-modern-section {
  background:
    radial-gradient(circle at right top, rgba(179, 0, 0, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fff4ef 100%);
}

.section-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(179, 0, 0, 0.08);
  color: #8b1400;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chip-light {
  background: rgba(233, 144, 10, 0.12);
  color: #8d5b00;
}

.modern-section-title {
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1.14;
  font-weight: 700;
  color: #7a0000;
  margin-bottom: 18px;
}

.modern-section-text {
  font-size: 1rem;
  line-height: 1.85;
  color: #5d524b;
  margin-bottom: 16px;
}

.story-visual,
.choose-visual-wrap {
  position: relative;
}

.story-image-main,
.choose-image-frame {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(79, 27, 6, 0.16);
}

.story-image-main::after,
.choose-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(122, 0, 0, 0.16));
}

.story-image-main img,
.choose-image-frame img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
}

.story-image-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 270px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(84, 28, 7, 0.18);
}

.story-badge-label,
.choose-floating-panel span {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.story-image-badge strong {
  color: #7a0000;
  font-size: 1.15rem;
  line-height: 1.4;
}

.story-points {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.story-point-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(179, 0, 0, 0.08);
  box-shadow: 0 18px 40px rgba(93, 35, 7, 0.08);
}

.story-point-card i {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, #b30000, #e9900a);
  color: #fff;
  font-size: 1.35rem;
}

.story-point-card h5,
.choose-feature-card h5 {
  margin-bottom: 8px;
  font-weight: 600;
  color: #241d19;
}

.story-point-card p,
.choose-feature-card p {
  margin: 0;
  color: #655952;
  line-height: 1.7;
  font-size: 0.95rem;
}

.choose-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.choose-feature-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(233, 144, 10, 0.14);
  box-shadow: 0 20px 46px rgba(91, 31, 7, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choose-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(91, 31, 7, 0.14);
}

.choose-feature-card i {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff0d1, #ffd27b);
  color: #9a1800;
  font-size: 1.35rem;
}

.choose-floating-panel {
  position: absolute;
  right: 24px;
  bottom: 24px;
  max-width: 290px;
  padding: 20px 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(179, 0, 0, 0.94), rgba(233, 144, 10, 0.92));
  color: #fff;
  box-shadow: 0 18px 44px rgba(139, 27, 0, 0.24);
}

.choose-floating-panel strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .story-image-main img,
  .choose-image-frame img {
    height: 420px;
  }

  .choose-feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .modern-section-title {
    font-size: 2rem;
  }

  .story-image-main img,
  .choose-image-frame img {
    height: 320px;
  }

  .story-image-badge,
  .choose-floating-panel {
    position: static;
    max-width: none;
    margin-top: 18px;
  }

  .choose-feature-grid {
    grid-template-columns: 1fr;
  }

  .story-point-card {
    padding: 18px;
  }
}

/* ===== VISION MISSION PAGE ===== */
.vm-intro-section,
.vm-dual-section,
.vm-goals-section,
.vm-cta-section {
  position: relative;
  overflow: hidden;
}

.vm-intro-section {
  background:
    radial-gradient(circle at top left, rgba(233, 144, 10, 0.16), transparent 30%),
    linear-gradient(180deg, #fffdf8 0%, #fff6ea 100%);
}

.vm-intro-shell {
  padding: 36px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 28px 70px rgba(87, 30, 5, 0.1);
}

.vm-section-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(179, 0, 0, 0.08);
  color: #8b1400;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chip-gold,
.chip-light-center {
  background: rgba(233, 144, 10, 0.14);
  color: #8d5b00;
}

.vm-main-title {
  font-size: clamp(2.1rem, 3.4vw, 3.7rem);
  line-height: 1.12;
  font-weight: 700;
  color: #7a0000;
  margin-bottom: 18px;
}

.vm-lead-text {
  color: #5c5148;
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 18px;
}

.vm-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.vm-stat-card {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(179, 0, 0, 0.08);
  box-shadow: 0 18px 40px rgba(93, 35, 7, 0.08);
}

.vm-stat-card strong {
  display: block;
  color: #201814;
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.vm-stat-card span {
  color: #655952;
  line-height: 1.7;
  font-size: 0.95rem;
}

.vm-intro-visual,
.vm-goals-visual {
  position: relative;
}

.vm-intro-visual img,
.vm-goals-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(79, 27, 6, 0.16);
}

.vm-floating-note,
.vm-goals-tag {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 300px;
  padding: 20px 22px;
  border-radius: 24px;
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 44px rgba(84, 28, 7, 0.18);
}

.vm-floating-note {
  background: rgba(255, 255, 255, 0.86);
}

.vm-goals-tag {
  background: linear-gradient(135deg, rgba(179, 0, 0, 0.94), rgba(233, 144, 10, 0.92));
  color: #fff;
}

.vm-floating-note span,
.vm-goals-tag span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vm-floating-note strong {
  color: #7a0000;
  font-size: 1.1rem;
  line-height: 1.6;
}

.vm-goals-tag strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.6;
}

.vm-dual-section {
  background:
    radial-gradient(circle at right top, rgba(179, 0, 0, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fff5ef 100%);
}

.vm-focus-card {
  position: relative;
  padding: 34px 30px;
  border-radius: 30px;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 28px 60px rgba(87, 30, 5, 0.12);
}

.vision-card {
  background: linear-gradient(160deg, #7a0000 0%, #c51b00 55%, #f0a31b 100%);
}

.mission-card {
  background: linear-gradient(160deg, #4c0000 0%, #912000 50%, #d67b00 100%);
}

.vm-focus-card::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -30px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.vm-card-icon,
.vm-goal-card i {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.vm-card-icon {
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 1.45rem;
}

.vm-card-label {
  position: relative;
  z-index: 1;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 12px;
}

.vm-focus-card h3,
.vm-cta-card h2 {
  position: relative;
  z-index: 1;
  font-weight: 700;
  line-height: 1.28;
}

.vm-focus-card h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.vm-focus-card p,
.vm-focus-list li,
.vm-cta-card p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
}

.vm-focus-list {
  padding-left: 20px;
  margin: 18px 0 0;
}

.vm-focus-list li + li {
  margin-top: 10px;
}

.vm-goals-section {
  background:
    radial-gradient(circle at left top, rgba(233, 144, 10, 0.15), transparent 28%),
    linear-gradient(180deg, #fffdf9 0%, #fff7f0 100%);
}

.vm-goals-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.vm-goal-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(179, 0, 0, 0.08);
  box-shadow: 0 20px 46px rgba(91, 31, 7, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vm-goal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(91, 31, 7, 0.14);
}

.vm-goal-card i {
  margin-bottom: 16px;
  background: linear-gradient(135deg, #b30000, #f0ab2c);
  color: #fff;
  font-size: 1.35rem;
}

.vm-goal-card h5 {
  margin-bottom: 10px;
  font-weight: 600;
  color: #251d19;
}

.vm-goal-card p {
  margin: 0;
  color: #655952;
  line-height: 1.75;
}

.vm-cta-section {
  background: linear-gradient(180deg, #fff 0%, #fff6ec 100%);
}

.vm-cta-card {
  padding: 48px 28px;
  border-radius: 32px;
  background: linear-gradient(135deg, #7a0000 0%, #b30000 45%, #e9900a 100%);
  box-shadow: 0 28px 70px rgba(105, 26, 0, 0.18);
}

.vm-cta-card h2 {
  max-width: 860px;
  margin: 0 auto 16px;
  color: #fff;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.vm-cta-card p {
  max-width: 760px;
  margin: 0 auto 28px;
}

.vm-cta-btn {
  padding: 12px 28px;
  border-radius: 999px;
  background: #fff;
  color: #9d1600;
  font-weight: 600;
  border: none;
}

.vm-cta-btn:hover {
  background: #fff4df;
  color: #7a0000;
}

@media (max-width: 991px) {
  .vm-intro-shell {
    padding: 26px;
  }

  .vm-intro-visual img,
  .vm-goals-image img {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .vm-stat-grid,
  .vm-goals-grid {
    grid-template-columns: 1fr;
  }

  .vm-intro-visual img,
  .vm-goals-image img {
    height: 300px;
  }

  .vm-floating-note,
  .vm-goals-tag {
    position: static;
    max-width: none;
    margin-top: 18px;
  }

  .vm-focus-card,
  .vm-cta-card {
    padding: 26px 22px;
  }

  .vm-focus-card h3 {
    font-size: 1.45rem;
  }
}

/* ===== GALLERY PAGE ===== */
.gallery-showcase-section {
  background:
    radial-gradient(circle at top left, rgba(233, 144, 10, 0.16), transparent 30%),
    linear-gradient(180deg, #fffdf8 0%, #fff7ec 100%);
}

.gallery-showcase-card {
  padding: 36px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 28px 70px rgba(87, 30, 5, 0.1);
}

.gallery-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(179, 0, 0, 0.08);
  color: #8b1400;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-chip.chip-soft {
  background: rgba(233, 144, 10, 0.14);
  color: #8d5b00;
}

.gallery-main-title,
.gallery-grid-title {
  color: #7a0000;
  font-weight: 700;
}

.gallery-main-title {
  font-size: clamp(2rem, 3.3vw, 3.5rem);
  line-height: 1.12;
  margin-bottom: 18px;
}

.gallery-grid-title {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  margin-bottom: 12px;
}

.gallery-lead-text,
.gallery-grid-text {
  color: #5d524b;
  line-height: 1.85;
}

.gallery-grid-text {
  max-width: 620px;
  margin: 0 auto;
}

.gallery-hero-visual {
  position: relative;
}

.gallery-hero-visual img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(79, 27, 6, 0.16);
}

.gallery-hero-note {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 300px;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 44px rgba(84, 28, 7, 0.18);
}

.gallery-hero-note span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8b1400;
}

.gallery-hero-note strong {
  color: #7a0000;
  font-size: 1.08rem;
  line-height: 1.6;
}

.gallery-grid-wrap {
  padding: 12px 0 10px;
}

.gallery-section-head {
  margin-bottom: 34px;
}

#gallery .col-md-4,
#gallery .col-6 {
  display: flex;
}

.gallery-item {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 0;
  padding: 0;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 22px 55px rgba(91, 31, 7, 0.1);
  cursor: pointer;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(122, 0, 0, 0.26));
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

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

.gallery-item-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.88);
  color: #971700;
  box-shadow: 0 12px 30px rgba(87, 30, 5, 0.18);
}

.gallery-modal .modal-dialog {
  max-width: min(1140px, 96vw);
}

.gallery-modal .modal-content {
  position: relative;
  background: rgba(26, 8, 2, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 36px 80px;
}

.gallery-modal-body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
}

.gallery-modal-body img {
  max-height: 74vh;
  width: auto;
  max-width: 100%;
  border-radius: 22px;
}

.gallery-close-btn,
.gallery-nav-btn {
  position: absolute;
  z-index: 2;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(10px);
  transition: background 0.25s ease, transform 0.25s ease;
}

.gallery-close-btn:hover,
.gallery-nav-btn:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: scale(1.05);
}

.gallery-close-btn {
  top: 18px;
  right: 18px;
}

.gallery-prev-btn {
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-next-btn {
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-prev-btn:hover,
.gallery-next-btn:hover {
  transform: translateY(-50%) scale(1.05);
}

@media (max-width: 991px) {
  .gallery-showcase-card {
    padding: 26px;
  }

  .gallery-hero-visual img {
    height: 360px;
  }

  .gallery-item img {
    height: 240px;
  }

  .gallery-modal .modal-content {
    padding: 32px 70px;
  }
}

@media (max-width: 767px) {
  .gallery-hero-note {
    position: static;
    max-width: none;
    margin-top: 18px;
  }

  .gallery-hero-visual img {
    height: 280px;
  }

  .gallery-item img {
    height: 220px;
  }

  .gallery-modal .modal-content {
    padding: 58px 16px 22px;
    border-radius: 20px;
  }

  .gallery-nav-btn {
    width: 46px;
    height: 46px;
  }

  .gallery-prev-btn {
    left: 10px;
  }

  .gallery-next-btn {
    right: 10px;
  }

  .gallery-close-btn {
    top: 10px;
    right: 10px;
    width: 46px;
    height: 46px;
  }
}

/* ===== CONTACT PAGE ===== */
.contact-showcase-section {
  background:
    radial-gradient(circle at top left, rgba(233, 144, 10, 0.16), transparent 28%),
    linear-gradient(180deg, #fffdf8 0%, #fff7ed 100%);
}

.contact-showcase-card {
  padding: 36px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 28px 70px rgba(87, 30, 5, 0.1);
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(179, 0, 0, 0.08);
  color: #8b1400;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-chip.chip-soft {
  background: rgba(233, 144, 10, 0.14);
  color: #8d5b00;
}

.contact-main-title,
.contact-panel-title {
  color: #7a0000;
  font-weight: 700;
}

.contact-main-title {
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  line-height: 1.12;
  margin-bottom: 18px;
}

.contact-panel-title {
  font-size: 2rem;
  margin-bottom: 12px;
}

.contact-lead-text,
.contact-panel-text {
  color: #5d524b;
  line-height: 1.85;
}

.contact-hero-panel {
  padding: 32px;
  border-radius: 30px;
  background: linear-gradient(135deg, #7a0000 0%, #b30000 48%, #e9900a 100%);
  color: #fff;
  box-shadow: 0 28px 60px rgba(105, 26, 0, 0.18);
}

.contact-hero-panel span,
.contact-info-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-hero-panel strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.55;
}

.contact-info-box {
  padding: 30px 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(179, 0, 0, 0.08);
  box-shadow: 0 22px 55px rgba(91, 31, 7, 0.08);
}

.contact-info-accent {
  background: linear-gradient(145deg, rgba(255,255,255,0.94), rgba(255, 244, 224, 0.94));
}

.contact-info-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #b30000, #e9900a);
  color: #fff;
  font-size: 1.45rem;
}

.contact-info-box h3 {
  color: #241d19;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-info-box p,
.contact-info-box a {
  color: #5d524b;
  line-height: 1.9;
  text-decoration: none;
}

.contact-info-box a:hover {
  color: #9d1600;
}

.contact-content-wrap {
  padding: 8px 0 10px;
}

.contact-form-panel,
.contact-map-panel {
  padding: 32px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(179, 0, 0, 0.08);
  box-shadow: 0 24px 60px rgba(91, 31, 7, 0.08);
}

.contact-form .form-control {
  min-height: 60px;
  border-radius: 18px;
  border: 1px solid rgba(179, 0, 0, 0.18);
  padding-left: 18px;
}

.contact-form textarea.form-control {
  min-height: 180px;
  padding-top: 16px;
}

.contact-submit-btn {
  padding: 13px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #b30000, #e9900a);
  color: #fff;
  font-weight: 600;
  border: 0;
}

.contact-submit-btn:hover {
  color: #fff;
  filter: brightness(1.05);
}

.contact-map-frame {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 20px 50px rgba(91, 31, 7, 0.12);
}

.contact-map-frame iframe {
  display: block;
  min-height: 420px;
}

@media (max-width: 991px) {
  .contact-showcase-card,
  .contact-form-panel,
  .contact-map-panel {
    padding: 26px;
  }
}

@media (max-width: 767px) {
  .contact-panel-title {
    font-size: 1.7rem;
  }

  .contact-hero-panel {
    padding: 24px;
  }

  .contact-map-frame iframe {
    min-height: 320px;
  }
}

/* ===== SERVICES PAGE ===== */
.services-showcase-section,
.services-process-section,
.services-cta-section {
  position: relative;
  overflow: hidden;
}

.services-showcase-section {
  background:
    radial-gradient(circle at top left, rgba(233, 144, 10, 0.16), transparent 30%),
    linear-gradient(180deg, #fffdf8 0%, #fff7ec 100%);
}

.services-showcase-card {
  padding: 36px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 28px 70px rgba(87, 30, 5, 0.1);
}

.services-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(179, 0, 0, 0.08);
  color: #8b1400;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-chip.chip-soft,
.services-chip.chip-center {
  background: rgba(233, 144, 10, 0.14);
  color: #8d5b00;
}

.services-main-title {
  color: #7a0000;
  font-weight: 700;
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  line-height: 1.12;
  margin-bottom: 18px;
}

.services-lead-text {
  color: #5d524b;
  line-height: 1.9;
}

.services-hero-panel {
  padding: 32px;
  border-radius: 30px;
  background: linear-gradient(135deg, #7a0000 0%, #b30000 48%, #e9900a 100%);
  color: #fff;
  box-shadow: 0 28px 60px rgba(105, 26, 0, 0.18);
}

.services-hero-panel span,
.services-process-note span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-hero-panel strong,
.services-process-note strong {
  display: block;
  font-size: 1.4rem;
  line-height: 1.6;
}

.services-grid-wrap {
  padding: 8px 0 10px;
}

.service-detail-card {
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(179, 0, 0, 0.08);
  box-shadow: 0 24px 60px rgba(91, 31, 7, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 66px rgba(91, 31, 7, 0.14);
}

.service-detail-image {
  overflow: hidden;
}

.service-detail-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.service-detail-card:hover .service-detail-image img {
  transform: scale(1.08);
}

.service-detail-body {
  padding: 26px 24px 28px;
}

.service-detail-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #b30000, #e9900a);
  color: #fff;
  font-size: 1.35rem;
}

.service-detail-body h3,
.services-step-card h5,
.services-cta-card h2 {
  color: #241d19;
  font-weight: 700;
}

.service-detail-body h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.service-detail-body p,
.services-step-card p,
.services-cta-card p {
  color: #5d524b;
  line-height: 1.8;
  margin: 0;
}

.services-process-section {
  background:
    radial-gradient(circle at right top, rgba(179, 0, 0, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fff5ef 100%);
}

.services-process-visual {
  position: relative;
}

.services-process-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(79, 27, 6, 0.16);
}

.services-process-note {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 300px;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 44px rgba(84, 28, 7, 0.18);
}

.services-process-note strong {
  color: #7a0000;
  font-size: 1.08rem;
}

.services-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.services-step-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(233, 144, 10, 0.14);
  box-shadow: 0 20px 46px rgba(91, 31, 7, 0.08);
}

.services-step-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff0d1, #ffd27b);
  color: #9a1800;
  font-weight: 700;
}

.services-step-card h5 {
  margin-bottom: 10px;
}

.services-cta-section {
  background: linear-gradient(180deg, #fff 0%, #fff6ec 100%);
}

.services-cta-card {
  padding: 48px 28px;
  border-radius: 32px;
  background: linear-gradient(135deg, #7a0000 0%, #b30000 45%, #e9900a 100%);
  box-shadow: 0 28px 70px rgba(105, 26, 0, 0.18);
}

.services-cta-card h2 {
  max-width: 860px;
  margin: 0 auto 16px;
  color: #fff;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.services-cta-card p {
  max-width: 760px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.88);
}

.services-cta-btn {
  padding: 12px 28px;
  border-radius: 999px;
  background: #fff;
  color: #9d1600;
  font-weight: 600;
  border: none;
}

.services-cta-btn:hover {
  background: #fff4df;
  color: #7a0000;
}

@media (max-width: 991px) {
  .services-showcase-card {
    padding: 26px;
  }

  .services-process-visual img {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .services-process-note {
    position: static;
    max-width: none;
    margin-top: 18px;
  }

  .services-steps-grid {
    grid-template-columns: 1fr;
  }

  .services-process-visual img {
    height: 300px;
  }

  .services-cta-card {
    padding: 32px 22px;
  }
}

