/* ========================================
   Layali Car Parking - akaatent.com Clone
   Exact visual match
   ======================================== */

/* Fonts - akaatent.com uses Divi theme with Open Sans */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

/* Root Variables - Colors matched from akaatent.com */
:root {
  --primary: #003366;
  --primary-dark: #002244;
  --blue-accent: #2EA3F2;
  --golden: #D4A017;
  --golden-light: #e8b830;
  --dark: #222222;
  --light: #f7f7f7;
  --gray: #666666;
  --gray-light: #999999;
  --white: #ffffff;
  --text: #333333;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 35px rgba(0,0,0,0.15);
  --radius: 15px;
  --transition: all 0.3s ease;
}

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
  font-size: 14px;
  background: var(--white);
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* Screen-reader-only utility (accessible + crawlable, visually hidden) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
ul { list-style: none; }

/* ============================================
   TOP HEADER BAR - White bar with logo + contact
   ============================================ */
.top-header {
  background: var(--white);
  padding: 18px 0;
  border-bottom: 1px solid #e8e8e8;
  position: relative;
  z-index: 100;
}
.top-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-area .logo-text {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}
.logo-area .logo-sub {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--golden);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 3px;
}
.header-contact {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-contact-item .icon {
  width: 42px;
  height: 42px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.header-contact-item .icon svg {
  width: 18px;
  height: 18px;
}
.header-contact-item .info label {
  display: block;
  font-size: 0.72rem;
  color: var(--gray-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.header-contact-item .info a,
.header-contact-item .info span {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}
.header-contact-item .info a:hover { color: var(--blue-accent); }

.btn-quotation {
  background: var(--primary);
  color: var(--white);
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: 2px solid var(--primary);
  display: inline-block;
  white-space: nowrap;
}
.btn-quotation:hover {
  background: var(--blue-accent);
  border-color: var(--blue-accent);
  color: var(--white);
}

/* ============================================
   MAIN NAVIGATION - Dark blue bar
   ============================================ */
.main-nav {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.main-nav .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-menu {
  display: flex;
  gap: 0;
}
.nav-menu li a {
  display: block;
  padding: 16px 28px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  position: relative;
}
.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--golden);
}
.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--golden);
  transition: var(--transition);
  transform: translateX(-50%);
}
.nav-menu li a:hover::after,
.nav-menu li a.active::after {
  width: 70%;
}

/* Mobile Menu Toggle */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
  padding: 15px;
}
.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ============================================
   HERO SLIDER - Full width with text overlay
   ============================================ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 550px;
  max-height: 750px;
  overflow: hidden;
  background: #111;
}
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,51,102,0.75) 0%, rgba(0,51,102,0.3) 50%, rgba(0,0,0,0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-content {
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 30px 80px;
}
.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15px;
  text-transform: uppercase;
  text-shadow: 0 2px 15px rgba(0,0,0,0.3);
  letter-spacing: 1px;
}
.hero-content p {
  font-size: 1.15rem;
  margin-bottom: 30px;
  opacity: 0.95;
  line-height: 1.7;
  text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}
.hero-content .hero-btn {
  display: inline-block;
  padding: 15px 40px;
  background: var(--golden);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  transition: var(--transition);
  border: 2px solid var(--golden);
}
.hero-content .hero-btn:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 55px;
  height: 55px;
  background: rgba(0,0,0,0.25);
  border: none;
  border-radius: 0;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-arrow:hover { background: var(--blue-accent); }
.slider-arrow.prev { left: 0; }
.slider-arrow.next { right: 0; }

/* Slider Dots */
.hero-dots {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 7;
  padding: 6px 14px;
  background: rgba(0,0,0,0.35);
  border-radius: 20px;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.hero-dot:hover {
  background: rgba(255,255,255,0.8);
}
.hero-dot.active {
  background: var(--golden);
  transform: scale(1.2);
}

/* ============================================
   SECTION STYLING - Common patterns
   ============================================ */
.section { padding: 70px 0; }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  text-align: center;
  line-height: 1.3;
}
.section-line {
  width: 120px;
  height: 3px;
  background: var(--golden);
  margin: 18px auto 25px;
  border-radius: 2px;
}
.section-subtitle {
  color: var(--gray);
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  line-height: 1.8;
}

/* ============================================
   ABOUT SECTION - Text centered intro
   ============================================ */
.about-section {
  padding: 70px 0;
  text-align: center;
  background: var(--white);
}
.about-section .section-title {
  font-size: 2.3rem;
  line-height: 1.3;
  color: var(--primary);
}
.about-section p {
  max-width: 950px;
  margin: 0 auto 18px;
  line-height: 1.9;
  font-size: 0.98rem;
  color: var(--gray);
}

/* ============================================
   SERVICE CARDS - 3-column image cards
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border: 1px solid #eee;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.service-card-img-wrapper {
  overflow: hidden;
  position: relative;
}
.service-card-img-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--blue-accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.service-card:hover .service-card-img-wrapper::after {
  transform: scaleX(1);
}
.service-card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card-img {
  transform: scale(1.05);
}
.service-card-title {
  padding: 20px 15px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.5px;
}

/* ============================================
   STATS / WHY CHOOSE US - Dark blue counter section
   ============================================ */
.stats-section {
  background: var(--primary);
  padding: 70px 0;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 50px,
    rgba(255,255,255,0.01) 50px,
    rgba(255,255,255,0.01) 100px
  );
}
.stats-section .section-title {
  color: var(--white);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.stats-section .section-line { background: var(--golden); }
.stats-section p {
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.9;
  opacity: 0.9;
  font-size: 0.98rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 45px 0 35px;
  position: relative;
  z-index: 1;
}
.stat-item {
  text-align: center;
  padding: 20px 15px;
  position: relative;
}
.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}
.stat-item:last-child::after { display: none; }
.stat-number {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--golden);
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  opacity: 0.85;
}

.btn-quotation-gold {
  background: var(--golden);
  color: var(--dark);
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition);
  border: 2px solid var(--golden);
  display: inline-block;
  position: relative;
  z-index: 1;
}
.btn-quotation-gold:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

/* ============================================
   WHY CHOOSE section (white background)
   ============================================ */
.why-section {
  padding: 70px 0;
  text-align: center;
  background: var(--white);
}
.why-section p {
  max-width: 950px;
  margin: 0 auto 18px;
  line-height: 1.9;
  color: var(--gray);
  font-size: 0.98rem;
}

/* ============================================
   PRODUCTS GRID - Pill-shaped buttons
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 30px;
}
.product-btn {
  display: block;
  padding: 16px 20px;
  border: 2px solid var(--golden);
  border-radius: 50px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  transition: var(--transition);
  text-transform: capitalize;
}
.product-btn:hover {
  background: var(--golden);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================
   GALLERY / LATEST WORK
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 35px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item-label {
  text-align: center;
  padding: 14px 10px;
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 1px;
  background: var(--white);
}
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 48px);
  background: rgba(46,163,242,0.75);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 2px solid var(--white);
  padding: 8px 20px;
  border-radius: 3px;
}

/* ============================================
   CTA SECTION - Dark blue call-to-action
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 55px 0;
  text-align: center;
  color: var(--white);
}
.cta-section .subtitle {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--golden);
  font-weight: 600;
}
.cta-section h2 {
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.cta-phone {
  font-size: 2rem;
  font-weight: 800;
  margin: 18px 0 28px;
}
.cta-phone a {
  color: var(--white);
  transition: var(--transition);
  margin: 0 15px;
}
.cta-phone a:hover { color: var(--golden); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,0.8);
  padding: 55px 0 20px;
  border-top: 4px solid var(--golden);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}
.footer h5,
.footer h4 {
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 22px;
  padding-bottom: 12px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer h5::after,
.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--golden);
}
.footer a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer a:hover { color: var(--golden); }
.footer-links li {
  padding: 6px 0;
}
.footer-links li::before {
  content: '\203A';
  color: var(--golden);
  margin-right: 10px;
  font-weight: 700;
  font-size: 1.1em;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}
.footer-contact-item .icon {
  color: var(--golden);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-contact-item .icon svg {
  width: 16px;
  height: 16px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--white);
}
.footer-social a:hover {
  background: var(--golden);
  border-color: var(--golden);
  color: var(--dark);
}
.footer-social a svg {
  width: 15px;
  height: 15px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  margin-top: 45px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37,211,102,0.5);
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

/* ============================================
   PAGE BANNER (inner pages)
   ============================================ */
.page-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 50px 0;
  text-align: center;
  color: var(--white);
}
.page-banner h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.breadcrumb-custom {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
}
.breadcrumb-custom a { color: var(--golden); }
.breadcrumb-custom a:hover { text-decoration: underline; }
.breadcrumb-custom span { opacity: 0.7; }

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form .form-control {
  width: 100%;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 0.92rem;
  transition: var(--transition);
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 18px;
  background: #fafafa;
}
.contact-form .form-control:focus {
  outline: none;
  border-color: var(--blue-accent);
  box-shadow: 0 0 0 3px rgba(46,163,242,0.15);
  background: var(--white);
}
.contact-form textarea.form-control {
  min-height: 130px;
  resize: vertical;
}
.contact-info-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px 30px;
  height: 100%;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 28px;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--golden);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
html.js-ready .fade-up {
  opacity: 0;
  transform: translateY(30px);
}
html.js-ready .fade-up.visible,
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 5px;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: var(--transition);
}
.lightbox-close:hover { color: var(--golden); }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-golden { color: var(--golden); }
.bg-light { background: var(--light); }
.bg-white { background: var(--white); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 35px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }

/* ============================================
   RESPONSIVE
   ============================================ */
/* ============================================
   RESPONSIVE - TABLET (max 991px)
   ============================================ */
@media (max-width: 991px) {
  /* Mobile menu */
  .hamburger { display: flex; }
  .main-nav .container { justify-content: flex-end; }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: var(--primary);
    flex-direction: column;
    padding: 70px 0 30px;
    transition: var(--transition);
    box-shadow: -5px 0 30px rgba(0,0,0,0.3);
    z-index: 1000;
  }
  .nav-menu.active { right: 0; }
  .nav-menu li a {
    padding: 14px 25px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.95rem;
  }

  /* Header - compact layout */
  .top-header .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 15px;
  }
  .logo-area {
    flex: 0 0 auto;
  }
  .logo-area .logo-text {
    font-size: 1.3rem;
  }
  .logo-sub-company {
    font-size: 0.6rem !important;
  }
  .header-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
    flex: 1;
  }
  .header-contact-item .icon {
    width: 32px;
    height: 32px;
  }
  .header-contact-item .icon svg {
    width: 14px;
    height: 14px;
  }
  .header-contact-item .info a,
  .header-contact-item .info span {
    font-size: 0.78rem;
    white-space: nowrap;
  }
  .header-contact-item .info label {
    font-size: 0.6rem;
  }
  .btn-quotation {
    padding: 8px 14px;
    font-size: 0.7rem;
  }

  /* Grids */
  .services-grid,
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .services-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .services-grid-4 { grid-template-columns: repeat(2, 1fr); }

  /* Hero */
  .hero-content h1 { font-size: 2.2rem; }
  .hero-slider { height: 60vh; min-height: 400px; }
  .stat-item::after { display: none; }


}

/* ============================================
   RESPONSIVE - MOBILE (max 767px)
   ============================================ */
@media (max-width: 767px) {
  .top-header .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .logo-area {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .logo-area .logo-text {
    font-size: 1.3rem;
    text-align: center;
  }
  .header-contact {
    justify-content: center;
    width: 100%;
    gap: 8px;
  }
  .header-contact-item {
    background: var(--light);
    padding: 6px 12px;
    border-radius: 6px;
    gap: 6px;
  }
  .btn-quotation {
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: 0.75rem;
    border-radius: 6px;
  }
  .services-grid-3 { grid-template-columns: repeat(2, 1fr); gap: 15px; }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE (max 576px)
   ============================================ */
@media (max-width: 576px) {
  .services-grid,
  .gallery-grid,
  .products-grid { grid-template-columns: 1fr; }
  .services-grid-3 { grid-template-columns: 1fr; }
  .services-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.6rem; }
  .stat-number { font-size: 2.5rem; }
  .hero-slider { height: 50vh; min-height: 350px; }
  .hero-content h1 { font-size: 1.6rem; }
  .hero-content p { font-size: 0.9rem; }
  .cta-phone { font-size: 1.3rem; }
  .page-banner h1 { font-size: 1.6rem; }
  .logo-area .logo-text { font-size: 1.15rem; }
  .logo-sub-company { font-size: 0.55rem !important; }
  .section { padding: 40px 0; }

  /* Compact header on small screens */
  .header-contact-item .info label { display: none; }
  .header-contact-item .info a,
  .header-contact-item .info span {
    font-size: 0.75rem;
  }
  .header-contact-item .icon {
    width: 28px;
    height: 28px;
  }
  .header-contact-item .icon svg {
    width: 12px;
    height: 12px;
  }
}

/* ============================================
   RESPONSIVE - VERY SMALL MOBILE (max 400px)
   ============================================ */
@media (max-width: 400px) {
  .header-contact {
    flex-direction: column;
    align-items: stretch;
  }
  .header-contact-item {
    width: 100%;
  }
  .logo-area .logo-text {
    font-size: 1.05rem;
  }
  .hero-content h1 { font-size: 1.4rem; }
  .services-grid-4 { grid-template-columns: 1fr; }
}
/* ============================================
   4-COLUMN SERVICE GRID
   ============================================ */
.services-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 30px;
}
.services-grid-4 .service-card-img {
  height: 220px;
}

/* ============================================
   HERO BOTTOM BANNER - Discount overlay
   ============================================ */
.hero-bottom-banner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 51, 102, 0.88);
  color: var(--white);
  padding: 12px 0;
  font-size: 0.88rem;
  text-align: center;
  z-index: 6;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ============================================
   SPECIAL DISCOUNT OFFER SECTION
   ============================================ */
.discount-title {
  color: var(--primary) !important;
  font-size: 1.8rem !important;
}
.discount-points {
  max-width: 700px;
  margin: 10px auto 0;
  text-align: left;
}
.discount-point {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 12px;
}
.discount-point:last-child {
  border-bottom: none;
}
.discount-point .star {
  font-size: 1.3rem;
}

/* ============================================
   ORANGE BUTTON GRID - Product buttons
   ============================================ */
.orange-btn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}
.orange-btn {
  display: block;
  padding: 14px 18px;
  background: linear-gradient(135deg, #e8720c 0%, #f58220 100%);
  color: var(--white);
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 6px;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(232, 114, 12, 0.25);
}
.orange-btn:hover {
  background: linear-gradient(135deg, #d4650a 0%, #e8720c 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(232, 114, 12, 0.35);
  color: var(--white);
}

/* ============================================
   STATS DISCOUNT TEXT
   ============================================ */
.stats-discount-text {
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  opacity: 1 !important;
  margin-top: 15px !important;
  color: var(--golden) !important;
}

/* ============================================
   DISCOUNT BANNER SECTION (before footer)
   ============================================ */
.discount-banner-section {
  background: linear-gradient(135deg, #e8720c 0%, #f58220 100%);
  padding: 45px 0;
  text-align: center;
  color: var(--white);
}
.discount-banner-section h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: none;
}
.discount-banner-section p {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1.7;
}

/* ============================================
   HEADER SUBTITLE
   ============================================ */
.logo-sub-company {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
  opacity: 0.7;
}

/* ============================================
   RESPONSIVE - New sections
   ============================================ */
@media (max-width: 991px) {
  .services-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .orange-btn-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-bottom-banner { font-size: 0.8rem; padding: 10px 15px; }
}

@media (max-width: 576px) {
  .services-grid-4 { grid-template-columns: 1fr; }
  .orange-btn-grid { grid-template-columns: 1fr; }
  .discount-title { font-size: 1.4rem !important; }
  .discount-point { font-size: 1rem; }
  .discount-banner-section h3 { font-size: 1.2rem; }
  .discount-banner-section p { font-size: 0.95rem; }
  .hero-bottom-banner { font-size: 0.75rem; padding: 8px 10px; }
}
/* ============================================
   CTA SECTION - Redesigned layout
   ============================================ */
.cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin: 25px 0 10px;
  flex-wrap: wrap;
}
.cta-col {
  text-align: center;
}
.cta-col h3 {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  color: var(--white);
}
.cta-big-link {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white) !important;
  transition: var(--transition);
  display: block;
}
.cta-big-link:hover {
  color: var(--golden) !important;
}
.cta-col-center {
  padding: 0 30px;
}

/* ============================================
   CTA SOCIAL ICONS BAR - Large colorful icons
   ============================================ */
.cta-social-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 35px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.cta-social-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.cta-social-icon:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
.cta-social-icon svg {
  width: 30px;
  height: 30px;
}

/* Hide old cta-phone styles (replaced by cta-row) */
.cta-phone { display: none; }

/* ============================================
   RESPONSIVE - CTA
   ============================================ */
@media (max-width: 768px) {
  .cta-row {
    flex-direction: column;
    gap: 25px;
  }
  .cta-col-center {
    padding: 0;
  }
  .cta-big-link {
    font-size: 1.2rem;
  }
  .cta-social-bar {
    gap: 12px;
  }
  .cta-social-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
  }
  .cta-social-icon svg {
    width: 24px;
    height: 24px;
  }
}
/* ============================================
   HEADER RESPONSIVE FIXES
   ============================================ */

/* Fix header layout - prevent phone wrapping */
.top-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.header-contact-item .info a,
.header-contact-item .info span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

.header-contact-item .info label {
  white-space: nowrap;
}

.btn-quotation {
  white-space: nowrap;
  padding: 11px 22px;
  font-size: 0.75rem;
}

/* Logo area - prevent BAIT AL LAYALI from being too wide */
.logo-area .logo-text {
  font-size: 1.5rem;
  min-width: 0;
}
.logo-sub-company {
  font-size: 0.65rem !important;
  white-space: nowrap;
}

/* ============================================
   MOBILE: Show phone & email
   ============================================ */
@media (max-width: 991px) {
  .top-header .container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 12px 15px;
  }

  .logo-area {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .logo-area .logo-text {
    text-align: center;
  }

  /* SHOW header-contact on mobile instead of hiding */
  .header-contact {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    width: 100%;
  }

  .header-contact-item {
    gap: 8px;
  }

  .header-contact-item .icon {
    width: 36px;
    height: 36px;
  }

  .header-contact-item .icon svg {
    width: 15px;
    height: 15px;
  }

  .header-contact-item .info a,
  .header-contact-item .info span {
    font-size: 0.78rem;
  }

  .header-contact-item .info label {
    font-size: 0.65rem;
  }

  .btn-quotation {
    padding: 10px 20px;
    font-size: 0.72rem;
  }
}

@media (max-width: 576px) {
  .logo-area .logo-text {
    font-size: 1.2rem;
  }

  .header-contact {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .header-contact-item .info a,
  .header-contact-item .info span {
    font-size: 0.75rem;
  }

  .btn-quotation {
    width: 100%;
    text-align: center;
    padding: 10px 15px;
  }
}

/* ============================================
   TABLET/LAPTOP: Better header fit
   ============================================ */



/* Reduce gap between About section and Special Discount Offer */
.about-section {
  padding-bottom: 20px !important;
}
.about-section + .section.bg-white {
  padding-top: 20px !important;
}
/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */


/* 3-column grid for related items (PDF layout) */
.services-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
@media (max-width: 768px) {
  .services-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .services-grid-3 {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Hero image with quote button overlay */
.product-hero {
  position: relative;
  margin-bottom: 35px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0,0,0,0.12);
}
.product-hero-img {
  width: 100%;
  max-height: 550px;
  object-fit: cover;
  display: block;
}
.product-hero-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #003366, #002244);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  padding: 40px;
}
.product-quote-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #FFD700;
  color: #333;
  padding: 12px 28px;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 12px rgba(0,0,0,0.2);
  z-index: 2;
}
.product-quote-btn:hover {
  background: #e8c200;
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(0,0,0,0.25);
}

/* Product info section */
.product-info {
  max-width: 900px;
  margin: 0 auto;
}
.product-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-code {
  font-weight: 600;
  color: var(--gray);
}
.product-subtitle {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #eee;
}
.product-desc {
  color: var(--gray);
  line-height: 1.9;
  font-size: 0.95rem;
  margin-bottom: 18px;
  text-align: justify;
}
.product-desc strong {
  color: var(--text);
}
.product-desc em {
  color: var(--primary);
  font-style: italic;
}

/* Bottom quote button */
.product-quote-btn-bottom {
  display: inline-block;
  background: #FFD700;
  color: #333;
  padding: 14px 35px;
  font-weight: 800;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 15px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}
.product-quote-btn-bottom:hover {
  background: #e8c200;
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(0,0,0,0.15);
}

/* ============================================
   PRODUCT CONTACT BAR
   ============================================ */
.product-contact-section {
  background: linear-gradient(180deg, #e8f4ff 0%, #ffffff 100%);
  padding: 60px 0 40px;
}
.product-contact-bar {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 25px;
  margin-top: 30px;
  flex-wrap: wrap;
  background: white;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.product-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.pci-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pci-icon svg {
  width: 20px;
  height: 20px;
}
.product-contact-item small {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-light);
  font-weight: 600;
}
.product-contact-item a,
.product-contact-item span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}
.product-contact-item a:hover {
  color: var(--blue-accent);
}

/* ============================================
   RESPONSIVE - Product page
   ============================================ */
@media (max-width: 768px) {
  .product-hero-img {
    max-height: 300px;
  }
  .product-hero-placeholder {
    height: 250px;
    font-size: 1.4rem;
  }
  .product-quote-btn {
    padding: 10px 20px;
    font-size: 0.75rem;
  }
  .product-title {
    font-size: 1.3rem;
  }
  .product-subtitle {
    font-size: 1rem;
  }
  .product-contact-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .product-contact-item {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
  }
  .product-contact-item:last-child {
    border-bottom: none;
  }
}

/* ============================================
   GET A QUOTE CTA SECTION
   ============================================ */
.get-quote-cta-section {
  background: linear-gradient(135deg, #e8a817 0%, #f0c040 100%);
  padding: 30px 0;
}
.get-quote-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.get-quote-cta-text h2 {
  color: #0a3d62;
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0 6px;
}
.get-quote-cta-text p {
  color: rgba(10,61,98,0.8);
  font-size: 0.95rem;
  margin: 0;
}
.get-quote-cta-btn {
  white-space: nowrap;
  background: #0a3d62 !important;
  color: #fff !important;
  padding: 14px 32px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}
.get-quote-cta-btn:hover {
  background: #062842 !important;
}
@media (max-width: 768px) {
  .get-quote-cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .get-quote-cta-text h2 { font-size: 1.3rem; }
}

/* ============================================
   GALLERY DETAIL PAGE
   ============================================ */
.gallery-detail-hero {
  position: relative;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.gallery-detail-main-img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}
.gallery-detail-quote-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--accent);
  color: #fff;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: background 0.2s;
}
.gallery-detail-quote-btn:hover { background: #c77a00; }
.gallery-detail-info {
  margin-bottom: 36px;
}
.gallery-detail-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 8px;
}
.gallery-detail-category {
  display: inline-block;
  background: #e8a81720;
  color: #e8a817;
  border: 1px solid #e8a81740;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.gallery-detail-desc {
  color: var(--gray);
  line-height: 1.8;
  font-size: 0.97rem;
  max-width: 800px;
}
.gallery-detail-thumbs {
  margin-bottom: 36px;
}
.gallery-detail-thumbs-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}
.gallery-detail-thumbs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.gallery-detail-thumb {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.gallery-detail-thumb:hover img { transform: scale(1.05); }
.gallery-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 1.5rem;
}
.gallery-detail-thumb:hover .gallery-thumb-overlay { opacity: 1; }
.gallery-detail-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.gallery-back-btn {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.gallery-back-btn:hover { color: var(--accent); }
@media (max-width: 768px) {
  .gallery-detail-main-img { max-height: 280px; }
  .gallery-detail-title { font-size: 1.4rem; }
  .gallery-detail-thumbs-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-detail-actions { flex-direction: column; align-items: flex-start; }
  .gallery-detail-quote-btn { position: static; margin-top: 12px; display: inline-block; }
}

/* ============================================
   SPECIAL OFFER BANNER
   ============================================ */
.special-offer-label {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 10px;
}
.get-quote-cta-text h2 {
  font-size: 1.6rem;
}
.offer-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}
.offer-list li {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: inherit;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .get-quote-cta-text h2 {
    font-size: 1.85rem;
  }
  .offer-list li {
    font-size: 1.2rem;
  }
  .special-offer-label {
    font-size: 1.05rem;
  }
}

/* ============================================
   VIDEO GRID
   ============================================ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}
.video-item video {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #000;
}
.video-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 10px;
  text-align: center;
  color: var(--text);
}
