/* =========================================
   RESET & BASE
========================================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* Prevent horizontal overflow on all devices */
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #1f2937;
  overflow-x: hidden;
  line-height: 1.6;
  /* Ensure body never exceeds viewport */
  max-width: 100vw;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  display: block;
  max-width: 100%;
}

.team-subtitle {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #555;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.team-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.team-features li {
  padding: 4px 0;
  font-size: 0.9rem;
  color: #333;
}

.team-features li::before {
  content: "✓ ";
  color: #007bff;
  font-weight: bold;
}

/* =========================================
   SCROLLBAR
========================================= */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f3f4f6; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(#7f1d1d, #ef4444);
  border-radius: 20px;
}

/* =========================================
   PROGRESS BAR
========================================= */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 5px;
  z-index: 99999;
  background: linear-gradient(to right, #7f1d1d, #dc2626, #ef4444);
}

/* =========================================
   LOADER
========================================= */
#loader {
  position: fixed;
  inset: 0;
  background: #0f172a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  z-index: 999999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-logo img {
  width: 200px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(239, 68, 68, 0.7));
  animation: loaderPulse 1.4s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
.loader-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #fff;
}
.loader-sub {
  font-size: 13px;
  letter-spacing: 2px;
  color: #9ca3af;
  font-weight: 500;
}
.loader-bar-wrap {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  overflow: hidden;
  margin-top: 10px;
}
.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #dc2626, #ef4444);
  border-radius: 99px;
  animation: loadBar 1.8s ease forwards;
}
@keyframes loadBar { to { width: 100%; } }

/* =========================================
   HEADER
   FIX: Use 100% width + no border-left/right
   to prevent overflow. Keep borders top/bottom only.
========================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* Changed: use border-top/bottom only to avoid horizontal overflow */
  padding: 10px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #0d1b3e 0%, #162447 50%, #1a1f4b 100%);
  box-shadow: 0 8px 30px rgba(13, 27, 62, 0.55), 0 2px 0 rgba(220, 38, 38, 0.6);
  border-bottom: 5px solid #f43030;
  border-top: 5px solid #f43030;
  z-index: 9999;
  animation: headerSlide 1s ease;
  /* Ensure it never causes horizontal scroll */
  box-sizing: border-box;
  overflow: hidden;
}
@keyframes headerSlide {
  from { opacity: 0; transform: translateY(-100%); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   LOGO
========================================= */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo img {
  width: 90px;
  height: auto;
  object-fit: contain;
  display: block;
  transition: 0.3s;
}
.logo img:hover {
  transform: rotate(5deg) scale(1.05);
}
.logo h2 {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 1.5px;
  line-height: 1.1;
  background: linear-gradient(
    90deg,
    #ffffff   0%,
    #c8d8ff  35%,
    #93b8ff  60%,
    #ff4444  85%,
    #ff1c1c 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* Prevent text overflow */
  white-space: nowrap;
}
.logo span {
  font-size: 13px;
  color: #ffe4e6;
}

/* =========================================
   DESKTOP NAVBAR
========================================= */
nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav a {
  position: relative;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  padding: 10px 0;
  transition: 0.4s ease;
  overflow: hidden;
  white-space: nowrap;
}
nav a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background: #fff;
  border-radius: 20px;
  transition: 0.4s;
}
nav a:hover::before { width: 100%; }
nav a:hover { transform: translateY(-3px); color: #f8b8b8; }
nav a.active {
  color: #ffffff;
  position: relative;
}
nav a.active::before {
  width: 100%;
}

/* =========================================
   CALL BUTTON
========================================= */
.call-btn {
  padding: 12px 20px;
  background: #dc2626;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.18);
  font-weight: 800;
  font-size: 14px;
  transition: 0.4s;
  white-space: nowrap;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  flex-shrink: 0;
}
.call-btn:hover {
  background: #ffffff;
  color: #0d1b3e;
  transform: translateY(-5px) scale(1.05);
}

/* =========================================
   HAMBURGER BUTTON
   FIX: Show on iPad Pro (≤1180px) not just ≤900px
========================================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: transparent;
  z-index: 1100;
  border-radius: 8px;
  transition: background 0.3s;
  flex-shrink: 0;
}
.hamburger:hover { background: rgba(255, 255, 255, 0.15); }
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #ffffff;
  border-radius: 3px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =========================================
   MOBILE NAV OVERLAY
========================================= */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #0d1b3e 0%, #162447 50%, #1a1f4b 100%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s;
}
.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.mobile-nav a {
  text-decoration: none;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  padding: 14px 40px;
  border-radius: 16px;
  transition: 0.3s;
  width: 80%;
  text-align: center;
}
.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.04);
}
.mobile-nav .mob-call {
  margin-top: 20px;
  padding: 16px 44px;
  background: #fff;
  color: #dc2626;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: 0.3s;
  width: auto;
}
.mobile-nav .mob-call:hover {
  background: #111827;
  color: #fff;
  transform: scale(1.04);
}
.mobile-nav a.active {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

/* =========================================
   HERO / CAROUSEL
========================================= */
.hero {
  width: 100%;
  padding-top: 80px;
}
.hero-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fff;
}
.carousel-track {
  position: relative;
  width: 100%;
  height: 650px;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: scale(1.04);
}
.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.carousel-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.10) 50%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.carousel-slide-label {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: linear-gradient(135deg, rgba(127,29,29,0.92), rgba(220,38,38,0.92));
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 14px 36px;
  border-radius: 50px;
  white-space: nowrap;
  z-index: 3;
  opacity: 0;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
}
.carousel-slide.active .carousel-slide-label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.carousel-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
  pointer-events: none;
}
.carousel-btn {
  pointer-events: all;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  outline: none;
}
.carousel-btn:hover {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  border-color: #ef4444;
  transform: scale(1.12);
}
.carousel-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: 0.3s;
  outline: none;
  padding: 0;
}
.carousel-dot.active {
  background: #ef4444;
  border-color: #ef4444;
  width: 28px;
  border-radius: 6px;
}

/* =========================================
   PAGE HERO (About / Inner Pages)
========================================= */
.page-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 200px 6% 120px;
  background-color: #7f1d1d;
  background-image: url("../image/About.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(67,67,67,0.65), rgba(0,0,0,0.65));
  z-index: 1;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.18);
  top: -120px;
  right: -120px;
  filter: blur(80px);
  animation: heroFloat 7s ease-in-out infinite;
  z-index: 1;
}
.page-hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  bottom: -120px;
  left: -120px;
  filter: blur(70px);
  z-index: 1;
}
@keyframes heroFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(30px); }
  100% { transform: translateY(0); }
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  animation: heroZoom 1s ease;
}
@keyframes heroZoom {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.page-hero-tag {
  display: inline-block;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  color: #fff;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 28px;
}
.page-hero h1 {
  font-size: 76px;
  line-height: 1.1;
  font-weight: 800;
  color: #fff;
  margin-bottom: 25px;
}
.page-hero h1 span { color: #fca5a5; }
.page-hero p {
  font-size: 19px;
  line-height: 1.9;
  color: #e5e7eb;
  max-width: 850px;
  margin: auto auto 40px;
}

/* =========================================
   HERO BUTTONS
========================================= */
.hero-buttons {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-primary {
  padding: 16px 34px;
  background: #fff;
  color: #dc2626;
  text-decoration: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  transition: 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}
.btn-primary:hover {
  background: #111827;
  color: #fff;
  transform: translateY(-5px);
}
.btn-outline {
  padding: 16px 34px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  transition: 0.4s ease;
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  background: #fff;
  color: #dc2626;
  transform: translateY(-5px);
}

/* =========================================
   SECTION TITLE
========================================= */
.section-title {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 70px;
  padding: 0 20px;
}
.section-title h2 {
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 800;
  color: #111827;
  line-height: 1.1;
  margin-bottom: 12px;
}
.section-title h2 span {
  color: #dc2626;
  position: relative;
  display: inline-block;
}
.section-title p {
  font-size: 17px;
  color: #6b7280;
}
.section-title .label {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  background: #fee2e2;
  color: #dc2626;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

/* =========================================
   ABOUT
========================================= */
.about,
.about-company {
  padding: 110px 6%;
  background: #ffffff;
}
.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;
  align-items: center;
}
.about-image { position: relative; }
.about-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
  animation: floating 5s infinite ease-in-out;
}
.about-image img:hover { transform: scale(1.03); }
@keyframes floating {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}
.experience-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, #7f1d1d, #ef4444);
  padding: 28px 35px;
  border-radius: 24px;
  color: #fff;
  text-align: center;
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.35);
}
.experience-box h3 { font-size: 52px; font-weight: 800; }
.about-content h3 {
  font-size: 40px;
  margin-bottom: 25px;
  color: #111827;
  font-weight: 800;
}
.about-content h3 span { color: #dc2626; }
.about-content p {
  font-size: 17px;
  line-height: 1.9;
  color: #6b7280;
  margin-bottom: 18px;
}
.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 35px;
}
.feature-box {
  background: #fff5f5;
  padding: 18px 22px;
  border-left: 5px solid #dc2626;
  border-radius: 14px;
  font-weight: 700;
  color: #374151;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: 0.4s;
}
.feature-box:hover {
  transform: translateY(-6px);
  background: #fee2e2;
}

/* =========================================
   SERVICES (index page cards)
========================================= */
.services-advanced {
  padding: 80px 20px;
  text-align: center;
  background: #ffffff;
}
.sub {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #dc2626;
  margin-bottom: 12px;
  display: block;
}
.services-advanced h2 {
  font-size: 36px;
  font-weight: 800;
  color: #111827;
  line-height: 1.4;
  margin-bottom: 50px;
}
.services-advanced h2 span { color: #dc2626; }
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  padding: 10px 20px 20px;
  max-width: 1400px;
  margin: 0 auto;
}
.card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(220, 38, 38, 0.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: 0.4s;
  cursor: pointer;
  text-align: center;
  padding-bottom: 24px;
}
.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: 0.5s;
}
.card:hover img { transform: scale(1.1); }
.card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 50px rgba(220, 38, 38, 0.35);
}
.card .icon {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 22px;
  background: rgba(0, 0, 0, 0.55);
  padding: 8px 10px;
  border-radius: 50%;
  line-height: 1;
  z-index: 2;
}
.card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #dc2626;
  margin: 16px 15px 8px;
}
.card p {
  font-size: 14px;
  color: #555;
  padding: 0 15px;
  line-height: 1.7;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.4), transparent);
  transform: skewX(-25deg);
  z-index: 1;
  pointer-events: none;
}
.card:hover::before { animation: shine 0.8s ease forwards; }
@keyframes shine { 100% { left: 125%; } }

.biometric-overlay {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: linear-gradient(180deg, rgba(15,25,60,0.0) 0%, rgba(15,25,60,0.93) 55%);
}
.bio-tag {
  background: linear-gradient(90deg, #1a3a8f, #2563eb) !important;
  color: #fff !important;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.biometric-overlay h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 2px 0 4px;
  letter-spacing: 0.3px;
}
.bio-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bio-feature-list li {
  font-size: 11.5px;
  color: #d0deff;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1.4;
}
.bio-feature-list li::before {
  content: "✦";
  font-size: 8px;
  color: #60a5fa;
  flex-shrink: 0;
}
.bio-chip {
  background: rgba(96,165,250,0.2);
  border: 1px solid rgba(96,165,250,0.45);
  color: #bfdbfe;
  border-radius: 4px;
  padding: 1px 7px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.bio-feature-list li:has(.bio-chip)::before {
  display: none;
}

/* =========================================
   PREMIUM CARDS
========================================= */
.premium-about {
  padding: 120px 6%;
  background: #fff7f7;
}
.premium-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}
.premium-card {
  background: #fff;
  padding: 45px 35px;
  border-radius: 28px;
  text-align: center;
  transition: 0.5s;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.premium-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(220, 38, 38, 0.2);
}
.premium-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 15px;
  transition: 0.5s ease;
}
.premium-card:hover .premium-img { transform: scale(1.05); }
.premium-card h3 { font-size: 25px; margin-bottom: 16px; }
.premium-card p  { color: #6b7280; line-height: 1.9; }

/* =========================================
   WHY CHOOSE US
========================================= */
.why-us {
  padding: 100px 6%;
  background: #f9fafb;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}
.why-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}
.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15);
}
.why-image { width: 100%; height: 230px; overflow: hidden; }
.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.why-card:hover .why-image img { transform: scale(1.08); }
.why-card h3 {
  font-size: 26px;
  font-weight: 700;
  color: #111827;
  padding: 25px 25px 10px;
}
.why-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #6b7280;
  padding: 0 25px 30px;
}

/* =========================================
   GALLERY
========================================= */
.gallery {
  padding: 100px 6%;
  background: #f9fafb;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 24px;
  cursor: pointer;
  transition: 0.5s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 4px solid #fff;
}
.gallery-grid img:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

/* =========================================
   STATS
========================================= */
.about-stats {
  padding: 120px 6%;
  background: #fff;
}
.stats-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 35px;
}
.stat-card {
  background: #fff;
  padding: 50px 30px;
  border-radius: 26px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: 0.4s;
}
.stat-card:hover { transform: translateY(-10px); }
.stat-card h2 { font-size: 56px; color: #dc2626; margin-bottom: 12px; }
.stat-card p  { color: #6b7280; font-weight: 600; }

/* =========================================
   TEAM SECTION
========================================= */
.team-section {
  padding: 120px 6%;
  background: #fff7f7;
}
.team-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}
.team-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  transition: 0.5s;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.team-card:hover { transform: translateY(-12px); }
.team-image { height: 280px; overflow: hidden; }
.team-image img { height: 100%; object-fit: cover; transition: 0.7s; }
.team-card:hover img { transform: scale(1.1); }
.team-content { padding: 35px; text-align: center; }
.team-content h3 { font-size: 26px; margin-bottom: 15px; }
.team-content p  { color: #6b7280; line-height: 1.8; }

/* =========================================
   CLIENTS SECTION (Scrolling Brands)
========================================= */
.clients-section {
  position: relative;
  padding: 100px 0 110px;
  background: #fff;
  overflow: hidden;
}
.clients-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(220,38,38,0.10) 1.5px, transparent 1.5px);
  background-size: 36px 36px;
  z-index: 0;
}
.orb2 {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(220,38,38,0.06) 0%, transparent 70%);
  bottom: -160px;
  left: -100px;
  border-radius: 50%;
  z-index: 0;
  animation: orbPulse 9s ease-in-out infinite reverse;
}
@keyframes orbPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.15); opacity: 1; }
}
.brand-divider {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 28px 40px 52px;
}
.brand-divider::before,
.brand-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(220,38,38,0.25), transparent);
}
.brand-divider-icon {
  width: 10px;
  height: 10px;
  background: #dc2626;
  transform: rotate(45deg);
  box-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
  animation: diamondPulse 2s ease-in-out infinite;
}
@keyframes diamondPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(220,38,38,0.4); }
  50% { box-shadow: 0 0 22px rgba(220,38,38,0.9), 0 0 38px rgba(220,38,38,0.3); }
}

/* =========================================
   BRANDS (Logo Scroll)
========================================= */
.brands {
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
  text-align: center;
}
.brand-track {
  margin-top: 50px;
  overflow: hidden;
  position: relative;
}
.brand-track::before,
.brand-track::after {
  content: "";
  position: absolute;
  top: 0;
  width: 140px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.brand-track::before {
  left: 0;
  background: linear-gradient(to right, #fff 60%, transparent);
}
.brand-track::after {
  right: 0;
  background: linear-gradient(to left, #fff 60%, transparent);
}
.brand-list {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: scrollLogos 25s linear infinite;
}
.brand-list:hover { animation-play-state: paused; }
.brand-item {
  width: 150px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.95;
  transition: all 0.3s ease;
}
.brand-item img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.brand-item:hover img { transform: scale(1.1); }
.brand-item:hover { opacity: 1; }
@keyframes scrollLogos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.brand-stats {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 70px;
  flex-wrap: wrap;
  background: #fff5f5;
  border-top: 1px solid #fee2e2;
  border-bottom: 1px solid #fee2e2;
  padding: 10px 0;
}
.stat-item {
  text-align: center;
  padding: 28px 50px;
  position: relative;
  flex: 1;
  min-width: 150px;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: #fecaca;
}
.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: #dc2626;
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}
.stat-number::after {
  content: attr(data-suffix);
  font-size: 22px;
  color: #ef4444;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #9ca3af;
  font-weight: 600;
}
.brand-tagline {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 50px;
  padding: 0 20px;
}
.brand-tagline p {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #9ca3af;
  font-weight: 600;
}
.brand-tagline p span {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: rgba(220, 38, 38, 0.3);
}

/* =========================================
   CLIENTS (Card Grid)
========================================= */
.clients {
  padding: 110px 6%;
  background: #f9fafb;
}
.clients .section-title h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  color: #111827;
  margin-bottom: 15px;
}
.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}
.client-box {
  position: relative;
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  cursor: pointer;
}
.client-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(220, 38, 38, 0.18);
}
.client-box img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: 0.5s;
  display: block;
}
.client-box:hover img { transform: scale(1.08); }
.client-box h3 {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  backdrop-filter: blur(6px);
  transition: 0.4s;
  z-index: 2;
}
.client-box:hover h3 { background: #dc2626; }
.client-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0.05));
  z-index: 1;
}
.client-box h3,
.client-box img { position: relative; z-index: 2; }

/* =========================================
   TESTIMONIALS
========================================= */
.testimonials {
  padding: 100px 6%;
  background: #f9fafb;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}
.testimonial-card {
  position: relative;
  background: #fff;
  padding: 40px 35px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #f1f5f9;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: 0.4s;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #dc2626, #ef4444);
}
.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.18);
}
.testimonial-card p {
  font-size: 17px;
  line-height: 1.9;
  color: #4b5563;
  margin-bottom: 30px;
  font-style: italic;
}
.testimonial-card h4 { font-size: 22px; font-weight: 700; color: #111827; margin-bottom: 6px; }
.testimonial-card span { font-size: 15px; font-weight: 600; color: #dc2626; }
.testimonial-card::after {
  content: '★★★★★';
  position: absolute;
  top: 22px;
  right: 25px;
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 2px;
}

/* =========================================
   CTA
========================================= */
.cta {
  text-align: center;
  padding: 110px 6%;
  background: linear-gradient(135deg, #7f1d1d, #dc2626, #ef4444);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -150px;
  left: -100px;
  filter: blur(10px);
}
.cta::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  bottom: -140px;
  right: -100px;
  filter: blur(10px);
}
.cta h2 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
  line-height: 1.2;
}
.cta p {
  font-size: 18px;
  margin-bottom: 35px;
  position: relative;
  z-index: 2;
  color: #ffe4e6;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.btn-white {
  padding: 16px 34px;
  border-radius: 14px;
  background: #fff;
  color: #dc2626;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  transition: 0.3s;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}
.btn-white:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.btn-outline-white {
  padding: 16px 34px;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  transition: 0.3s;
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-6px);
  border-color: #fff;
}

/* =========================================
   CONTACT SECTION
========================================= */
.contact-section {
  background: #fff5f5;
  padding: 80px 6%;
}
.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
  align-items: start;
}
.contact-info {
  height: 100%;
}
.contact-info,
.contact-form {
  background: #fff;
  padding: 45px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.contact-info h3 { font-size: 32px; margin-bottom: 30px; color: #111827; }
.contact-info p  { font-size: 17px; line-height: 3; margin-bottom: 18px; color: #4b5563; }
.contact-info strong { color: #dc2626; }
.contact-form form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  font-size: 16px;
  background: #f8fafc;
  outline: none;
  transition: 0.3s;
  font-family: 'Poppins', sans-serif;
  color: #222;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #777; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #dc2626;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
}
.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
  background-color: #f8fafc;
}
.contact-form textarea { resize: none; min-height: 130px; }
.contact-form .btn-submit {
  padding: 16px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  letter-spacing: 0.5px;
  font-family: 'Poppins', sans-serif;
}
.contact-form .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(220, 38, 38, 0.3);
}
.contact-info-panel { height: 100%; }
#indexContactForm input.err,
#indexContactForm select.err,
#indexContactForm textarea.err { border-color: #dc2626 !important; background: #fff8f8 !important; }
#indexContactForm input.ok,
#indexContactForm select.ok,
#indexContactForm textarea.ok { border-color: #16a34a !important; }
.i-err { display: none; align-items: center; gap: 5px; font-size: 12px; color: #dc2626; font-weight: 500; margin-top: 4px; min-height: 16px; }
.i-err.show { display: flex; }
.i-err::before { content: '⚠'; font-size: 11px; }
.i-hint { display: block; font-size: 11px; color: #9ca3af; margin-top: 3px; }
.i-count { font-size: 11px; color: #9ca3af; text-align: right; }
.i-count.warn { color: #dc2626; font-weight: 600; }
.i-success { display: none; background: #f0fdf4; border: 2px solid #16a34a; border-radius: 12px; padding: 18px 22px; text-align: center; margin-top: 16px; }
.i-success.show { display: block; }
.i-success h4 { color: #16a34a; font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.i-success p  { font-size: 13px; color: #166534; }

/* =========================================
   FOOTER
========================================= */
.footer {
  position: relative;
  background: linear-gradient(135deg, #0f172a, #111827, #7f1d1d);
  padding: 90px 6% 30px;
  overflow: hidden;
  color: #fff;
  z-index: 1;
}
.footer::before {
  content: '';
  position: absolute;
  top: -180px; right: -180px;
  width: 420px; height: 420px;
  background: rgba(239, 68, 68, 0.08);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}
.footer::after {
  content: '';
  position: absolute;
  bottom: -160px; left: -160px;
  width: 350px; height: 350px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 0;
}
.footer-top { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 60px; }
.footer-brand { text-align: center; max-width: 950px; margin: auto; }
.footer-logo { width: 140px; height: 110px; margin: auto auto 25px; padding: 12px; border-radius: 24px; display: flex; align-items: center; justify-content: center; transition: 0.4s; }
.footer-logo:hover { transform: translateY(-8px) scale(1.04); }
.footer-logo img { width: 200%; height: 200%; object-fit: contain; }
.footer-brand h2 { font-size: 42px; font-weight: 800; margin-bottom: 18px; letter-spacing: 1px; color: #fff; }
.footer-desc { font-size: 17px; line-height: 2; color: #d1d5db; max-width: 900px; margin: auto; }
.footer-badges { margin-top: 35px; display: flex; justify-content: center; flex-wrap: wrap; gap: 18px; }
.footer-badges span { padding: 12px 22px; border-radius: 50px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); font-size: 15px; font-weight: 700; color: #fff; backdrop-filter: blur(10px); transition: 0.4s; }
.footer-badges span:hover { background: #dc2626; transform: translateY(-5px); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 35px; margin-top: 20px; position: relative; z-index: 2; }
.footer-column { background: rgba(255,255,255,0.05); padding: 35px 30px; border-radius: 24px; border: 1px solid rgba(255,255,255,0.08); backdrop-filter: blur(12px); transition: 0.4s; box-shadow: 0 10px 30px rgba(0,0,0,0.18); }
.footer-column:hover { transform: translateY(-10px); background: rgba(255,255,255,0.08); }
.footer-column h3 { font-size: 20px; font-weight: 800; margin-bottom: 25px; position: relative; padding-bottom: 12px; color: #fff; }
.footer-column h3::after { content: ''; position: absolute; left: 0; bottom: 0; width: 70px; height: 4px; border-radius: 50px; background: linear-gradient(to right, #dc2626, #ef4444); }
.footer-column a { display: block; text-decoration: none; font-size: 16px; font-weight: 500; color: #d1d5db; margin-bottom: 16px; transition: 0.4s; }
.footer-column a:hover { color: #fff; padding-left: 10px; }
.footer-column p { font-size: 14px; line-height: 1.9; color: #d1d5db; margin-bottom: 20px; }
.footer-bottom { position: relative; z-index: 2; text-align: center; margin-top: 60px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: center; }
.footer-bottom p { font-size: 15px; color: #d1d5db; letter-spacing: 0.4px; }

/* =========================================
   WHATSAPP FLOAT
========================================= */
.whatsapp-float {
  position: fixed; bottom: 25px; right: 25px;
  width: 40px; height: 40px;
  background: #ff1c1c; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  z-index: 1000; transition: 0.3s ease;
}
.whatsapp-float img { width: 60px; height: 60px; object-fit: contain; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 15px 35px rgba(37,211,102,0.4); }

/* =========================================
   SERVICE PAGE — HERO
========================================= */
.services-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 170px 6% 100px;
  background: linear-gradient(rgba(0,0,0,0.58), rgba(0,0,0,0.58)), url('../image/banner3.png') center / cover no-repeat;
  position: relative;
  overflow: hidden;
}
.services-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.15);
  top: -100px; right: -100px;
  filter: blur(80px);
  animation: floatShape 7s infinite ease-in-out;
  pointer-events: none;
}
.services-hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  bottom: -120px; left: -120px;
  filter: blur(70px);
  pointer-events: none;
}
@keyframes floatShape {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(30px); }
  100% { transform: translateY(0); }
}
.hero-text { max-width: 900px; z-index: 2; animation: heroZoom 1s ease both; }
.services-hero h1 { font-size: 72px; font-weight: 900; line-height: 1.1; color: #fff; margin-bottom: 25px; }
.services-hero h1 em { font-style: normal; color: #fca5a5; }
.services-hero p { font-size: 19px; line-height: 1.9; color: #e5e7eb; margin-bottom: 40px; max-width: 750px; margin-left: auto; margin-right: auto; }
.hero-stats { display: inline-flex; gap: 0; flex-wrap: wrap; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.3); margin-top: 10px; }
.stat { padding: 24px 36px; text-align: center; background: rgba(255,255,255,0.1); backdrop-filter: blur(14px); border-right: 1px solid rgba(255,255,255,0.15); }
.stat:last-child { border-right: none; }
.stat h3 { font-size: 36px; font-weight: 900; color: #fff; margin-bottom: 4px; }
.stat p  { font-size: 13px; color: rgba(255,255,255,0.75); font-weight: 600; letter-spacing: 0.5px; }

/* =========================================
   SERVICE PAGE — CARDS (detailed)
========================================= */
.services-main { padding: 110px 6%; background: #fff7f7; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; }
.service-card { background: #fff; border-radius: 24px; border: 1px solid #f0f0f0; box-shadow: 0 8px 28px rgba(0,0,0,0.05); transition: 0.4s; overflow: hidden; position: relative; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, #dc2626, #ef4444); }
.service-card:hover { transform: translateY(-14px); box-shadow: 0 24px 50px rgba(220,38,38,0.18); }
.card-image { width: 100%; height: 180px; overflow: hidden; }
.card-image-bg { width: 100%; height: 100%; }
.card-image-bg img { width: 100%; height: 100%; object-fit: fill; display: block; transition: transform 0.4s ease; }
.service-card:hover .card-image-bg img { transform: scale(1.08); }
.card-body { padding: 30px 32px 32px; }
.card-tag { display: inline-block; padding: 5px 14px; border-radius: 50px; font-size: 11px; font-weight: 800; background: #fee2e2; color: #dc2626; letter-spacing: 0.5px; margin-bottom: 16px; text-transform: uppercase; }
.card-body h3 { font-size: 24px; font-weight: 800; margin-bottom: 12px; color: #111827; }
.card-body p  { font-size: 15px; line-height: 1.8; color: #6b7280; margin-bottom: 22px; }
.card-features { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.card-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #374151; font-weight: 500; }
.card-features li::before { content: '✓'; width: 22px; height: 22px; border-radius: 50%; background: #fee2e2; color: #dc2626; font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.card-cta { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; padding: 12px 22px; border-radius: 12px; background: linear-gradient(135deg, #dc2626, #ef4444); color: #fff; text-decoration: none; font-weight: 700; font-size: 14px; transition: 0.3s; box-shadow: 0 8px 20px rgba(220,38,38,0.25); }
.card-cta:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(220,38,38,0.3); }
.card-cta-arrow { transition: 0.3s; }
.card-cta:hover .card-cta-arrow { transform: translateX(4px); }

/* =========================================
   PROCESS STEPS
========================================= */
.process { padding: 110px 6%; background: #fff; }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 44px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, #fee2e2, #dc2626, #fee2e2); z-index: 0; }
.step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-num { width: 88px; height: 88px; border-radius: 50%; background: linear-gradient(135deg, #dc2626, #ef4444); color: #fff; font-size: 26px; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 28px; box-shadow: 0 14px 30px rgba(220,38,38,0.3); border: 4px solid #fff; outline: 3px solid #fee2e2; }
.step h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.step p  { font-size: 14px; color: #6b7280; line-height: 1.7; }

/* =========================================
   WHY CHOOSE (compact grid — service page)
========================================= */
.why { padding: 90px 6%; background: #f9fafb; text-align: center; position: relative; overflow: hidden; }
.why .section-title h2 { font-size: 38px; font-weight: 800; letter-spacing: -0.5px; }
.why .section-title p  { color: #666; font-size: 15px; }
.why-grid-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 50px; }
.why-box { background: #fff; border: 0.5px solid #e0e0e0; border-radius: 12px; padding: 1.25rem 1rem; text-align: left; transition: 0.3s; }
.why-box:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(0,0,0,0.08); }
.why-box-icon { width: 44px; height: 44px; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; position: relative; flex-shrink: 0; }
.why-box-icon .badge { position: absolute; bottom: -4px; right: -4px; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.why-box h4 { font-weight: 600; font-size: 14px; margin: 0 0 6px; color: #111; }
.why-box p  { font-size: 13px; color: #666; margin: 0; line-height: 1.5; }

/* =========================================
   ANIMATIONS
========================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =================================================================
   MEDIA QUERIES
   KEY FIX: iPad Pro (1024px) gets hamburger menu.
   We switch from desktop nav → hamburger at 1180px
   so tablets including iPad Pro (1024px) use the mobile nav.
================================================================= */

/* ── max-width: 1180px  (iPad Pro + smaller tablets) ── */
@media (max-width: 1180px) {
  /* Show hamburger, hide desktop nav */
  .hamburger { display: flex; }
  nav { display: none; }
  .call-btn { display: none; }

  .header { padding: 12px 5%; }
  .logo h2 { font-size: 22px; }
  .logo img { width: 75px; }
  .logo span { display: none; }

  /* Carousel */
  .carousel-track { height: 520px; }
  .carousel-slide-label { font-size: 17px; padding: 11px 28px; }

  /* Sections */
  .section-title h2 { font-size: 40px; }
  .page-hero { padding: 160px 5% 100px; }
  .page-hero h1 { font-size: 58px; }
  .page-hero p { font-size: 17px; }

  .about-content h3 { font-size: 34px; }
  .service-cards { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .cta h2 { font-size: 40px; }
  .contact-info, .contact-form { padding: 35px; }
  .contact-info h3 { font-size: 26px; }
  .footer-brand h2 { font-size: 34px; }
  .stat-item { padding: 24px 30px; }
  .experience-box { right: 0; bottom: -15px; padding: 20px 25px; }
  .experience-box h3 { font-size: 42px; }

  /* Services page */
  .services-hero { padding: 150px 5% 90px; }
  .services-hero h1 { font-size: 54px; }
  .services-hero p  { font-size: 17px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .why .section-title h2 { font-size: 32px; }
  .why-grid-inner { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .stat { padding: 20px 28px; }
  .stat h3 { font-size: 30px; }
}

/* ── max-width: 900px ── */
@media (max-width: 900px) {
  .header { padding: 12px 4%; }
  .logo h2 { font-size: 18px; }
  .logo img { width: 65px; }

  .carousel-track { height: 440px; }
  .page-hero { padding: 160px 5% 90px; }
  .page-hero h1 { font-size: 50px; }
  .page-hero p { font-size: 16px; line-height: 1.8; }

  .about, .about-company { padding: 80px 5%; }
  .about-container { grid-template-columns: 1fr; gap: 40px; }
  .experience-box { right: 10px; bottom: 10px; }
  .about-content h3 { font-size: 28px; }
  .section-title h2 { font-size: 36px; }
  .service-cards { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .client-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .premium-about, .about-stats, .team-section { padding: 80px 5%; }
  .clients-section { padding: 70px 0 80px; }
  .cta { padding: 80px 5%; }
  .cta h2 { font-size: 34px; }
  .contact-section { padding: 60px 5%; }
  .contact-info h3 { font-size: 24px; }
  .footer { padding: 70px 5% 25px; }
  .footer-brand h2 { font-size: 30px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-card h2 { font-size: 46px; }
  .services-hero { padding: 140px 5% 80px; }
  .services-hero h1 { font-size: 44px; }
  .services-hero p  { font-size: 16px; }
  .hero-stats { flex-wrap: wrap; }
  .stat { padding: 18px 24px; }
  .stat h3 { font-size: 28px; }
  .services-main, .process, .why { padding: 80px 5%; }
  .service-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .card-body { padding: 24px 24px 26px; }
  .card-body h3 { font-size: 21px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .why .section-title h2 { font-size: 30px; }
  .why-grid-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ── max-width: 768px ── */
@media (max-width: 768px) {
  .header { padding: 10px 4%; }
  .logo h2 { font-size: 16px; }
  .logo img { width: 58px; }
  .logo span { display: none; }

  /* Section title — remove the margin-top that was being set per-page */
  .section-title h2 { margin-top: 0; font-size: 30px; }

  .carousel-track { height: 360px; }
  .carousel-slide-label { font-size: 13px; padding: 9px 18px; bottom: 44px; }
  .carousel-btn { width: 40px; height: 40px; font-size: 16px; }
  .section-title p  { font-size: 13px; letter-spacing: 2px; }

  .page-hero { min-height: auto; padding: 140px 5% 80px; }
  .page-hero h1 { font-size: 42px; line-height: 1.2; }
  .page-hero p { font-size: 16px; line-height: 1.7; }
  .hero-buttons { display: flex; flex-direction: column; gap: 15px; align-items: center; }

  .about { padding: 70px 5%; }
  .about-container { gap: 36px; }
  .about-content h3 { font-size: 26px; }
  .about-content p  { font-size: 15px; }
  .about-features { grid-template-columns: 1fr 1fr; }
  .feature-box { font-size: 14px; padding: 14px 16px; }

  .services-advanced { padding: 60px 16px; }
  .services-advanced h2 { font-size: 26px; }
  .service-cards { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 8px 0; }
  .card img { height: 150px; }
  .card h4 { font-size: 15px; }
  .card p  { font-size: 13px; }

  .why-us { padding: 70px 5%; }
  .why-grid { grid-template-columns: 1fr; }
  .why-image { height: 200px; }
  .why-card h3 { font-size: 22px; }

  .gallery { padding: 70px 5%; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .gallery-grid img { height: 220px; }

  .clients { padding: 70px 5%; }
  .clients .section-title h2 { font-size: 34px; }
  .client-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .client-box img { height: 190px; }
  .client-box h3 { font-size: 15px; padding: 9px 16px; }

  .testimonials { padding: 70px 5%; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 30px 24px; }
  .testimonial-card p  { font-size: 15px; }
  .testimonial-card h4 { font-size: 18px; }

  .premium-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
  .premium-card { padding: 30px 22px; }
  .premium-card h3 { font-size: 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
  .stat-card { padding: 35px 20px; }
  .stat-card h2 { font-size: 40px; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
  .team-image { height: 210px; }
  .team-content { padding: 22px; }
  .team-content h3 { font-size: 20px; }

  .cta { padding: 70px 5%; }
  .cta h2 { font-size: 30px; }
  .cta p  { font-size: 16px; }
  .btn-primary, .btn-outline { padding: 14px 28px; font-size: 15px; }

  .contact-section { padding: 50px 5%; }
  .contact-container { gap: 30px; }
  .contact-info, .contact-form { padding: 28px; }
  .contact-info h3 { font-size: 22px; }
  .contact-info p  { font-size: 15px; }
  .contact-form input, .contact-form select, .contact-form textarea { padding: 13px 14px; font-size: 15px; }

  .footer { padding: 60px 5% 18px; }
  .footer-brand h2 { font-size: 26px; }
  .footer-desc { font-size: 15px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .footer-column { padding: 24px 20px; }
  .footer-column h3 { font-size: 20px; }
  .footer-bottom { margin-top: 48px; }

  .stat-item { padding: 20px 18px; min-width: 120px; }
  .stat-number { font-size: 34px; }
  .brand-divider { margin: 20px 20px 36px; }
  .experience-box { padding: 16px 20px; }
  .experience-box h3 { font-size: 36px; }

  .services-hero { padding: 130px 4% 75px; min-height: auto; }
  .services-hero h1 { font-size: 36px; }
  .services-hero p  { font-size: 15px; }
  .stat { padding: 16px 22px; }
  .stat h3 { font-size: 26px; }
  .stat p  { font-size: 12px; }
  .services-main, .process, .why { padding: 70px 4%; }
  .service-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .card-image { height: 155px; }
  .card-body { padding: 22px 20px 24px; }
  .card-body h3 { font-size: 20px; }
  .card-body p  { font-size: 14px; margin-bottom: 16px; }
  .card-features li { font-size: 13px; }
  .card-cta { font-size: 13px; padding: 11px 18px; margin-top: 18px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 36px; }
  .step-num { width: 76px; height: 76px; font-size: 22px; }
  .step h3 { font-size: 16px; }
  .step p  { font-size: 13px; }
  .why .section-title h2 { font-size: 26px; }
  .why-grid-inner { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .why-box { padding: 1.1rem 0.9rem; }
}

/* ── max-width: 576px ── */
@media (max-width: 576px) {
  .header { padding: 10px 4%; }
  .logo h2 { font-size: 14px; letter-spacing: 0; }
  .logo img { width: 50px; }
  .hero { margin-top: -4vw; }

  .section-title h2 { margin-top: 0; }

  .page-hero { padding: 120px 4% 70px; }
  .page-hero h1 { font-size: 32px; }
  .page-hero p { font-size: 15px; line-height: 1.7; }
  .page-hero-tag { font-size: 13px; padding: 9px 20px; }
  .btn-primary, .btn-outline { width: 100%; max-width: 260px; }

  .carousel-track { height: 260px; }
  .carousel-dots { bottom: 12px; }
  .carousel-dot { width: 8px; height: 8px; }
  .carousel-dot.active { width: 20px; }
  .carousel-btn { width: 34px; height: 34px; font-size: 14px; }
  .carousel-slide-label { display: none; }

  .section-title h2 { font-size: 26px; letter-spacing: 1px; }

  .about { padding: 55px 4%; }
  .about-content h3 { font-size: 22px; }
  .about-content p  { font-size: 14px; }
  .about-features { grid-template-columns: 1fr; gap: 14px; }
  .feature-box { padding: 14px 18px; }

  .services-advanced { padding: 50px 12px; }
  .services-advanced h2 { font-size: 22px; }
  .service-cards { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 4px 0; }
  .card { border-radius: 14px; }
  .card img { height: 120px; }
  .card h4 { font-size: 13px; margin: 10px 10px 6px; }
  .card p  { font-size: 12px; padding: 0 10px; }
  .card .icon { font-size: 16px; padding: 5px 7px; }

  .why-us { padding: 55px 4%; }
  .why-card h3 { font-size: 20px; }
  .why-card p  { font-size: 14px; }

  .gallery { padding: 55px 4%; }
  .gallery-grid { grid-template-columns: 1fr; gap: 14px; }
  .gallery-grid img { height: 220px; border-radius: 16px; }

  .clients { padding: 55px 4%; }
  .clients .section-title h2 { font-size: 26px; }
  .client-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .client-box img { height: 160px; }
  .client-box h3 { font-size: 13px; padding: 8px 12px; left: 12px; bottom: 12px; }

  .testimonials { padding: 55px 4%; }
  .testimonial-card p  { font-size: 14px; }
  .testimonial-card h4 { font-size: 16px; }
  .testimonial-card span { font-size: 13px; }

  .premium-grid { grid-template-columns: 1fr; gap: 20px; }
  .about-company, .premium-about, .about-stats, .team-section { padding: 60px 4%; }
  .section-title { margin-bottom: 45px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-card { padding: 28px 15px; }
  .stat-card h2 { font-size: 34px; }
  .team-grid { grid-template-columns: 1fr; gap: 20px; }
  .team-image { height: 220px; }

  .cta { padding: 55px 4%; }
  .cta h2 { font-size: 26px; }
  .cta p  { font-size: 15px; }
  .hero-buttons { flex-direction: column; align-items: center; gap: 14px; }
  .btn-primary, .btn-outline { width: 100%; max-width: 280px; text-align: center; padding: 14px 20px; }

  .contact-section { padding: 40px 4%; }
  .contact-info, .contact-form { padding: 22px 18px; }
  .contact-info h3 { font-size: 20px; }
  .contact-info p  { font-size: 14px; margin-bottom: 12px; }
  .contact-form input, .contact-form select, .contact-form textarea { padding: 12px 13px; font-size: 14px; }

  .footer { padding: 50px 4% 16px; }
  .footer-brand h2 { font-size: 22px; }
  .footer-desc { font-size: 14px; line-height: 1.8; }
  .footer-grid { grid-template-columns: 1fr; gap: 14px; }
  .footer-column { padding: 20px 18px; }
  .footer-column h3 { font-size: 18px; }
  .footer-column a, .footer-column p { font-size: 14px; }
  .footer-bottom { margin-top: 36px; }
  .footer-bottom p { font-size: 13px; }
  .footer-badges span { padding: 9px 16px; font-size: 13px; }

  .whatsapp-float { width: 50px; height: 50px; bottom: 16px; right: 16px; }
  .whatsapp-float img { width: 50px; height: 50px; }
  .mobile-nav a { font-size: 22px; padding: 12px 30px; }
  .mobile-nav .mob-call { font-size: 16px; padding: 13px 34px; }

  .brand-stats { flex-direction: row; flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; min-width: unset; padding: 18px 12px; }
  .stat-item:not(:last-child)::after { display: none; }
  .brand-tagline p { font-size: 10px; letter-spacing: 1.5px; }
  .experience-box { right: 5px; bottom: 5px; padding: 12px 16px; }
  .experience-box h3 { font-size: 30px; }

  .services-hero { padding: 120px 4% 70px; min-height: auto; }
  .services-hero h1 { font-size: 28px; line-height: 1.2; }
  .services-hero p  { font-size: 14px; line-height: 1.8; margin-bottom: 28px; }
  .hero-stats { flex-direction: column; border-radius: 16px; width: 100%; max-width: 280px; margin: 0 auto; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 16px 24px; }
  .stat:last-child { border-bottom: none; }
  .stat h3 { font-size: 28px; }
  .stat p  { font-size: 12px; }

  .services-main, .process, .why { padding: 55px 4%; }
  .section-title .label { font-size: 12px; padding: 6px 16px; margin-bottom: 12px; }
  .service-grid { grid-template-columns: 1fr; gap: 20px; }
  .card-image { height: 170px; }
  .card-body { padding: 20px 18px 22px; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .step-num { width: 70px; height: 70px; font-size: 22px; }
  .why .section-title h2 { font-size: 22px; }
  .why-grid-inner { grid-template-columns: 1fr; gap: 12px; }
  .why-box { padding: 1rem; }
  .cta-buttons { flex-direction: column; align-items: center; gap: 14px; }
  .btn-white, .btn-outline-white { width: 100%; max-width: 280px; text-align: center; padding: 14px 24px; font-size: 15px; }
}

/* ── max-width: 400px ── */
@media (max-width: 400px) {
  .header { padding: 8px 4%; gap: 8px; }
  .logo h2 { font-size: 13px; }
  .logo img { width: 46px !important; }
  .hero { margin-top: -4vw; }
  .section-title h2 { margin-top: 0; }

  .page-hero { padding: 110px 4% 60px; background-position: center; }
  .page-hero h1 { font-size: 26px; }
  .page-hero p { font-size: 14px; line-height: 1.6; }
  .page-hero-tag { font-size: 12px; padding: 8px 18px; }
  .btn-primary, .btn-outline { font-size: 14px; padding: 12px 20px; }

  .carousel-track { height: 220px; }
  .section-title h2 { font-size: 22px; }
  .section-title p  { font-size: 13px; }
  .about { padding: 44px 4%; }
  .about-content h3 { font-size: 21px; }
  .services-advanced h2 { font-size: 18px; margin-bottom: 30px; }
  .service-cards { grid-template-columns: 1fr 1fr; gap: 10px; }
  .card img { height: 100px; }
  .card h4 { font-size: 12px; margin: 8px 8px 4px; }
  .card p  { font-size: 11px; padding: 0 8px; }
  .gallery-grid img { height: 190px; }
  .client-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .client-box img { height: 140px; }
  .client-box h3 { font-size: 12px; padding: 6px 10px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-card h2 { font-size: 28px; }
  .cta h2 { font-size: 22px; }
  .cta p  { font-size: 13px; }
  .contact-section { padding: 32px 4%; }
  .contact-info, .contact-form { padding: 18px 14px; }
  .contact-info h3 { font-size: 18px; }
  .footer { padding: 60px 4% 20px; }
  .footer-brand h2 { font-size: 20px; }
  .footer-logo { width: 100px; height: 80px; }
  .team-content h3 { font-size: 18px; }
  .mobile-nav a { font-size: 20px; padding: 10px 24px; }
  .mobile-nav .mob-call { font-size: 15px; padding: 12px 28px; }
  .stat-number { font-size: 28px; }
  .services-hero { padding: 110px 3% 60px; }
  .services-hero h1 { font-size: 22px; }
  .services-hero p  { font-size: 13px; }
  .stat h3 { font-size: 24px; }
  .services-main, .process, .why { padding: 45px 3%; }
  .card-image { height: 145px; }
  .card-body { padding: 16px 14px 18px; }
  .card-body h3 { font-size: 18px; }
  .card-features li { font-size: 12px; gap: 8px; }
  .card-features li::before { width: 18px; height: 18px; font-size: 11px; }
  .card-cta { font-size: 13px; padding: 10px 16px; margin-top: 16px; }
  .step-num { width: 60px; height: 60px; font-size: 18px; }
  .step h3 { font-size: 14px; }
  .step p  { font-size: 12px; }
  .why-box h4 { font-size: 13px; }
  .why-box p  { font-size: 12px; }
  .why-box-icon { width: 38px; height: 38px; }
  .btn-white, .btn-outline-white { font-size: 14px; padding: 12px 20px; }
}

/* =========================================================
   CONTACT PAGE HERO
========================================================= */
.contact-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 170px 6% 100px;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
              url('../image/About.png') center / cover no-repeat;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.15);
  top: -100px; right: -100px;
  filter: blur(80px);
  animation: floatShape 7s infinite ease-in-out;
  pointer-events: none;
}
.contact-hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  bottom: -120px; left: -120px;
  filter: blur(70px);
  pointer-events: none;
}
.contact-hero h1 {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 25px;
}
.contact-hero h1 em { font-style: normal; color: #fca5a5; }
.contact-hero p {
  font-size: 19px;
  line-height: 1.9;
  color: #e5e7eb;
  margin-bottom: 40px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
   GALLERY PAGE HERO
========================================================= */
.gallery-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 170px 6% 100px;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
              url('../image/Mall.png') center / cover no-repeat;
  position: relative;
  overflow: hidden;
}
.gallery-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.15);
  top: -100px; right: -100px;
  filter: blur(80px);
  animation: floatShape 7s infinite ease-in-out;
  pointer-events: none;
}
.gallery-hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  bottom: -120px; left: -120px;
  filter: blur(70px);
  pointer-events: none;
}
.gallery-hero h1 {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 25px;
}
.gallery-hero h1 em { font-style: normal; color: #fca5a5; }
.gallery-hero p {
  font-size: 19px;
  line-height: 1.9;
  color: #e5e7eb;
  margin-bottom: 40px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
   CONTACT PAGE — QUICK CONTACT CARDS
========================================================= */
.quick-contact { padding: 110px 6%; background: #fff7f7; }
.quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
}
.quick-card {
  background: #fff;
  padding: 45px 35px;
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1f5f9;
  transition: 0.5s;
}
.quick-card:hover { transform: translateY(-12px); box-shadow: 0 25px 50px rgba(220, 38, 38, 0.2); }
.qc-icon { font-size: 42px; margin-bottom: 18px; }
.quick-card h3 { font-size: 22px; font-weight: 800; color: #111827; margin-bottom: 12px; }
.quick-card p { font-size: 15px; color: #6b7280; line-height: 1.8; margin-bottom: 22px; }
.quick-card a {
  display: inline-block;
  padding: 12px 26px;
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: #fff;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.25);
}
.quick-card a:hover { background: linear-gradient(135deg, #7f1d1d, #dc2626); transform: translateY(-4px); box-shadow: 0 14px 28px rgba(220, 38, 38, 0.35); }

/* =========================================================
   CONTACT PAGE — MAIN FORM + INFO PANEL
========================================================= */
.contact-main { padding: 110px 6%; background: #fff; }
.contact-main .contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info-panel {
  background: linear-gradient(160deg, #7f1d1d 0%, #dc2626 100%);
  border-radius: 24px;
  padding: 45px;
  color: #fff;
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.3);
}
.info-panel-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}
.info-panel-logo img { width: 54px; height: 54px; object-fit: contain; border-radius: 12px; background: rgba(255,255,255,0.15); padding: 6px; }
.info-panel-logo h3 { font-size: 16px; font-weight: 800; color: #fff; }
.info-panel-logo span { font-size: 12px; color: rgba(255,255,255,0.75); display: block; }
.info-panel-title { font-size: 30px; font-weight: 900; color: #fff; margin-bottom: 14px; }
.info-panel-sub { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.9; margin-bottom: 30px; }
.info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
.info-item-icon { font-size: 22px; flex-shrink: 0; width: 48px; height: 48px; background: rgba(255,255,255,0.12); border-radius: 14px; display: flex; align-items: center; justify-content: center; }
.info-item-text h4 { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.65); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 5px; }
.info-item-text p { font-size: 15px; color: #fff; line-height: 1.6; }
.info-item-text p a { color: #fca5a5; text-decoration: none; }
.info-item-text p a:hover { text-decoration: underline; }
.info-divider { border: none; border-top: 1px solid rgba(255,255,255,0.18); margin: 24px 0; }
.info-hours h4 { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.65); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
.hour-row { display: flex; justify-content: space-between; font-size: 14px; color: #fff; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.hour-row:last-child { border-bottom: none; }
.hour-row .day { font-weight: 600; }
.hour-row .time { font-weight: 700; color: #fca5a5; }
.hour-row.closed .time { color: rgba(255,255,255,0.45); }
.social-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.social-btn { flex: 1; min-width: 80px; text-align: center; padding: 12px 14px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: 14px; color: #fff; font-size: 13px; font-weight: 700; text-decoration: none; transition: 0.3s; }
.social-btn:hover { background: rgba(255,255,255,0.25); transform: translateY(-4px); }

.contact-form-panel {
  background: #fff;
  border-radius: 24px;
  padding: 45px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border: 1px solid #f1f5f9;
}
.form-title { font-size: 30px; font-weight: 900; color: #111827; margin-bottom: 10px; }
.form-sub { font-size: 15px; color: #6b7280; line-height: 1.7; margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form-panel .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.contact-form-panel .form-group label { font-size: 14px; font-weight: 700; color: #374151; }
.contact-form-panel .form-group label .req { color: #dc2626; }
.contact-form-panel .form-group input,
.contact-form-panel .form-group select,
.contact-form-panel .form-group textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  color: #111827;
  background: #f8fafc;
  outline: none;
  transition: 0.3s;
}
.contact-form-panel .form-group input:focus,
.contact-form-panel .form-group select:focus,
.contact-form-panel .form-group textarea:focus { border-color: #dc2626; background: #fff; box-shadow: 0 0 0 4px rgba(220,38,38,0.08); }
.contact-form-panel .form-group input.ok,
.contact-form-panel .form-group select.ok,
.contact-form-panel .form-group textarea.ok { border-color: #16a34a; background: #f0fdf4; }
.contact-form-panel .form-group input.err,
.contact-form-panel .form-group select.err,
.contact-form-panel .form-group textarea.err { border-color: #dc2626; background: #fff8f8; }
.contact-form-panel .form-group textarea { min-height: 130px; resize: vertical; }
.contact-form-panel .form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
  background-color: #f8fafc;
}
.err-msg { display: none; font-size: 12px; color: #dc2626; font-weight: 600; }
.err-msg.show { display: block; }
.hint { font-size: 11px; color: #9ca3af; line-height: 1.4; }
.char-row { display: flex; justify-content: space-between; align-items: center; margin-top: 4px; }
.char-count { font-size: 12px; color: #9ca3af; font-weight: 600; }
.char-count.warn { color: #dc2626; }
.submit-btn {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: 0.4s;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 25px rgba(220,38,38,0.3);
  margin-top: 8px;
}
.submit-btn:hover { background: linear-gradient(135deg, #7f1d1d, #dc2626); transform: translateY(-4px); box-shadow: 0 18px 36px rgba(220,38,38,0.4); }
.form-note { font-size: 13px; color: #9ca3af; text-align: center; margin-top: 14px; }
.success-msg { display: none; background: #f0fdf4; border: 2px solid #16a34a; border-radius: 16px; padding: 30px; text-align: center; }
.success-msg.show { display: block; }
.success-msg h4 { font-size: 20px; font-weight: 800; color: #15803d; margin-bottom: 10px; }
.success-msg p  { font-size: 15px; color: #166534; line-height: 1.7; }

/* =========================================================
   CONTACT PAGE — MAP
========================================================= */
.map-section { padding: 110px 6%; background: #f9fafb; }
.map-wrapper { position: relative; max-width: 1200px; margin: 0 auto; border-radius: 28px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.map-wrapper iframe { width: 100%; height: 500px; border: none; display: block; }
.map-badge { position: absolute; top: 22px; left: 22px; background: #fff; border-radius: 18px; padding: 16px 22px; display: flex; align-items: center; gap: 14px; box-shadow: 0 10px 28px rgba(0,0,0,0.14); z-index: 10; }
.map-badge-icon { font-size: 30px; }
.map-badge-text h4 { font-size: 14px; font-weight: 800; color: #111827; }
.map-badge-text p  { font-size: 12px; color: #6b7280; }

/* =========================================================
   CONTACT PAGE — FAQ
========================================================= */
.faq-section { padding: 110px 6%; background: #fff; }
.faq-grid { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 18px; }
.faq-item { background: #fff; border-radius: 20px; border: 1px solid #f1f5f9; box-shadow: 0 6px 20px rgba(0,0,0,0.05); overflow: hidden; transition: 0.3s; }
.faq-item:hover { box-shadow: 0 16px 36px rgba(220,38,38,0.1); border-color: #fca5a5; }
.faq-item.open  { border-color: #dc2626; }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 22px 28px; cursor: pointer; gap: 16px; }
.faq-q span { font-size: 16px; font-weight: 700; color: #111827; line-height: 1.5; }
.faq-icon { flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; background: #fee2e2; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 700; color: #dc2626; transition: 0.35s; }
.faq-item.open .faq-icon { background: #dc2626; color: #fff; transform: rotate(45deg); }
.faq-a { display: none; padding: 0 28px 22px; font-size: 15px; color: #4b5563; line-height: 1.85; }
.faq-item.open .faq-a { display: block; }

/* =========================================================
   GALLERY PAGE — FILTER BAR
========================================================= */
.gallery-section { padding: 110px 6%; background: #fff7f7; }
.filter-bar { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-bottom: 55px; }
.filter-btn { padding: 12px 24px; border: 2px solid #e5e7eb; border-radius: 50px; background: #fff; font-size: 14px; font-weight: 700; font-family: 'Poppins', sans-serif; color: #374151; cursor: pointer; transition: 0.3s; box-shadow: 0 4px 12px rgba(0,0,0,0.04); }
.filter-btn:hover { border-color: #dc2626; color: #dc2626; }
.filter-btn.active { background: linear-gradient(135deg, #dc2626, #ef4444); border-color: transparent; color: #fff; box-shadow: 0 8px 22px rgba(220,38,38,0.3); }

/* =========================================================
   GALLERY PAGE — GRID & ITEMS
========================================================= */
.gallery-item { position: relative; border-radius: 24px; overflow: hidden; cursor: pointer; box-shadow: 0 12px 35px rgba(0,0,0,0.08); transition: 0.4s; background: #fff; border: 1px solid rgba(220,38,38,0.08); }
.gallery-item img { width: 100%; height: 240px; object-fit: cover; display: block; transition: 0.5s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover { transform: translateY(-12px); box-shadow: 0 20px 45px rgba(220,38,38,0.2); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(127,29,29,0.92) 0%, rgba(220,38,38,0.5) 55%, transparent 100%); opacity: 0; transition: opacity 0.4s ease; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.overlay-tag { display: inline-block; padding: 5px 14px; background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.3); border-radius: 50px; font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 8px; width: fit-content; }
.gallery-overlay h4 { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 5px; }
.gallery-overlay p { font-size: 14px; color: rgba(255,255,255,0.85); }
.zoom-icon { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; opacity: 0; transition: opacity 0.35s; }
.gallery-item:hover .zoom-icon { opacity: 1; }

/* =========================================================
   GALLERY PAGE — LIGHTBOX
========================================================= */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 99999; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.35s ease, visibility 0.35s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lb-content { max-width: 920px; width: 90%; text-align: center; }
.lb-img { width: 100%; max-height: 72vh; object-fit: contain; border-radius: 20px; box-shadow: 0 24px 60px rgba(0,0,0,0.6); }
.lb-info { margin-top: 20px; }
.lb-info h3 { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.lb-info p  { font-size: 14px; color: rgba(255,255,255,0.7); }
.lb-close { position: fixed; top: 22px; right: 26px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); color: #fff; font-size: 20px; width: 46px; height: 46px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.lb-close:hover { background: #dc2626; }
.lb-arrow { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); color: #fff; font-size: 24px; width: 54px; height: 54px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.lb-arrow:hover { background: #dc2626; }
.lb-prev { left: 18px; }
.lb-next { right: 18px; }

/* =========================================================
   GALLERY PAGE — COUNTER STRIP
========================================================= */
.counter-strip { background: linear-gradient(135deg, #7f1d1d, #dc2626, #ef4444); padding: 80px 6%; text-align: center; position: relative; overflow: hidden; }
.counter-strip::before { content: ''; position: absolute; width: 400px; height: 400px; background: rgba(255,255,255,0.08); border-radius: 50%; top: -150px; left: -100px; filter: blur(10px); }
.counter-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; max-width: 1000px; margin: 0 auto; position: relative; z-index: 2; }
.counter-item { padding: 30px 20px; border-right: 1px solid rgba(255,255,255,0.18); }
.counter-item:last-child { border-right: none; }
.counter-item h2 { font-size: 56px; font-weight: 900; color: #fff; margin-bottom: 10px; }
.counter-item p { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.75); letter-spacing: 2px; text-transform: uppercase; }

/* =========================================================
   GALLERY PAGE — VIDEO SECTION
========================================================= */
.video-section { padding: 110px 6%; background: #f9fafb; }
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 35px; max-width: 1200px; margin: 0 auto; }
.video-card { position: relative; border-radius: 24px; overflow: hidden; cursor: pointer; box-shadow: 0 12px 35px rgba(0,0,0,0.08); transition: 0.4s; }
.video-card:hover { transform: translateY(-12px); box-shadow: 0 20px 45px rgba(220,38,38,0.18); }
.video-thumb { width: 100%; height: 240px; object-fit: cover; display: block; transition: 0.5s; }
.video-card:hover .video-thumb { transform: scale(1.08); }
.play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -60%); width: 70px; height: 70px; background: rgba(255,255,255,0.92); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; color: #dc2626; box-shadow: 0 10px 28px rgba(0,0,0,0.22); transition: 0.3s; }
.video-card:hover .play-btn { background: #dc2626; color: #fff; transform: translate(-50%, -60%) scale(1.12); }
.video-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; background: linear-gradient(to top, rgba(0,0,0,0.88), transparent); }
.video-label span { display: inline-block; padding: 5px 14px; background: #dc2626; color: #fff; font-size: 12px; font-weight: 700; border-radius: 50px; margin-bottom: 8px; }
.video-label h4 { font-size: 17px; font-weight: 700; color: #fff; }

/* =========================================================
   GALLERY PAGE — WHY SECTION
========================================================= */
.why-section { padding: 100px 6%; background: #fff; }
.why-section .why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 35px; max-width: 1200px; margin: 0 auto; }
.why-section .why-card { background: #fff; border-radius: 24px; padding: 40px 35px; border: 1px solid #f1f5f9; box-shadow: 0 10px 30px rgba(0,0,0,0.06); transition: 0.4s; overflow: visible; }
.why-section .why-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(220,38,38,0.15); }
.why-icon-wrap { position: relative; width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.why-section .why-card .badge { position: absolute; bottom: -4px; right: -4px; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; }
.why-section .why-card h3 { font-size: 22px; font-weight: 800; color: #111827; padding: 0; margin-bottom: 12px; }
.why-section .why-card p { font-size: 15px; color: #6b7280; line-height: 1.85; padding: 0; }

/* =========================================================
   GALLERY PAGE — TESTIMONIALS
========================================================= */
.t-card { position: relative; background: #fff; padding: 40px 35px; border-radius: 24px; border: 1px solid #f1f5f9; box-shadow: 0 10px 30px rgba(0,0,0,0.06); transition: 0.4s; overflow: hidden; }
.t-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: linear-gradient(to right, #dc2626, #ef4444); }
.t-card::after { content: '★★★★★'; position: absolute; top: 22px; right: 25px; color: #f59e0b; font-size: 16px; letter-spacing: 2px; }
.t-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(220,38,38,0.18); }
.t-stars { color: #f59e0b; font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.t-card p { font-size: 16px; line-height: 1.9; color: #4b5563; margin-bottom: 28px; font-style: italic; }
.t-card h4 { font-size: 20px; font-weight: 700; color: #111827; margin-bottom: 6px; }
.t-card span { font-size: 14px; font-weight: 600; color: #dc2626; }

/* =========================================================
   MOBILE NAV DRAWER (gallery page variant)
========================================================= */
.mobile-nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 997; opacity: 0; visibility: hidden; transition: opacity 0.35s, visibility 0.35s; }
.mobile-nav-overlay.active { opacity: 1; visibility: visible; }
.mobile-nav-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 22px 16px; border-bottom: 1px solid rgba(255,255,255,0.15); }
.logo-mini { display: flex; align-items: center; gap: 10px; }
.logo-mini img { width: 36px; height: 36px; object-fit: contain; border-radius: 8px; }
.logo-mini span { font-size: 13px; font-weight: 800; color: #fff; }
.mobile-nav-close { background: rgba(255,255,255,0.15); border: none; color: #fff; font-size: 18px; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.mobile-nav-close:hover { background: rgba(255,255,255,0.3); }
.mobile-nav-links { flex: 1; display: flex; flex-direction: column; padding: 20px 0; overflow-y: auto; }
.mobile-nav-links a { display: flex; align-items: center; gap: 12px; padding: 14px 24px; font-size: 17px; font-weight: 700; color: rgba(255,255,255,0.88); text-decoration: none; width: 100%; text-align: left; border-radius: 0; transition: 0.3s; }
.mobile-nav-links a:hover, .mobile-nav-links a.active { background: rgba(255,255,255,0.15); color: #fff; padding-left: 34px; }
.nav-icon { font-size: 18px; }
.mobile-nav-footer { padding: 20px 22px; border-top: 1px solid rgba(255,255,255,0.15); display: flex; flex-direction: column; gap: 10px; }
.mobile-call-btn, .mobile-wa-btn { display: block; text-align: center; padding: 14px; border-radius: 14px; font-size: 15px; font-weight: 800; text-decoration: none; transition: 0.3s; font-family: 'Poppins', sans-serif; }
.mobile-call-btn { background: #fff; color: #dc2626; }
.mobile-call-btn:hover { background: #fee2e2; }
.mobile-wa-btn { background: #25d366; color: #fff; }
.mobile-wa-btn:hover { background: #1ebe5a; }

/* =========================================================
   CONTACT & GALLERY PAGE RESPONSIVE OVERRIDES
========================================================= */

/* ── max-width: 1180px (iPad Pro) ── */
@media (max-width: 1180px) {
  .contact-hero,
  .gallery-hero { padding: 150px 5% 90px; }
  .contact-hero h1,
  .gallery-hero h1 { font-size: 56px; }
  .contact-hero p,
  .gallery-hero p  { font-size: 17px; }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-main .contact-container { grid-template-columns: 1fr; }
  .contact-info-panel { position: static; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .counter-grid { grid-template-columns: repeat(2, 1fr); }
  .counter-item { border-bottom: 1px solid rgba(255,255,255,0.18); }
  .counter-item:nth-child(2n) { border-right: none; }
  .counter-item:last-child  { border-bottom: none; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .why-section .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── max-width: 900px ── */
@media (max-width: 900px) {
  .contact-hero,
  .gallery-hero { padding: 140px 5% 80px; }
  .contact-hero h1,
  .gallery-hero h1 { font-size: 44px; }
  .contact-hero p,
  .gallery-hero p  { font-size: 16px; }
  .quick-contact, .contact-main, .map-section, .faq-section,
  .gallery-section, .counter-strip, .video-section, .why-section { padding: 80px 5%; }
  .counter-item h2 { font-size: 44px; }
}

/* ── max-width: 768px ── */
@media (max-width: 768px) {
  .contact-hero,
  .gallery-hero { padding: 130px 5% 75px; min-height: auto; }
  .contact-hero h1,
  .gallery-hero h1 { font-size: 36px; line-height: 1.2; }
  .contact-hero p,
  .gallery-hero p  { font-size: 15px; line-height: 1.8; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form-panel { padding: 30px 24px; }
  .contact-info-panel { padding: 30px 24px; }
  .map-wrapper iframe { height: 360px; }
  .faq-q span { font-size: 15px; }
  .video-grid { grid-template-columns: 1fr; max-width: 500px; }
  .why-section .why-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .contact-main .contact-container { gap: 30px; }
  .quick-card { padding: 30px 24px; }
}

/* ── max-width: 576px ── */
@media (max-width: 576px) {
  .contact-hero,
  .gallery-hero { padding: 120px 4% 65px; }
  .contact-hero h1,
  .gallery-hero h1 { font-size: 30px; }
  .quick-grid { grid-template-columns: 1fr; }
  .quick-contact, .contact-main, .map-section, .faq-section,
  .gallery-section, .counter-strip, .video-section, .why-section { padding: 55px 4%; }
  .contact-form-panel { padding: 24px 18px; }
  .contact-info-panel { padding: 24px 18px; }
  .map-wrapper iframe { height: 260px; }
  .map-badge { padding: 10px 14px; }
  .faq-q { padding: 16px 18px; }
  .faq-a { padding: 0 18px 18px; }
  .gallery-grid { grid-template-columns: 1fr; gap: 16px; }
  .gallery-item img { height: 220px; }
  .counter-grid { grid-template-columns: 1fr 1fr; }
  .counter-item h2 { font-size: 36px; }
  .filter-bar { gap: 8px; }
  .filter-btn { padding: 9px 16px; font-size: 13px; }
  .lb-arrow { display: none; }
  .t-card, .why-section .why-card { padding: 28px 22px; }
}

/* ── max-width: 400px ── */
@media (max-width: 400px) {
  .contact-hero h1,
  .gallery-hero h1 { font-size: 24px; }
  .gallery-item img  { height: 190px; }
  .counter-item h2   { font-size: 28px; }
  .quick-card        { padding: 24px 18px; }
  .contact-form-panel { padding: 18px 14px; }
  .filter-btn        { font-size: 12px; padding: 8px 13px; }
}