/* ========================================
   SS Enterprises - Paintstudio Bhubaneswar
   Version: 1.2.6
   Last Updated: 2026-02-19
   Color Scheme: Red (#DC2626) & Navy Blue (#0F1D3D)
   Font: Inter
   ======================================== */

:root {
  --navy: #0F1D3D;
  --navy-light: #1A2D5A;
  --navy-dark: #0A1428;
  --red: #DC2626;
  --red-dark: #B91C1C;
  --red-light: #EF4444;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --shadow-sm: 0 1px 3px rgba(15,29,61,0.08);
  --shadow-md: 0 4px 20px rgba(15,29,61,0.1);
  --shadow-lg: 0 10px 40px rgba(15,29,61,0.15);
  --shadow-xl: 0 20px 60px rgba(15,29,61,0.2);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-700);
  line-height: 1.7;
  overflow-x: clip;
  max-width: 100vw;
  width: 100%;
}

section {
  scroll-margin-top: 70px;
}

a {
  color: var(--red);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--red-dark);
}

img {
  max-width: 100%;
}

.text-accent {
  color: var(--red);
}


/* ========== NAVBAR ========== */
.navbar {
  background: rgba(15, 29, 61, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  transition: var(--transition);
  border-bottom: 3px solid var(--red);
}

.navbar.scrolled {
  background: rgba(15, 29, 61, 0.98);
  padding: 8px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.brand-logo {
  height: 52px;
  width: auto;
  transition: var(--transition);
  filter:
    drop-shadow(0 0 1px #fff)
    drop-shadow(0 0 2px #fff)
    drop-shadow(0 0 4px rgba(255,255,255,0.6));
}

.navbar.scrolled .brand-logo {
  height: 44px;
}

.navbar .nav-link {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 16px !important;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #fff !important;
  background: rgba(220, 38, 38, 0.15);
}

.navbar .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}

.navbar-toggler {
  border: none !important;
  padding: 6px 10px;
  font-size: 1.5rem;
  color: #fff;
  outline: none !important;
  box-shadow: none !important;
}

.btn-call-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
}

.btn-call-mobile:hover {
  background: var(--red-dark);
  color: #fff;
  transform: scale(1.08);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-cta:hover {
  background: var(--red-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

/* Mobile Menu */
@media (max-width: 991.98px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 29, 61, 0.98);
    backdrop-filter: blur(20px);
    padding: 16px;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-xl);
  }

  .navbar .nav-link {
    padding: 12px 16px !important;
    font-size: 1rem;
  }

  .brand-logo {
    height: 34px;
  }
}


/* ========== HERO ========== */
.hero-section {
  position: relative;
  background: url('https://images.unsplash.com/photo-1562259949-e8e7689d7828?w=1920&h=1080&fit=crop&q=85') center center/cover no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: visible;
  overflow-x: clip;
}

.hero-row {
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 29, 61, 0.92) 0%, rgba(15, 29, 61, 0.82) 50%, rgba(15, 29, 61, 0.7) 75%, rgba(220, 38, 38, 0.18) 100%);
  z-index: 0;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(220, 38, 38, 0.06) 0%, transparent 70%);
}

.hero-section .container {
  z-index: 1;
  overflow: visible;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(220, 38, 38, 0.12);
  color: var(--red-light);
  font-weight: 600;
  font-size: 0.78rem;
  padding: 7px 18px;
  border-radius: 50px;
  border: 1px solid rgba(220, 38, 38, 0.25);
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--red-light);
  border-radius: 50%;
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(1.6rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.hero-title .text-accent {
  background: linear-gradient(135deg, var(--red-light), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  max-width: 520px;
  letter-spacing: 0.01em;
}

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  transition: var(--transition);
  text-decoration: none;
  border: 2px solid var(--red);
}

.btn-primary-custom:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: var(--transition);
  text-decoration: none;
}

.btn-outline-custom:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

/* Enquiry Card */
.enquiry-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 32px;
  overflow: visible;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.enquiry-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.enquiry-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.custom-input {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #fff !important;
  border-radius: var(--radius-sm) !important;
  padding: 14px 16px !important;
  font-size: 0.95rem !important;
  margin-bottom: 14px;
  transition: var(--transition);
}

.custom-input::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
}

.custom-input:focus {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15) !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

.btn-submit {
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 24px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-submit:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

/* Hero Right Banner Slider */
.hero-banner-wrap {
  position: relative;
  height: 100%;
  background: transparent;
  padding: 30px 20px 40px 30px;
  isolation: isolate;
  overflow: visible;
}

.hero-banner-wrap::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 18px;
  width: 86px;
  height: 146px;
  background: var(--red);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 0;
}

.hero-banner-wrap::after {
  content: '';
  position: absolute;
  right: 12px;
  bottom: 22px;
  width: 86px;
  height: 146px;
  background: var(--red);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  z-index: 0;
}

.hero-banner-frame {
  position: relative;
  z-index: 1;
  isolation: isolate;
  height: clamp(320px, 58vh, 480px);
  background: #fff;
  padding: 8px;
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.hero-banner-frame::after {
  content: '';
  position: absolute;
  left: 12%;
  right: 0;
  bottom: -10px;
  height: 12px;
  background: var(--red);
  clip-path: polygon(0 0, 100% 0, 98% 100%, 2% 100%);
  z-index: -1;
}

.hero-banner-carousel {
  height: 100%;
  overflow: hidden;
  background: var(--navy-dark);
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
}

.hero-banner-inner,
.hero-banner-carousel .carousel-item {
  height: 100%;
}

.hero-banner-carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-experience-badge {
  display: flex;
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(145deg, #1e3a8a, #1c3296);
  color: #fff;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 3;
  box-shadow: 0 12px 30px rgba(10, 20, 60, 0.45);
  border: 4px solid rgba(255, 255, 255, 0.15);
  pointer-events: none;
}

.hero-experience-badge__big {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
}

.hero-experience-badge__small {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.25;
  margin-top: 2px;
}


/* ========== STATS ========== */
.stats-section {
  background: var(--navy);
  padding: 0;
  position: relative;
  z-index: 2;
  margin-top: -60px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.stat-card {
  padding: 36px 20px;
  text-align: center;
  border-right: 1px solid var(--gray-200);
  transition: var(--transition);
}

.stat-card:last-child {
  border-right: none;
}

.stat-card:hover {
  background: var(--red);
}

.stat-card:hover .stat-number,
.stat-card:hover .stat-label {
  color: #fff;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
  transition: var(--transition);
}

.stat-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

@media (max-width: 767.98px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-card {
    padding: 24px 16px;
  }
  .stat-card:nth-child(2) {
    border-right: none;
  }
  .stat-card:nth-child(1),
  .stat-card:nth-child(2) {
    border-bottom: 1px solid var(--gray-200);
  }
  .stat-number {
    font-size: 2rem;
  }
  .stats-section {
    margin-top: -40px;
  }
}


/* ========== SECTIONS ========== */
.section-light {
  padding: 100px 0;
  background: var(--off-white);
}

.section-dark {
  padding: 100px 0;
  background: var(--navy);
}

.section-badge {
  display: inline-block;
  background: rgba(220, 38, 38, 0.08);
  color: var(--red);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 6px 20px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.section-badge--light {
  background: rgba(220, 38, 38, 0.15);
  color: var(--red-light);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}


/* ========== BRAND CARDS ========== */
.brand-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  height: 100%;
}

.brand-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
}

.brand-card--hw {
  border-left: 4px solid var(--navy);
}

.brand-card--hw:hover {
  border-left-color: var(--red);
}

.brand-logo-wrap {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.brand-logo-img {
  max-height: 58px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: saturate(1.05);
}

.brand-logo-wrap--hw {
  height: 72px;
}

.brand-logo-img--hw {
  max-height: 66px;
  max-width: 190px;
}

.brand-card:hover .brand-logo-wrap {
  transform: translateY(-2px) scale(1.03);
}

.brand-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: #fff;
  transition: var(--transition);
}

.brand-card:hover .brand-icon {
  transform: scale(1.1) rotate(-5deg);
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.brand-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.brand-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.brand-link:hover {
  color: var(--red-dark);
  gap: 10px;
}


/* ========== PRODUCT CARDS ========== */
.product-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.product-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-8px);
  border-color: var(--red);
}

.product-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--red), #FF6B6B);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.7rem;
  color: #fff;
  transition: var(--transition);
}

.product-card:hover .product-icon {
  transform: scale(1.1);
  border-radius: 16px;
}

.product-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}


/* ========== SERVICE CARDS ========== */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--navy));
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(220, 38, 38, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--red);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--red);
  color: #fff;
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin-bottom: 0;
}


/* ========== GALLERY ========== */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 29, 61, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

.gallery-item.hidden {
  display: none;
}

/* Gallery Nav Buttons */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(220, 38, 38, 0.8);
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-nav:hover {
  background: var(--red);
}

.gallery-prev {
  left: 12px;
}

.gallery-next {
  right: 12px;
}

@media (max-width: 767.98px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (max-width: 575.98px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
}


/* ========== REVIEWS ========== */
#testimonialCarousel {
  padding-bottom: 20px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}

.review-stars {
  font-size: 1.4rem;
  color: #F59E0B;
  margin-bottom: 20px;
  letter-spacing: 4px;
}

.review-text {
  font-size: 1.1rem;
  color: var(--gray-600);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 28px;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.review-avatar {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
}

.review-author h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.review-author span {
  font-size: 0.82rem;
  color: var(--gray-500);
}

.review-indicators {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding: 0;
}

.review-indicators [data-bs-target] {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background-color: var(--gray-300) !important;
  opacity: 1 !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  flex-shrink: 0;
  transition: var(--transition);
}

.review-indicators [data-bs-target].active {
  width: 32px !important;
  border-radius: 6px !important;
  background-color: var(--red) !important;
}


/* ========== FAQ ========== */
.faq-item {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: var(--radius-sm) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-btn {
  background: transparent !important;
  color: #fff !important;
  font-weight: 600;
  font-size: 1rem;
  padding: 20px 24px !important;
  box-shadow: none !important;
  border: none !important;
}

.faq-btn::after {
  filter: invert(1);
}

.faq-btn:not(.collapsed) {
  color: var(--red-light) !important;
}

.faq-body {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  padding: 0 24px 20px !important;
  line-height: 1.8;
}


/* ========== CONTACT ========== */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}

.contact-heading {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 2px;
}

.contact-subheading {
  font-size: 0.9rem;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(220, 38, 38, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--red);
}

.contact-item strong {
  font-size: 0.82rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 2px;
}

.contact-item p {
  font-size: 0.92rem;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 0;
}

.contact-item a {
  color: var(--navy);
  font-weight: 600;
}

.contact-item a:hover {
  color: var(--red);
}

.enquiry-card--contact {
  background: linear-gradient(145deg, rgba(36, 55, 97, 0.98), rgba(91, 101, 127, 0.92));
  border-color: rgba(255, 255, 255, 0.16);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  transition: var(--transition);
  text-decoration: none;
}

.btn-whatsapp:hover {
  background: #1da851;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.map-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  min-height: 400px;
}


/* ========== FOOTER ========== */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}

.footer-logo {
  height: 60px;
  width: auto;
  transition: var(--transition);
  filter:
    drop-shadow(0 0 1px #fff)
    drop-shadow(0 0 2px #fff)
    drop-shadow(0 0 6px rgba(255,255,255,0.5));
}

.footer-about {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--red-light);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact li i {
  color: var(--red);
  font-size: 0.9rem;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.08);
  margin: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.footer-bottom a {
  color: var(--red-light);
  font-weight: 600;
}

.footer-bottom a:hover {
  color: var(--red);
}


/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 16px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: var(--transition);
  text-decoration: none;
  animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
}


/* ========== RESPONSIVE ========== */
@media (max-width: 991.98px) {
  .section-light,
  .section-dark {
    padding: 70px 0;
  }

  .hero-section {
    background-attachment: scroll;
  }

  .hero-row {
    min-height: auto;
    padding-top: 90px;
    padding-bottom: 50px;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    background-attachment: scroll;
  }

  .hero-section .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-row {
    --bs-gutter-x: 0;
    padding-top: 75px;
    padding-bottom: 40px;
  }

  .hero-banner-wrap {
    padding: 20px 15px 30px 20px;
  }

  .hero-banner-wrap::before {
    top: 12px;
    left: 12px;
    width: 54px;
    height: 90px;
  }

  .hero-banner-wrap::after {
    right: 8px;
    bottom: 16px;
    width: 54px;
    height: 90px;
  }

  .hero-banner-frame {
    height: 280px;
    padding: 6px;
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  }

  .hero-banner-frame::after {
    left: 8%;
    bottom: -8px;
    height: 10px;
  }

  .hero-banner-carousel {
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  }

  .hero-experience-badge {
    display: flex;
    top: 50%;
    right: 2px;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
  }

  .hero-experience-badge__big {
    font-size: 1.6rem;
  }

  .hero-experience-badge__small {
    font-size: 0.58rem;
    line-height: 1.2;
  }

  .hero-section .col-lg-7 {
    text-align: center;
  }

  .hero-section .d-flex.flex-wrap {
    justify-content: center;
  }

  .hero-section .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 4px 12px;
    margin-bottom: 10px;
  }

  .hero-title {
    font-size: 2.45rem !important;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 0.88rem;
    line-height: 1.6;
    max-width: 100%;
  }

  .hero-section .btn-primary-custom,
  .hero-section .btn-outline-custom {
    padding: 11px 18px;
    font-size: 0.85rem;
    width: 100%;
    justify-content: center;
    white-space: nowrap;
  }

  .enquiry-card {
    padding: 20px 16px;
    margin-top: 4px;
    margin-bottom: 8px;
    text-align: center;
  }

  .enquiry-card form {
    text-align: left;
  }

  .enquiry-title {
    font-size: 1.15rem;
  }

  .enquiry-desc {
    font-size: 0.82rem;
    margin-bottom: 16px;
  }

  .custom-input {
    padding: 11px 12px !important;
    font-size: 0.88rem !important;
    margin-bottom: 10px;
  }

  .btn-submit {
    padding: 13px 16px;
    font-size: 0.92rem;
    display: block;
    width: 100% !important;
    box-sizing: border-box;
  }
}

@media (max-width: 575.98px) {
  .section-light,
  .section-dark {
    padding: 50px 0;
  }

  .enquiry-card {
    padding: 20px 16px;
  }

  .contact-info-card {
    padding: 28px 20px;
  }

  .review-card {
    padding: 28px 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}


/* ========== SCROLL ANIMATIONS ========== */
[data-aos] {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
}
