/* =========================================================
   JOSEPH SAFETY NETS — Premium CSS Design System
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

/* ── CSS Variables ── */
:root {
  --primary: #0a3d62;
  --primary-dark: #061e31;
  --primary-light: #1a5276;
  --accent: #f39c12;
  --accent-dark: #d68910;
  --accent-light: #f8c471;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --success: #059669;
  --gradient-hero: linear-gradient(135deg, rgba(10,61,98,0.85) 0%, rgba(243,156,18,0.3) 100%);
  --gradient-accent: linear-gradient(135deg, #f39c12, #e67e22);
  --gradient-primary: linear-gradient(135deg, #0a3d62, #1a5276);
  --shadow-sm: 0 2px 8px rgba(10,61,98,0.1);
  --shadow-md: 0 8px 30px rgba(10,61,98,0.15);
  --shadow-lg: 0 20px 60px rgba(10,61,98,0.2);
  --shadow-xl: 0 30px 80px rgba(10,61,98,0.25);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; }
.section-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgba(243,156,18,0.15), rgba(243,156,18,0.05));
  border: 1px solid rgba(243,156,18,0.3);
  color: var(--accent-dark);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 6px 16px; border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; color: var(--primary);
  margin-bottom: 16px; line-height: 1.15;
}
.section-title span { color: var(--accent); }
.section-subtitle {
  font-size: 1.05rem; color: var(--gray-500);
  max-width: 600px; margin: 0 auto;
}

/* ── Container ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  border: none; transition: var(--transition); letter-spacing: 0.02em;
  text-decoration: none;
}
.btn-primary {
  background: var(--gradient-accent);
  color: white;
  box-shadow: 0 4px 20px rgba(243,156,18,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(243,156,18,0.5);
}
.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 20px rgba(10,61,98,0.3);
}
.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(10,61,98,0.4);
}

/* ── Section Spacing ── */
.section { padding: 90px 0; }
.section-alt { background: var(--gray-50); }
.section-header { text-align: center; margin-bottom: 60px; }

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 1);
  box-shadow: var(--shadow-md);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; max-width: 1200px; margin: 0 auto; height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo-img {
  height: 48px; width: auto;
  object-fit: contain;
}
.nav-logo-text {}
.nav-logo-text .brand-name {
  font-size: 1.1rem; font-weight: 800;
  color: var(--primary); letter-spacing: -0.02em; display: block;
}
.nav-logo-text .brand-tag {
  font-size: 0.65rem; color: var(--accent-dark);
  letter-spacing: 0.05em; font-weight: 500;
}
.nav-menu {
  display: flex; align-items: center; gap: 4px;
}
.nav-link {
  color: var(--gray-700);
  font-size: 0.88rem; font-weight: 500;
  padding: 8px 14px; border-radius: var(--radius-sm);
  transition: var(--transition); position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: var(--gray-100);
}
.nav-dropdown { position: relative; }
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: white; border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl); padding: 12px;
  min-width: 240px; opacity: 0; visibility: hidden;
  transition: var(--transition); z-index: 100;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.dropdown-item {
  color: var(--gray-700); font-size: 0.82rem; font-weight: 500;
  padding: 8px 12px; border-radius: var(--radius-sm);
  transition: var(--transition); white-space: nowrap;
}
.dropdown-item:hover {
  background: var(--gray-100); color: var(--primary);
}
.nav-cta {
  background: var(--gradient-accent);
  color: white; padding: 10px 22px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600;
  box-shadow: 0 4px 15px rgba(243,156,18,0.4);
  transition: var(--transition);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(243,156,18,0.5);
}
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 8px; border: none; background: none;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--primary);
  border-radius: 2px; transition: var(--transition);
}

/* ── HERO SLIDER ── */
.hero-slider {
  position: relative; height: 100vh; min-height: 650px;
  overflow: hidden; margin-top: 72px;
}
.slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.8s ease;
  z-index: 1;
}
.slide.active { opacity: 1; z-index: 2; }
.slide-img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05); transition: transform 8s ease;
}
.slide.active .slide-img { transform: scale(1); }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,61,98,0.82) 0%, rgba(10,61,98,0.4) 60%, transparent 100%);
}
.slide-content {
  position: absolute; bottom: 0; left: 0; right: 0; top: 0;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 48px;
  max-width: 700px;
}
.slide-badge {
  display: inline-block;
  background: rgba(243,156,18,0.9);
  color: white; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px;
  margin-bottom: 20px; width: fit-content;
}
.slide-title {
  font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 900;
  color: white; line-height: 1.1; margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.slide-subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,0.85);
  margin-bottom: 36px; line-height: 1.6; max-width: 500px;
}
.slide-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.slider-controls {
  position: absolute; bottom: 30px; right: 40px;
  display: flex; gap: 12px; z-index: 10;
}
.slider-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.4); border: none;
  cursor: pointer; transition: var(--transition);
}
.slider-dot.active {
  background: var(--accent); transform: scale(1.3);
}
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.3);
  color: white; width: 52px; height: 52px;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; transition: var(--transition);
}
.slider-arrow:hover { background: rgba(243,156,18,0.8); }
.slider-prev { left: 24px; }
.slider-next { right: 24px; }

/* ── QUICK CONTACT FORM ── */
.quick-contact {
  background: var(--gradient-primary);
  padding: 50px 0; position: relative; overflow: hidden;
}
.quick-contact::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.quick-contact-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.quick-contact-text h2 {
  font-size: 1.8rem; font-weight: 800; color: white; margin-bottom: 8px;
}
.quick-contact-text p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.quick-form {
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
  flex: 1; justify-content: flex-end;
}
.quick-form input {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: white; padding: 14px 20px;
  border-radius: 50px; font-size: 0.9rem;
  min-width: 180px; outline: none; font-family: inherit;
  transition: var(--transition); backdrop-filter: blur(10px);
}
.quick-form input::placeholder { color: rgba(255,255,255,0.55); }
.quick-form input:focus { border-color: var(--accent); background: rgba(255,255,255,0.18); }
.quick-form .btn-submit {
  background: var(--gradient-accent);
  color: white; padding: 14px 32px; border-radius: 50px;
  font-weight: 700; border: none; cursor: pointer;
  white-space: nowrap; transition: var(--transition);
  box-shadow: 0 4px 20px rgba(243,156,18,0.4); font-family: inherit; font-size: 0.9rem;
}
.quick-form .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(243,156,18,0.5); }
.form-success {
  display: none; background: rgba(5,150,105,0.2); border: 1px solid rgba(5,150,105,0.5);
  color: #34d399; padding: 12px 20px; border-radius: var(--radius-sm);
  font-weight: 600; margin-top: 12px; width: 100%; text-align: center;
}
.form-success.show { display: block; }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.service-card {
  background: white; border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.service-card-img {
  position: relative; overflow: hidden; height: 220px;
}
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--accent); color: white;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; padding: 4px 12px; border-radius: 50px;
}
.service-card-body { padding: 24px; }
.service-card-body h3 {
  font-size: 1.15rem; font-weight: 700;
  color: var(--primary); margin-bottom: 10px;
}
.service-card-body p {
  font-size: 0.88rem; color: var(--gray-500); line-height: 1.65; margin-bottom: 20px;
}
.service-card-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent-dark); font-weight: 600; font-size: 0.88rem;
  transition: var(--transition);
}
.service-card-link:hover { gap: 12px; color: var(--primary); }
.service-card-link svg { width: 16px; height: 16px; }

/* ── STATS / HIGHLIGHTS ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
.stat-card {
  text-align: center; padding: 40px 24px;
  background: white; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.stat-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(10,61,98,0.1), rgba(243,156,18,0.1));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.8rem;
}
.stat-number {
  font-size: 2.8rem; font-weight: 900; color: var(--primary);
  line-height: 1;
}
.stat-label {
  font-size: 0.9rem; color: var(--gray-500); margin-top: 8px; font-weight: 500;
}

/* ── WHY CHOOSE US ── */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.why-item {
  display: flex; gap: 20px; padding: 24px;
  border-radius: var(--radius-md); transition: var(--transition);
}
.why-item:hover { background: var(--gray-50); }
.why-icon {
  width: 54px; height: 54px; border-radius: var(--radius-sm);
  background: var(--gradient-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.why-body h4 { font-size: 1.05rem; color: var(--primary); margin-bottom: 8px; }
.why-body p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.6; }

/* ── REVIEWS / TESTIMONIALS ── */
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px;
}
.review-card {
  background: white; border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm); transition: var(--transition);
  position: relative;
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.review-card::before {
  content: '"'; font-size: 6rem; color: var(--accent);
  position: absolute; top: -10px; left: 20px; line-height: 1;
  font-family: 'Playfair Display', serif; opacity: 0.4;
}
.stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 16px; }
.review-text { font-size: 0.92rem; color: var(--gray-700); line-height: 1.7; margin-bottom: 24px; }
.reviewer { display: flex; align-items: center; gap: 14px; }
.reviewer-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1.1rem;
}
.reviewer-name { font-weight: 700; color: var(--primary); font-size: 0.92rem; }
.reviewer-loc { font-size: 0.78rem; color: var(--gray-500); }

/* ── FAQs ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-200); border-radius: var(--radius-md);
  margin-bottom: 12px; overflow: hidden; transition: var(--transition);
}
.faq-item.open { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; cursor: pointer; gap: 20px;
  font-weight: 600; color: var(--primary); font-size: 0.95rem;
}
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gray-100); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; font-size: 1.1rem;
  transition: var(--transition); color: var(--primary);
}
.faq-item.open .faq-icon { background: var(--accent); color: white; transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
  padding: 0 24px; color: var(--gray-500); font-size: 0.9rem; line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }

/* ── CTA SECTION ── */
.cta-section {
  background: var(--gradient-primary); padding: 90px 0;
  position: relative; overflow: hidden; text-align: center;
}
.cta-section::before {
  content: ''; position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(243,156,18,0.15), transparent);
  border-radius: 50%; top: -200px; right: -100px;
}
.cta-section::after {
  content: ''; position: absolute; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.05), transparent);
  border-radius: 50%; bottom: -150px; left: -100px;
}
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem); color: white; font-weight: 900; margin-bottom: 16px;
}
.cta-inner p {
  color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 40px; max-width: 600px; margin-left:auto; margin-right:auto;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-info {
  display: flex; gap: 40px; justify-content: center;
  margin-top: 50px; flex-wrap: wrap;
}
.cta-info-item { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.8); }
.cta-info-icon { font-size: 1.4rem; }

/* ── FOOTER ── */
.footer {
  background: #ffffff; color: var(--gray-500);
  padding: 70px 0 30px;
  border-top: 1px solid var(--gray-200);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 50px;
}
.footer-logo-img { height: 52px; width: auto; margin-bottom: 20px; }
.footer-brand-name { font-size: 1.2rem; font-weight: 800; color: var(--primary); margin-bottom: 6px; }
.footer-tagline { font-size: 0.82rem; color: var(--accent-dark); margin-bottom: 20px; }
.footer-desc { font-size: 0.88rem; line-height: 1.7; margin-bottom: 24px; color: var(--gray-500); }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gray-100); display: flex; align-items: center;
  justify-content: center; color: var(--gray-700);
  font-size: 0.9rem; transition: var(--transition);
  border: 1px solid var(--gray-200);
}
.social-btn:hover { background: var(--accent); color: white; border-color: var(--accent); }
.footer-col h4 {
  font-size: 0.92rem; font-weight: 700; color: var(--primary);
  margin-bottom: 20px; letter-spacing: 0.05em;
  padding-bottom: 10px; border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.86rem; color: var(--gray-500);
  transition: var(--transition); display: flex; align-items: center; gap: 8px;
}
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact-item {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 16px; font-size: 0.86rem;
}
.footer-contact-icon { color: var(--accent); margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid var(--gray-200);
  padding-top: 28px; text-align: center;
  font-size: 0.82rem; color: var(--gray-500);
}
.footer-bottom a { color: var(--accent-dark); }

/* ── SERVICE PAGE HERO ── */
.service-hero {
  background: var(--gradient-primary); padding: 140px 0 80px;
  position: relative; overflow: hidden;
}
.service-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0l28-28v2L54 40h-2zm4 0l24-24v2L58 40h-2zm4 0l20-20v2L62 40h-2zm4 0l16-16v2L66 40h-2zm4 0l12-12v2L70 40h-2zm4 0l8-8v2l-6 6h-2zm4 0l4-4v2l-2 2h-2z'/%3E%3C/g%3E%3C/svg%3E");
}
.service-hero-inner { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.breadcrumb a { color: rgba(255,255,255,0.65); font-size: 0.85rem; }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.breadcrumb-current { color: var(--accent-light); font-size: 0.85rem; font-weight: 600; }
.service-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem); color: white;
  font-weight: 900; margin-bottom: 20px;
}
.service-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 600px; margin-bottom: 36px; }

/* ── SERVICE CONTENT ── */
.service-content-grid {
  display: grid; grid-template-columns: 2fr 1fr; gap: 60px; align-items: start;
}
.service-img-main {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-xl); margin-bottom: 40px; height: 420px;
}
.service-img-main img { width: 100%; height: 100%; object-fit: cover; }
.service-features h3 { font-size: 1.5rem; color: var(--primary); margin-bottom: 24px; }
.feature-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.feature-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px; border-radius: var(--radius-sm);
  background: var(--gray-50); border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.feature-item:hover { border-color: var(--accent); background: rgba(243,156,18,0.05); }
.feature-check {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--success); display: flex; align-items: center;
  justify-content: center; color: white; font-size: 0.75rem; flex-shrink: 0;
}
.feature-body h5 { font-size: 0.9rem; color: var(--primary); margin-bottom: 4px; }
.feature-body p { font-size: 0.82rem; color: var(--gray-500); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-form-card {
  background: white; border-radius: var(--radius-xl);
  padding: 44px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.form-group { margin-bottom: 22px; }
.form-label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--primary); margin-bottom: 8px;
}
.form-control {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.9rem; color: var(--gray-900);
  transition: var(--transition); outline: none; background: var(--gray-50);
}
.form-control:focus { border-color: var(--primary); background: white; box-shadow: 0 0 0 3px rgba(10,61,98,0.08); }
textarea.form-control { min-height: 130px; resize: vertical; }
.contact-info-card {
  background: var(--gradient-primary); border-radius: var(--radius-xl);
  padding: 44px; color: white;
}
.contact-info-card h3 { color: white; font-size: 1.5rem; margin-bottom: 30px; }
.info-item { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.info-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.15); display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem; flex-shrink: 0;
}
.info-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.info-value { font-size: 0.95rem; color: white; font-weight: 500; margin-top: 4px; }
.info-value a { color: white; }

/* ── ABOUT PAGE ── */
.about-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main {
  border-radius: var(--radius-xl); overflow: hidden;
  height: 500px; box-shadow: var(--shadow-xl);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-badge-float {
  position: absolute; bottom: 30px; left: -20px;
  background: white; border-radius: var(--radius-md);
  padding: 20px 24px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 16px;
}
.about-badge-float .num { font-size: 2.2rem; font-weight: 900; color: var(--primary); line-height: 1; }
.about-badge-float .lbl { font-size: 0.82rem; color: var(--gray-500); }
.about-text .section-badge { margin-bottom: 20px; }
.about-text h1 { margin-bottom: 20px; }
.about-text p { color: var(--gray-500); line-height: 1.8; margin-bottom: 16px; font-size: 0.95rem; }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md); overflow: hidden;
  aspect-ratio: 4/3; position: relative; cursor: pointer;
}
.gallery-item:nth-child(3n+1):nth-last-child(n+3) { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,61,98,0.6), transparent);
  opacity: 0; transition: var(--transition); display: flex;
  align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-text { color: white; font-weight: 600; font-size: 0.9rem; }

/* ── SUCCESS STORY ── */
.success-timeline { position: relative; max-width: 800px; margin: 0 auto; }
.success-timeline::before {
  content: ''; position: absolute; left: 50%;
  transform: translateX(-50%); top: 0; bottom: 0;
  width: 2px; background: var(--gradient-accent);
}
.timeline-item {
  display: flex; gap: 40px; align-items: flex-start;
  margin-bottom: 48px; position: relative;
}
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-year {
  width: calc(50% - 30px); text-align: right;
  font-size: 2rem; font-weight: 900; color: var(--accent);
}
.timeline-item:nth-child(even) .timeline-year { text-align: left; }
.timeline-dot {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent); border: 3px solid white;
  box-shadow: 0 0 0 3px var(--accent); flex-shrink: 0;
  margin-top: 8px; position: relative; z-index: 1;
}
.timeline-content { width: calc(50% - 30px); }
.timeline-content h4 { font-size: 1.05rem; color: var(--primary); margin-bottom: 8px; }
.timeline-content p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.6; }

/* ── SPECIALISATION ── */
.spec-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px;
}
.spec-card {
  background: white; border-radius: var(--radius-lg);
  padding: 32px 20px; text-align: center;
  border: 1px solid var(--gray-200); transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.spec-card:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: var(--shadow-lg); }
.spec-icon { font-size: 2.5rem; margin-bottom: 16px; }
.spec-card h4 { font-size: 0.92rem; color: var(--primary); font-weight: 700; }

/* ── MAP ── */
.map-container {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-xl); height: 400px;
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(243,156,18,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(243,156,18,0); }
}
.animate-in { animation: fadeInUp 0.7s ease forwards; }
.pulse { animation: pulseGlow 2s ease-in-out infinite; }

/* ── Floating Contact Buttons ── */
.float-contact-group {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
}
.float-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 0 20px 0 6px; height: 52px; border-radius: 50px;
  text-decoration: none; font-weight: 700; font-size: 0.88rem;
  transition: var(--transition); white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}
.float-btn-icon {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.1rem;
}
.float-btn-wa {
  background: #25D366; color: white;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
}
.float-btn-wa:hover { transform: translateX(-4px) scale(1.04); box-shadow: 0 10px 30px rgba(37,211,102,0.55); color: white; }
.float-btn-wa .float-btn-icon { background: rgba(0,0,0,0.12); }
.float-btn-call {
  background: var(--primary); color: white;
  box-shadow: 0 6px 20px rgba(10,61,98,0.4);
}
.float-btn-call:hover { transform: translateX(-4px) scale(1.04); box-shadow: 0 10px 30px rgba(10,61,98,0.5); color: white; }
.float-btn-call .float-btn-icon { background: rgba(255,255,255,0.15); font-size: 1.2rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-content-grid { grid-template-columns: 1fr; }
  .about-hero-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-item:nth-child(3n+1):nth-last-child(n+3) { grid-column: span 1; aspect-ratio: 4/3; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; height: calc(100vh - 72px); background: white; border-top: 1px solid var(--gray-200); padding: 24px; overflow-y: auto; overflow-x: hidden; gap: 8px; box-shadow: var(--shadow-lg); }
  .nav-menu.open { display: flex; }
  .nav-link, .nav-dropdown { display: block; width: 100%; }
  .nav-link { padding: 14px 18px; font-size: 1.05rem; border-radius: var(--radius-sm); text-align: center; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: var(--gray-50); min-width: 100%; display: grid; grid-template-columns: 1fr; gap: 4px; padding: 12px; margin: 4px 0; border-radius: var(--radius-md); }
  .dropdown-item { color: var(--gray-700); padding: 12px 14px; font-size: 0.95rem; white-space: normal; display: block; text-align: center; }
  .dropdown-item:hover { background: var(--gray-100); color: var(--accent); }
  .hamburger { display: flex; z-index: 1001; }
  .nav-menu.open ~ .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-menu.open ~ .hamburger span:nth-child(2) { opacity: 0; }
  .nav-menu.open ~ .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .slide-content { padding: 0 24px; }
  .quick-contact-inner { flex-direction: column; text-align: center; }
  .quick-form { flex-direction: column; width: 100%; gap: 16px; }
  .quick-form input, .quick-form .btn-submit { width: 100%; flex: none; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .success-timeline::before { left: 16px; }
  .timeline-item, .timeline-item:nth-child(even) { flex-direction: column; padding-left: 48px; }
  .timeline-year, .timeline-item:nth-child(even) .timeline-year { text-align: left; width: auto; }
  .timeline-dot { position: absolute; left: 6px; margin-top: 0; }
  .timeline-content { width: auto; }
  .cta-info { gap: 24px; flex-direction: column; align-items: center; }
  .hero-slider { height: 100vw; min-height: 500px; max-height: 700px; aspect-ratio: 1 / 1; }
}
@media (max-width: 480px) {
  .hero-slider { height: 100vw; min-height: 480px; aspect-ratio: 1 / 1; }
  .stats-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .slide-title { font-size: 1.8rem; }
  .section { padding: 60px 0; }
}
