
:root {
  --primary: #FFD700;
  --primary-dark: #FFC700;
  --primary-light: #FFED4E;
  --accent: #FFD700;
  --dark: #000000;
  --text: #1a1a1a;
  --text-light: #4a4a4a;
  --bg: #f5f5f5;
  --white: #ffffff;
  --border: #e0e0e0;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --whatsapp: #25d366;
  --facebook: #1877f2;
}

/* ---- 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(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

.section { padding: 90px 0; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover { background: var(--white); color: #000000; }

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}
.btn-whatsapp:hover { background: #1ebe57; border-color: #1ebe57; transform: translateY(-2px); }

.btn-primary-light {
  background: var(--white);
  color: #000000;
  border-color: var(--white);
}
.btn-primary-light:hover { background: var(--bg); transform: translateY(-2px); }

.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: all var(--transition);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  flex-shrink: 0;
}
.logo-image {
height: 100px;

  width: auto;
  object-fit: contain;
}
.logo-image-footer {
  height: 180px;
  width: 180px;
  object-fit: contain;
  margin-bottom: 24px;
  background-color: var(--white);
  border-radius: 0; /* Ensures it's a square */
  padding: 10px; /* Optional: adds some space around the logo */
}
.logo-footer {
  display: block;
  margin-bottom: 24px;
}
.logo strong { color: var(--primary); }
.logo-icon {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}
.logo-light .logo-icon { background: rgba(255,255,255,0.2); }
.logo-light { color: var(--white); }
.logo-light strong { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}
.nav-links a:hover { background: var(--bg); color: var(--primary); }
.nav-links a.active { color: var(--primary); font-weight: 600; }

.nav-cta { margin-left: auto; flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slides { width: 100%; height: 100%; position: relative; }

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  background-repeat: no-repeat;
}
.slide.active { opacity: 1; }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.45) 100%);
}

.slide-content {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
  color: var(--white);
}

.slide-tag {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  opacity: 0.9;
}

.slide-content h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.slide-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  opacity: 0.88;
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.slide-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: all var(--transition);
}
.dot.active { background: var(--white); transform: scale(1.3); }

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  width: 50px; height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: #FFD700; border-color: #FFD700; color: #000000; }
.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }



/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--bg); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  height: 480px;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.badge-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.badge-text {
  font-size: 0.8rem;
  opacity: 0.85;
  line-height: 1.4;
}

.about-content .section-label { text-align: left; }
.about-content .section-title { text-align: left; }

.about-content p { color: var(--text-light); margin-bottom: 16px; }

.about-list {
  margin: 24px 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
}
.about-list li i { color: var(--primary); font-size: 1rem; flex-shrink: 0; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--white); }

.service-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
  background: var(--bg);
  padding: 8px;
  border-radius: 50px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.tab-btn {
  padding: 10px 22px;
  border-radius: 50px;
  border: none;
  background: transparent;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.tab-btn.active, .tab-btn:hover {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26,95,168,0.25);
}

.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.4s ease; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.service-detail-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.service-detail-text h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.service-detail-text > p {
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.7;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature > i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.feature div { display: flex; flex-direction: column; }
.feature strong { font-size: 0.95rem; color: var(--dark); margin-bottom: 2px; }
.feature span { font-size: 0.88rem; color: var(--text-light); }

.service-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin-bottom: 32px;
}
.service-list-grid span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}
.service-list-grid span i { color: var(--primary); font-size: 0.8rem; flex-shrink: 0; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  color: var(--white);
}
.why-us .section-label { color: var(--accent); }
.why-us .section-title { color: var(--white); }
.why-us .section-sub { color: rgba(255,255,255,0.7); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-6px);
  border-color: var(--accent);
}

.why-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(0,180,216,0.3);
}

.why-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}
.why-card p { font-size: 0.9rem; color: rgba(255,255,255,0.68); line-height: 1.6; }


/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
  padding: 60px 0;
  color: #000000;
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #000000;
  margin-bottom: 8px;
}
.cta-content p { color: rgba(0,0,0,0.85); font-size: 1rem; }

.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info .section-label { text-align: left; }
.contact-info .section-title { text-align: left; font-size: clamp(1.6rem, 2.5vw, 2.2rem); }
.contact-info > p { color: var(--text-light); margin-bottom: 32px; }

.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-icon {
  width: 48px; height: 48px;
  background: var(--bg);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item div { display: flex; flex-direction: column; }
.contact-item strong { font-size: 0.85rem; color: var(--text-light); font-weight: 500; margin-bottom: 2px; }
.contact-item span { font-size: 0.97rem; color: var(--dark); font-weight: 600; }

.contact-social { display: flex; gap: 12px; flex-wrap: wrap; }

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition);
}
.social-btn.facebook { background: var(--facebook); color: var(--white); }
.social-btn.facebook:hover { background: #1464d8; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(24,119,242,0.35); }
.social-btn.whatsapp { background: var(--whatsapp); color: var(--white); }
.social-btn.whatsapp:hover { background: #1ebe57; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(37,211,102,0.35); }

.contact-form-wrap {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.93rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,95,168,0.1);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: #FFD700; color: #000000; transform: translateY(-3px); }

.footer-links h5,
.footer-services h5,
.footer-contact h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.footer-links ul,
.footer-services ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a,
.footer-services a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-links a:hover,
.footer-services a:hover { color: var(--accent); }

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.footer-contact p i { color: var(--accent); width: 16px; flex-shrink: 0; }

.footer-cta { margin-top: 20px; }
.btn-whatsapp-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  background: var(--whatsapp);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
}
.btn-whatsapp-sm:hover { background: #1ebe57; transform: translateY(-2px); }

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.45); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.floating-buttons {
  position: fixed;
  bottom: 32px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: all var(--transition);
  position: relative;
}
.float-btn:hover { transform: scale(1.12); }

.whatsapp-float { background: var(--whatsapp); }
.whatsapp-float:hover { box-shadow: 0 6px 28px rgba(37,211,102,0.5); }

.facebook-float { background: var(--facebook); }
.facebook-float:hover { box-shadow: 0 6px 28px rgba(24,119,242,0.5); }

.float-tooltip {
  position: absolute;
  right: 68px;
  background: var(--dark);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.float-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--dark);
  border-right: none;
}
.float-btn:hover .float-tooltip { opacity: 1; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  left: 24px;
  z-index: 999;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #FFD700;
  color: #000000;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: #FFC700; transform: translateY(-3px); }

/* ============================================================
   FORM SUCCESS MESSAGE
   ============================================================ */
.form-success {
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ============================================================
   RESPONSIVE – TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img { height: 360px; }
  .about-badge { right: 0; bottom: -16px; }

  .service-detail { grid-template-columns: 1fr; gap: 36px; }
  .service-detail-img img { height: 300px; }

  .why-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   RESPONSIVE – MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  .section { padding: 64px 0; }

  /* Hero Mobile Fix */
  .hero {
    height: 500px;
    min-height: 500px;
    margin-top: 72px;
  }
  .slide {
    background-size: cover;
    background-position: center 25%;
  }
  .slide-content {
    bottom: 20%;
    padding: 0 16px;
    top: auto;
  }
  .slide-content h1 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }
  .slide-sub {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
  }

  /* Navbar */
 .nav-links {
    display: none;
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }
  .nav-links a { width: 100%; padding: 12px 16px; font-size: 1rem; border-radius: 10px; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { height: 100svh; min-height: 560px; }
  .slide-content { bottom: 12%; }
  .hero-arrow { display: none; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* About */
  .about-list { grid-template-columns: 1fr; }

  /* Services */
  .service-tabs {
    width: 100%;
    border-radius: var(--radius);
    padding: 6px;
    gap: 4px;
  }
  .tab-btn { padding: 9px 14px; font-size: 0.82rem; }
  .service-list-grid { grid-template-columns: 1fr; }

  /* Why Us */
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-card { padding: 28px 20px; }

  /* Testimonials */
  .testimonial-card { min-width: 100%; max-width: 100%; }

  /* CTA */
  .cta-content { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  /* Floating buttons */
  .float-btn { width: 50px; height: 50px; font-size: 1.2rem; }
  .float-tooltip { display: none; }
}

/* ============================================================
   RESPONSIVE – SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  
  .hero {
    height: 420px;
    min-height: 420px;
    margin-top: 72px;
  }
  .slide {
    background-size: cover;
    background-position: center 20%;
  }
  .slide-content {
    bottom: 18%;
    top: auto;
  }
  .slide-content h1 {
    font-size: clamp(1.3rem, 3.5vw, 2rem);
    margin-bottom: 12px;
  }
  .slide-sub {
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    margin-bottom: 20px;
  }
  .slide-tag {
    font-size: 0.75rem;
    margin-bottom: 8px;
  }
  
  .slide-actions { flex-direction: column; align-items: flex-start; }
  .slide-actions .btn { width: 100%; justify-content: center; }
  .contact-social { flex-direction: column; }
  .social-btn { justify-content: center; }
}

/* ---- Video & Director Styles ---- */
.about-video {
  width: 100%;
  height: auto; /* Let the video file determine its own height */
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: initial; /* No scaling or cropping */
}

.director {
  background: var(--white);
}

.director-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.director-content .section-label,
.director-content .section-title {
  text-align: left;
}

.director-info {
  margin-top: 24px;
}

.director-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.director-quote {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.6;
  border-left: 4px solid var(--primary);
  padding-left: 20px;
}

.director-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.director-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .director-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .director-image-wrap {
    order: -1;
  }
}