/* ===================================
   DELHI AUTOMATION SYSTEMS
   Main Stylesheet
   =================================== */

/* ---------- CSS Variables ---------- */
:root {
  --navy: #0a1e3d;
  --navy-light: #122e5c;
  --navy-dark: #061529;
  --orange: #e87a1e;
  --orange-hover: #d0690f;
  --orange-light: #f5a623;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --gray-100: #f1f3f5;
  --gray-200: #e2e6ea;
  --gray-300: #ced4da;
  --gray-500: #7b8a9e;
  --gray-700: #3d4f65;
  --text-dark: #1a2332;
  --text-body: #4a5568;
  --shadow-sm: 0 2px 8px rgba(10, 30, 61, 0.06);
  --shadow-md: 0 4px 20px rgba(10, 30, 61, 0.1);
  --shadow-lg: 0 8px 40px rgba(10, 30, 61, 0.14);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
}
/* ---------- image carousel control ---------- */
.carousel-container {
  width: 100%;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-container .carousel,
.carousel-container .carousel-inner,
.carousel-container .carousel-item {
  width: 100%;
  height: 100%;
}

.carousel-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 768px) {
  .carousel-container {
    height: 250px;
  }
}

.info-section {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.left-content {
  width: 50%;
}

.offers-panel {
  border-radius: 16px;
  overflow: hidden; /* FIX border issue */
  border: 1px solid #ddd;
  background: #fff;
}

/* HEADER (STATIC) */
.notice-header {
  padding: 16px;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 2;
}

.notice-subtitle {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.notice-title {
  font-size: 1.5rem;
  margin-bottom: 0;
  color: var(--navy);
}

/* WRAPPER */
.notice-content-wrapper {
  overflow: visible !important;
}

/* SCROLL AREA */
#noticeContent {
  max-height: 300px;
  overflow-y: auto;
}

/* SCROLLBAR (optional but better UX) */
#noticeContent::-webkit-scrollbar {
  width: 5px;
}
#noticeContent::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .info-section {
    flex-direction: column;
  }

  .left-content,
  .right-notice {
    width: 100%;
    overflow: visible !important;
  }
}

/* ---------- Why Choose Us background ---------- */
.why-choose-bg {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.why-choose-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.60), rgba(0, 0, 0, 0.60)),
    url("../images/abocaro.png") center center / cover no-repeat;
  z-index: 0;
}

.why-choose-content {
  position: relative;
  z-index: 1;
}

.why-choose-bg .section-subtitle,
.why-choose-bg .section-title,
.why-choose-bg .section-desc {
  color: #fff;
}

.why-choose-bg .about-feature-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  padding: 30px 24px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.why-choose-bg .feature-icon {
  font-size: 32px;
  margin-bottom: 15px;
  color: #0d6efd;
}

.why-choose-bg h4 {
  margin-bottom: 12px;
}

.why-choose-bg .about-feature-card p {
  margin-bottom: 0;
}

/* Desktop parallax-like fixed effect */
@media (min-width: 992px) {
  .why-choose-bg::before {
    background-attachment: fixed;
  }
}

/* Mobile fallback */
@media (max-width: 991px) {
  .why-choose-bg::before {
    background-attachment: scroll;
  }
}

/* ---------- category-card-img ---------- */
.category-card-img {
  width: 100%;
  height: 160px;
  /* Fixed height for uniform cards */
  object-fit: contain;
  object-position: center;
  background: #f8f9fa;
  border-radius: 12px;
  margin-bottom: 16px;
  display: block;
}

#mainCarousel {
  overflow: hidden;
}

#mainCarousel .carousel-inner,
#mainCarousel .carousel-item {
  height: 420px;
}

#mainCarousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: transparent;
}

#heroCarousel {
  overflow: hidden;
}

#heroCarousel .carousel-inner,
#heroCarousel .carousel-item {
  height: 420px;
}

#heroCarousel .carousel-item img.carousel-fit {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: transparent;
}

@media (max-width: 991px) {
  #mainCarousel .carousel-inner,
  #mainCarousel .carousel-item,
  #heroCarousel .carousel-inner,
  #heroCarousel .carousel-item {
    height: 280px;
  }
}

.carousel-wrapper .carousel-control-prev-icon,
.carousel-wrapper .carousel-control-next-icon {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.18));
}

.hero-offers-section {
  background: var(--off-white);
}

.notice-board {
  background: #fff;
  border: 1px solid rgba(13, 110, 253, 0.12);
}

.notice-board .section-title {
  font-size: 1.75rem;
}

.notice-item {
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.notice-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(13, 110, 253, 0.18);
}

.notice-date {
  font-size: 0.9rem;
}

.badge.bg-soft-primary {
  background: rgba(13, 110, 253, 0.08);
}

.badge.bg-soft-secondary {
  background: rgba(108, 117, 125, 0.08);
}

@media (max-width: 991px) {
  .notice-board {
    padding: 30px 24px;
  }
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

h1 {
  font-size: 2.75rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.2rem;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: var(--navy);
}

.section-desc {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  color: var(--gray-500);
  font-size: 1.05rem;
}

/* ---------- Section Spacing ---------- */
.section-padding {
  padding: 80px 0;
}

/* ---------- Buttons ---------- */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  padding: 13px 32px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  letter-spacing: 0.3px;
}

.btn-primary-custom:hover {
  background: var(--orange-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 122, 30, 0.35);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  padding: 12px 30px;
  border: 2px solid var(--navy);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-outline-custom:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--navy);
  padding: 13px 32px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ---------- Navbar ---------- */
.navbar-custom {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
  transition: all var(--transition);
  position: fixed !important;
  top: 48px !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 1050 !important;
}

body {
  padding-top: 140px !important;
}

.navbar-custom.scrolled {
  box-shadow: var(--shadow-md);
  padding: 8px 0;
}

.navbar-custom .navbar-brand {
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 70%;
  overflow: hidden;
}

.navbar-custom .navbar-brand img {
  height: 40px;
  width: auto;
  max-width: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.navbar-custom .navbar-brand .brand-text {
  line-height: 1.15;
}

.navbar-custom .navbar-brand .brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
}

.navbar-custom .navbar-brand .brand-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--gray-500);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.navbar-custom .nav-link {
  color: var(--gray-700);
  font-weight: 500;
  padding: 8px 18px !important;
  font-size: 0.92rem;
  position: relative;
  transition: color var(--transition);
}

.navbar-custom .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--navy);
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-custom .nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  border-radius: 50px;
  padding: 8px 22px !important;
  margin-left: 10px;
  font-weight: 600;
}

.navbar-custom .nav-cta::after {
  display: none;
}

.navbar-custom .nav-cta:hover {
  background: var(--orange-hover);
  color: var(--white) !important;
}

/* Brands Dropdown Hover Effect (Desktop) */
@media (min-width: 992px) {
  .navbar-nav .nav-item.dropdown:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.navbar-custom .dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 10px 0;
  transition: all 0.3s ease;
  min-width: 200px;
}

@media (min-width: 992px) {
  .navbar-custom .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
  }
}

.navbar-custom .dropdown-item {
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all 0.2s ease;
}

.navbar-custom .dropdown-item:hover {
  background: var(--gray-100);
  color: var(--orange);
  padding-left: 25px;
}

/* Search Bar Styles */
.nav-search .form-control {
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.9rem;
  border: 1px solid var(--gray-300);
  width: 200px;
  transition: all 0.3s ease;
}

.nav-search .form-control:focus {
  width: 250px;
  border-color: var(--orange);
  box-shadow: 0 0 0 0.2rem rgba(232, 122, 30, 0.15);
}

#searchSuggestions {
  border-radius: var(--radius);
  margin-top: 8px;
  border: none;
  overflow: hidden;
}

.suggestion-item {
  transition: background 0.2s ease;
}

.suggestion-item:hover {
  background: var(--gray-100);
}

.top-bar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  padding: 6px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1051;
  height: auto;
  min-height: 48px;
}

.top-bar a,
.top-bar a:visited {
  color: rgba(255, 255, 255, 0.9);
  margin-right: 20px;
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  text-decoration: none;
}

.top-bar a:hover,
.top-bar a:focus {
  color: var(--orange);
  text-decoration: none;
}

.top-bar i {
  margin-right: 5px;
  color: var(--orange);
}

.hero-offers-card {
  border: 2px solid #333;
  box-shadow: 0 25px 55px rgba(13, 110, 253, 0.08);
  border-radius: 30px;
}


/* ---------- Hero Section ---------- */
.hero-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 122, 30, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 122, 30, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-section .hero-content {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  color: var(--white);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  line-height: 1.15;
}

.hero-section h1 span {
  color: var(--orange);
}

.hero-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-section .hero-image {
  position: relative;
  z-index: 2;
}

.hero-section .hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 122, 30, 0.15);
  color: var(--orange-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(232, 122, 30, 0.25);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
}

.hero-stat .label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- About Preview (Parallax) ---------- */
.about-preview {
  position: relative;
  background: url('../images/parallax-bg.jpg') center center / cover no-repeat;
  background-attachment: fixed;
  padding: 100px 0;
}

.about-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 30, 61, 0.88) 0%, rgba(18, 46, 92, 0.82) 50%, rgba(6, 21, 41, 0.92) 100%);
  z-index: 1;
}

.about-preview>.container {
  position: relative;
  z-index: 2;
}

.about-preview-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-preview-card .about-image {
  flex-shrink: 0;
  width: 360px;
}

.about-preview-card .about-image img {
  border-radius: var(--radius);
  width: 100%;
  height: 280px;
  object-fit: cover;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.about-preview-card .about-text .section-subtitle {
  color: var(--orange-light);
}

.about-preview-card .about-text h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.about-preview-card .about-text p {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

.about-check-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.about-check-list li {
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.about-check-list li i {
  color: var(--orange);
  font-size: 1rem;
}

.about-preview .btn-outline-custom {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.about-preview .btn-outline-custom:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* ---------- Category Cards ---------- */
.category-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 35px 25px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
  height: 100%;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.category-card .icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  transition: all var(--transition);
}

.category-card:hover .icon-wrapper {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-hover) 100%);
}

.category-card .icon-wrapper i {
  color: var(--white);
  font-size: 1.75rem;
}

.category-card h4 {
  color: var(--navy);
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.category-card p {
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ---------- Brand Logos ---------- */
.brand-section {
  background: var(--off-white);
}

.brand-logo-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 25px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.brand-logo-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
  transform: translateY(-3px);
}

.brand-logo-card img {
  max-height: 50px;
  width: auto;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.brand-logo-card:hover img {
  opacity: 1;
}

.brand-logo-card .brand-name {
  margin-top: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 122, 30, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section h2 {
  color: var(--white);
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-dark);
  padding: 60px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer h5 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.footer p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.footer-contact-item a:hover {
  color: var(--orange);
}

.footer-contact-item i {
  color: var(--orange);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  margin-top: 40px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.admin-btn {
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 6px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
  text-decoration: none;
  display: inline-block;
}

.admin-btn:hover {
  background: #1d3557;
  color: white;
  border-color: #1d3557;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  margin-right: 8px;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---------- Page Header ---------- */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 122, 30, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.page-header h1 {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  position: relative;
}

.page-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.breadcrumb-custom {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.2rem;
  position: relative;
}

.breadcrumb-custom a,
.breadcrumb-custom span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-custom a:hover {
  color: var(--orange);
}

.breadcrumb-custom .separator {
  color: rgba(255, 255, 255, 0.3);
}

/* ---------- About Page ---------- */
.about-feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  height: 100%;
  transition: all var(--transition);
}

.about-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}

.about-feature-card .feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--orange), var(--orange-hover));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.about-feature-card .feature-icon i {
  color: var(--white);
  font-size: 1.4rem;
}

.about-feature-card h4 {
  margin-bottom: 0.6rem;
  color: var(--navy);
}

.about-feature-card p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.about-content-section img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.vision-mission-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px 35px;
  height: 100%;
  border-left: 4px solid var(--orange);
}

.vision-mission-card h3 {
  color: var(--navy);
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.vision-mission-card p {
  line-height: 1.8;
}

/* ---------- Products Page ---------- */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.product-card .product-image {
  height: 200px;
  overflow: hidden;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

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

.product-card .product-body {
  padding: 22px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card .product-category-badge {
  display: inline-block;
  background: rgba(232, 122, 30, 0.1);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  width: fit-content;
}

.product-card h4 {
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.product-card p {
  color: var(--gray-500);
  font-size: 0.88rem;
  line-height: 1.6;
  flex: 1;
}

.product-card .btn-enquire {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 14px;
  transition: all var(--transition);
  width: 100%;
  text-align: center;
  border: none;
  cursor: pointer;
}

.product-card .btn-enquire:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

.product-category-header {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 25px 30px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-left: 4px solid var(--orange);
}

.product-category-header i {
  font-size: 1.5rem;
  color: var(--orange);
}

.product-category-header h3 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: 1.3rem;
}

.catalog-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-hover));
  border-radius: var(--radius-lg);
  padding: 45px;
  text-align: center;
  color: var(--white);
}

.catalog-cta h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.catalog-cta p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

/* ---------- Contact Page ---------- */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 25px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  text-align: center;
  height: 100%;
  transition: all var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}

.contact-info-card .icon-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.contact-info-card .icon-circle i {
  color: var(--white);
  font-size: 1.25rem;
}

.contact-info-card h5 {
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-info-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 0;
  line-height: 1.6;
}

.contact-info-card a {
  color: var(--orange);
  font-weight: 500;
}

.contact-info-card a:hover {
  color: var(--orange-hover);
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 45px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.contact-form-wrapper h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.contact-form-wrapper .form-subtitle {
  color: var(--gray-500);
  margin-bottom: 2rem;
}

.form-control-custom {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  transition: all var(--transition);
  color: var(--text-dark);
  background: var(--white);
}

.form-control-custom:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 122, 30, 0.1);
  outline: none;
}

.form-control-custom::placeholder {
  color: var(--gray-300);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 400px;
}

.contact-map iframe {
  border: none;
  width: 100%;
  height: 100%;
  min-height: 400px;
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed !important;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  color: var(--white);
  font-size: 1.6rem;
  /* Ensure it floats over content, not in flow */
  float: none;
  margin: 0;
  padding: 0;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
  color: var(--white);
}

/* ---------- Responsive ---------- */

/* ----- Extra Large Screens (1400px+) ----- */
@media (min-width: 1400px) {
  .hero-section h1 {
    font-size: 3.5rem;
  }

  .hero-section p {
    font-size: 1.25rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .about-preview {
    padding: 120px 0;
  }

  .about-preview-card {
    padding: 60px;
    gap: 60px;
  }

  .about-preview-card .about-image {
    width: 420px;
  }

  .about-preview-card .about-image img {
    height: 320px;
  }

  .category-card {
    padding: 40px 30px;
  }

  .cta-section {
    padding: 90px 0;
  }

  .cta-section h2 {
    font-size: 2.5rem;
  }

  .product-card .product-image {
    height: 240px;
  }

  .contact-form-wrapper {
    padding: 55px;
  }
}

/* ----- Large Desktops (1200px–1399px) ----- */
@media (max-width: 1399px) and (min-width: 1200px) {
  .about-preview-card .about-image {
    width: 340px;
  }
}

/* ----- Tablets / Small Desktops (992px–1199px) ----- */
@media (max-width: 1199px) and (min-width: 992px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-stats {
    gap: 25px;
  }

  .hero-stat .number {
    font-size: 1.75rem;
  }

  .about-preview-card {
    padding: 40px;
    gap: 35px;
  }

  .about-preview-card .about-image {
    width: 300px;
  }

  .about-preview-card .about-image img {
    height: 250px;
  }

  .category-card {
    padding: 28px 20px;
  }

  .category-card h4 {
    font-size: 1rem;
  }

  .product-card .product-image {
    height: 180px;
  }
}

/* ----- Tablets Portrait / Small Laptops (max-width: 991px) ----- */
@media (max-width: 991px) {
  .hero-section {
    padding: 70px 0 60px;
    text-align: center;
    min-height: auto;
  }

  .hero-section h1 {
    font-size: 2.25rem;
  }

  .hero-section p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats {
    justify-content: center;
    gap: 30px;
  }

  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-section .d-flex.gap-3 {
    justify-content: center;
  }

  /* Parallax → scroll on touch devices */
  .about-preview {
    background-attachment: scroll;
    padding: 80px 0;
  }

  .about-preview-card {
    flex-direction: column;
    padding: 35px;
    gap: 30px;
  }

  .about-preview-card .about-image {
    width: 100%;
  }

  .about-preview-card .about-image img {
    height: 260px;
    width: 100%;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .section-desc {
    font-size: 0.95rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .page-header p {
    font-size: 1rem;
  }

  .contact-form-wrapper {
    padding: 30px;
  }

  .catalog-cta {
    padding: 35px 25px;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .vision-mission-card {
    padding: 30px 25px;
  }

  .product-category-header {
    padding: 20px 24px;
  }

  .product-category-header h3 {
    font-size: 1.15rem;
  }

  .navbar-custom .nav-cta {
    margin-left: 0;
    margin-top: 8px;
    display: inline-block;
    text-align: center;
  }
}

/* ----- Mobile Landscape / Small Tablets (max-width: 767px) ----- */
@media (max-width: 767px) {
  .section-padding {
    padding: 50px 0;
  }

  .hero-section {
    padding: 50px 0 45px;
  }

  .hero-section h1 {
    font-size: 1.85rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  h2,
  .section-title {
    font-size: 1.55rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .section-desc {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }

  .hero-stats {
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero-stat .number {
    font-size: 1.5rem;
  }

  .hero-stat .label {
    font-size: 0.7rem;
  }

  .cta-section {
    padding: 50px 0;
  }

  .cta-section h2 {
    font-size: 1.6rem;
  }

  .cta-section p {
    font-size: 0.95rem;
  }

  .top-bar {
    display: block;
  }

  .page-header {
    padding: 55px 0 35px;
  }

  .page-header h1 {
    font-size: 1.75rem;
  }

  .page-header p {
    font-size: 0.92rem;
  }

  .catalog-cta {
    padding: 30px 20px;
  }

  .catalog-cta h3 {
    font-size: 1.15rem;
  }

  .about-preview {
    padding: 60px 0;
  }

  .about-preview-card {
    padding: 25px;
    gap: 24px;
  }

  .about-preview-card .about-image img {
    height: 220px;
  }

  .about-preview-card .about-text h2 {
    font-size: 1.4rem;
  }

  .category-card {
    padding: 25px 18px;
  }

  .category-card .icon-wrapper {
    width: 58px;
    height: 58px;
  }

  .category-card .icon-wrapper i {
    font-size: 1.4rem;
  }

  .category-card h4 {
    font-size: 1rem;
  }

  .category-card p {
    font-size: 0.85rem;
  }

  .product-card .product-image {
    height: 180px;
  }

  .product-card .product-body {
    padding: 18px 16px;
  }

  .about-feature-card {
    padding: 28px 22px;
  }

  .about-feature-card .feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .about-feature-card .feature-icon i {
    font-size: 1.15rem;
  }

  .vision-mission-card {
    padding: 28px 22px;
  }

  .vision-mission-card h3 {
    font-size: 1.15rem;
  }

  .contact-info-card {
    padding: 24px 18px;
  }

  .contact-info-card .icon-circle {
    width: 50px;
    height: 50px;
  }

  .contact-info-card .icon-circle i {
    font-size: 1.1rem;
  }

  .contact-map {
    min-height: 300px;
  }

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

  .footer {
    padding: 45px 0 0;
  }

  .footer h5 {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .footer-bottom {
    margin-top: 30px;
    text-align: center;
  }

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

  .brand-logo-card {
    min-height: 100px;
    padding: 18px 14px;
  }

  .brand-logo-card .brand-name {
    font-size: 0.7rem;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
    bottom: 16px;
    right: 16px;
  }
}

/* ----- Mobile Portrait (max-width: 576px) ----- */
@media (max-width: 576px) {
  .hero-section {
    padding: 40px 0 35px;
  }

  .hero-section h1 {
    font-size: 1.5rem;
  }

  .hero-section p {
    font-size: 0.92rem;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 5px 12px;
  }

  h2,
  .section-title {
    font-size: 1.35rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .section-subtitle {
    font-size: 0.72rem;
    letter-spacing: 2px;
  }

  .btn-primary-custom,
  .btn-outline-custom,
  .btn-white {
    padding: 11px 22px;
    font-size: 0.85rem;
  }

  .hero-stats {
    gap: 12px;
    margin-top: 1.5rem;
    padding-top: 1.2rem;
  }

  .hero-stat .number {
    font-size: 1.3rem;
  }

  .hero-stat .label {
    font-size: 0.65rem;
    letter-spacing: 0.5px;
  }

  .about-preview {
    padding: 50px 0;
  }

  .about-preview-card {
    padding: 20px;
    gap: 20px;
  }

  .about-preview-card .about-image img {
    height: 180px;
  }

  .about-preview-card .about-text h2 {
    font-size: 1.25rem;
  }

  .about-preview-card .about-text p {
    font-size: 0.88rem;
  }

  .about-check-list li {
    font-size: 0.88rem;
    gap: 8px;
  }

  .section-padding {
    padding: 40px 0;
  }

  .navbar-custom .navbar-brand img {
    height: 32px;
  }

  .navbar-custom .navbar-brand .brand-name {
    font-size: 1rem;
  }

  .navbar-custom .navbar-brand .brand-tagline {
    font-size: 0.55rem;
  }

  .contact-form-wrapper {
    padding: 22px 16px;
  }

  .form-control-custom {
    padding: 10px 14px;
    font-size: 0.88rem;
  }

  .page-header {
    padding: 45px 0 30px;
  }

  .page-header h1 {
    font-size: 1.5rem;
  }

  .page-header p {
    font-size: 0.85rem;
  }

  .cta-section h2 {
    font-size: 1.35rem;
  }

  .cta-section p {
    font-size: 0.88rem;
  }

  .product-card .product-image {
    height: 160px;
  }

  .product-category-header {
    padding: 16px 18px;
  }

  .product-category-header h3 {
    font-size: 1.05rem;
  }

  .product-category-header i {
    font-size: 1.2rem;
  }

  .catalog-cta {
    padding: 25px 16px;
  }

  .catalog-cta h3 {
    font-size: 1.05rem;
  }

  .catalog-cta p {
    font-size: 0.85rem;
  }

  .footer-contact-item {
    font-size: 0.82rem;
  }

  .footer-links a {
    font-size: 0.82rem;
  }
}

/* ----- Extra Small Phones (max-width: 400px) ----- */
@media (max-width: 400px) {
  .hero-section h1 {
    font-size: 1.3rem;
  }

  .hero-section p {
    font-size: 0.85rem;
  }

  .hero-stats {
    gap: 10px;
  }

  .hero-stat .number {
    font-size: 1.15rem;
  }

  .btn-primary-custom,
  .btn-outline-custom,
  .btn-white {
    padding: 10px 18px;
    font-size: 0.82rem;
    width: 100%;
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn-primary-custom,
  .cta-buttons .btn-white {
    width: 100%;
  }

  h2,
  .section-title {
    font-size: 1.2rem;
  }

  .section-desc {
    font-size: 0.85rem;
  }

  .about-preview-card {
    padding: 16px;
  }

  .about-preview-card .about-image img {
    height: 150px;
  }

  .contact-info-card p {
    font-size: 0.82rem;
  }
}

/* ----- Touch device parallax fallback ----- */
@supports (-webkit-touch-callout: none) {
  .about-preview {
    background-attachment: scroll;
  }
}

/* ---------- Utility ---------- */
.text-orange {
  color: var(--orange) !important;
}

.bg-off-white {
  background: var(--off-white);
}

.fw-600 {
  font-weight: 600;
}

.letter-spacing-1 {
  letter-spacing: 1px;
}

/* ---------- Confirmation Popup ---------- */
.confirmation-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.confirmation-popup.show {
  opacity: 1;
  visibility: visible;
}

.confirmation-content {
  background: white;
  padding: 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: var(--shadow-lg);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.confirmation-popup.show .confirmation-content {
  transform: scale(1);
}

.confirmation-icon {
  width: 60px;
  height: 60px;
  background: #28a745;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.confirmation-icon i {
  color: white;
  font-size: 28px;
}

.confirmation-content h4 {
  color: var(--text-dark);
  margin-bottom: 10px;
  font-weight: 700;
}

.confirmation-content p {
  color: var(--text-body);
  margin-bottom: 0;
  line-height: 1.5;
}