/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: #fff; color: #0A2A4A; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

:root {
  --blue: #1DA1D2;
  --dark: #0A2A4A;
  --glow: #00E0FF;
  --radius: 20px;
  --shadow: 0 8px 32px rgba(29,161,210,0.15);
}

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gradient-text {
  background: linear-gradient(90deg, #1DA1D2, #00E0FF);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: linear-gradient(90deg, rgba(29,161,210,0.12), rgba(0,224,255,0.12));
  color: var(--blue); font-size: 13px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 18px; border-radius: 50px; margin-bottom: 16px;
  border: 1px solid rgba(29,161,210,0.3);
}
.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; line-height: 1.2; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #1DA1D2, #00E0FF);
  color: #fff; font-weight: 700; padding: 14px 32px;
  border-radius: 50px; border: none; cursor: pointer; font-size: 15px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,224,255,0.45); }
.glow-btn { box-shadow: 0 0 24px rgba(0,224,255,0.35); }
.btn-secondary {
  display: inline-block; background: transparent; color: #fff;
  font-weight: 600; padding: 13px 30px; border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.5); cursor: pointer; font-size: 15px;
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--glow); color: var(--glow); }
.full-width { width: 100%; text-align: center; }

/* ===== LOGO IMAGE ===== */
.logo-img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(1.05);
  transition: opacity 0.2s;
}
.logo-img:hover { opacity: 0.85; }
.logo-img-footer {
  height: 56px;
  margin-bottom: 16px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 10px 0; transition: background 0.3s, padding 0.3s;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(10,42,74,0.97);
  backdrop-filter: blur(20px);
  padding: 8px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; gap: 0;
}
.nav-logo { flex-shrink: 0; margin-right: auto; }
.logo-img {
  height: 64px; width: auto; display: block;
  object-fit: contain; transition: opacity 0.2s;
}
.logo-img:hover { opacity: 0.85; }
.logo-img-footer { height: 56px; margin-bottom: 16px; }

/* Desktop nav links — always flex, hidden on mobile via media query */
.nav-links {
  display: flex; align-items: center; gap: 28px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links li a {
  color: rgba(255,255,255,0.88); font-size: 14px; font-weight: 500;
  transition: color 0.2s; white-space: nowrap;
}
.nav-links li a:hover { color: var(--glow); }
.nav-cta { margin-left: 20px; padding: 10px 22px; font-size: 14px; white-space: nowrap; }

/* Hamburger — hidden on desktop */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 6px; background: none; border: none; cursor: pointer;
  padding: 6px; margin-left: 12px; z-index: 1300; position: relative;
}
.hamburger span {
  display: block; width: 26px; height: 2px; background: #fff;
  border-radius: 2px; transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu-overlay {
  display: none; /* JS will toggle .open */
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,42,74,0.98);
  backdrop-filter: blur(20px);
  z-index: 1200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mobile-menu-overlay.open {
  display: flex;
}
.mobile-menu-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.25);
  color: #fff; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s, border-color 0.2s;
}
.mobile-menu-close:hover {
  background: rgba(29,161,210,0.3);
  border-color: var(--glow);
  color: var(--glow);
}
.mobile-menu-links {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column;
  align-items: center; gap: 28px;
}
.mobile-menu-links li a {
  color: rgba(255,255,255,0.9); font-size: 22px;
  font-weight: 700; transition: color 0.2s;
}
.mobile-menu-links li a:hover { color: var(--glow); }
.mobile-menu-cta {
  display: inline-block !important;
  background: linear-gradient(135deg, #1DA1D2, #00E0FF) !important;
  color: #fff !important; font-weight: 700 !important;
  padding: 14px 40px; border-radius: 50px;
  font-size: 16px !important; margin-top: 8px;
}

/* Hide desktop nav on mobile, show hamburger */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .hamburger { display: flex; }
  .logo-img  { height: 50px; }
}
/* ===== HERO SLIDER ===== */
.hero {
  position: relative; width: 100%; height: 100vh;
  min-height: 600px; overflow: hidden;
}
.hero-slider { width: 100%; height: 100%; position: relative; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.9s ease;
  display: flex; align-items: center; justify-content: center;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.slide-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}
.hero-slide.active .slide-bg { transform: scale(1); }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,42,74,0.82) 0%,
    rgba(10,42,74,0.55) 50%,
    rgba(10,42,74,0.75) 100%
  );
}
.slide-content {
  position: relative; z-index: 3;
  max-width: 820px; text-align: center; padding: 0 24px;
  animation: none;
}
.hero-slide.active .slide-content {
  animation: slideUp 0.8s ease both;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-block;
  background: rgba(29,161,210,0.2); border: 1px solid rgba(29,161,210,0.5);
  color: var(--glow); padding: 8px 22px; border-radius: 50px;
  font-size: 13px; font-weight: 600; letter-spacing: 1px;
  margin-bottom: 24px; backdrop-filter: blur(10px);
}
.hero-title {
  font-size: clamp(32px, 5.5vw, 64px); font-weight: 900;
  color: #fff; line-height: 1.1; margin-bottom: 20px;
}
.hero-sub {
  font-size: clamp(15px, 2vw, 19px); color: rgba(255,255,255,0.78);
  margin-bottom: 36px; line-height: 1.65; max-width: 640px; margin-left: auto; margin-right: auto;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Slider Arrows */
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.25);
  color: #fff; width: 52px; height: 52px; border-radius: 50%;
  font-size: 20px; cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.hero-arrow:hover { background: var(--blue); border-color: var(--blue); }
.hero-prev { left: 24px; }
.hero-next { right: 24px; }

/* Slider Dots */
.hero-dots {
  position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; gap: 10px;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.4); border: none; cursor: pointer; transition: all 0.3s;
}
.hero-dot.active { background: var(--glow); width: 30px; border-radius: 5px; }

/* Highlights Bar */
.hero-highlights-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
  background: rgba(10,42,74,0.85); backdrop-filter: blur(16px);
  border-top: 1px solid rgba(29,161,210,0.3);
  display: flex; justify-content: center; gap: 40px;
  padding: 16px 24px; flex-wrap: wrap;
}
.highlight-item {
  color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500;
  display: flex; align-items: center; gap: 8px;
}
.check { color: var(--glow); font-size: 16px; }

/* ===== ZONES ===== */
.zones { padding: 100px 0; background: #f8fbff; }
.zones-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.zone-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid rgba(29,161,210,0.1);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.zone-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(29,161,210,0.28);
  border-color: var(--blue);
}
.zone-img-wrap { position: relative; height: 200px; overflow: hidden; }
.zone-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.zone-card:hover .zone-img-wrap img { transform: scale(1.08); }
.zone-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,42,74,0.7) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 16px;
  transition: background 0.3s;
}
.zone-card:hover .zone-img-overlay { background: linear-gradient(to top, rgba(29,161,210,0.6) 0%, transparent 60%); }
.zone-emoji { font-size: 36px; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); }
.zone-body { padding: 24px; }
.zone-body h3 { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.zone-body p { font-size: 14px; color: #666; margin-bottom: 20px; line-height: 1.5; }
.zone-btn {
  display: inline-block;
  background: linear-gradient(135deg, #1DA1D2, #00E0FF);
  color: #fff; font-weight: 600; font-size: 13px;
  padding: 10px 22px; border-radius: 50px; transition: all 0.2s;
}
.zone-btn:hover { box-shadow: 0 4px 20px rgba(0,224,255,0.4); transform: translateY(-2px); }

/* ===== WHY SDIFT ===== */
.why-sdift { padding: 100px 0; background: var(--dark); }
.why-sdift .section-tag { color: var(--glow); border-color: rgba(0,224,255,0.3); background: rgba(0,224,255,0.08); }
.why-sdift .section-title { color: #fff; }
.usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.usp-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(29,161,210,0.2);
  border-radius: var(--radius); overflow: hidden;
  transition: all 0.3s; position: relative;
}
.usp-card:hover { background: rgba(29,161,210,0.1); border-color: var(--blue); transform: translateY(-4px); }
.usp-img { width: 100%; height: 140px; object-fit: cover; opacity: 0.4; transition: opacity 0.3s; }
.usp-card:hover .usp-img { opacity: 0.6; }
.usp-icon { font-size: 36px; padding: 20px 24px 8px; display: block; }
.usp-card h4 { font-size: 17px; font-weight: 700; color: #fff; padding: 0 24px 8px; }
.usp-card p { font-size: 14px; color: rgba(255,255,255,0.55); padding: 0 24px 24px; line-height: 1.5; }

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-box {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 20px 60px rgba(29,161,210,0.2);
}
.about-img-box img { width: 100%; height: 460px; object-fit: cover; display: block; }
.about-badge-float {
  position: absolute; bottom: 24px; right: 24px;
  background: linear-gradient(135deg, #1DA1D2, #00E0FF);
  color: #fff; font-weight: 800; font-size: 14px;
  padding: 10px 22px; border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,224,255,0.4);
}
.about-img-accent {
  position: absolute; top: -12px; left: -12px;
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(29,161,210,0.3), rgba(0,224,255,0.1));
  border: 3px solid rgba(29,161,210,0.4);
}
.about-text .section-title { text-align: left; margin-bottom: 20px; }
.about-desc { font-size: 16px; color: #555; line-height: 1.75; margin-bottom: 16px; }
.counters { display: flex; gap: 32px; margin-top: 36px; }
.counter-item { text-align: center; }
.counter-num {
  font-size: 42px; font-weight: 900;
  background: linear-gradient(90deg, #1DA1D2, #00E0FF);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.counter-item > span:last-of-type { font-size: 28px; font-weight: 900; color: var(--blue); }
.counter-item p { font-size: 13px; color: #888; font-weight: 500; margin-top: 4px; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.testimonials-bg {
  position: absolute; inset: 0;
}
.testimonials-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.testimonials-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,42,74,0.96) 0%, rgba(10,42,74,0.88) 100%);
}
.testimonials .container { position: relative; z-index: 2; }
.testi-tag { color: var(--glow) !important; border-color: rgba(0,224,255,0.3) !important; background: rgba(0,224,255,0.08) !important; }
.testi-title { color: #fff; }
.testi-subtitle { color: rgba(255,255,255,0.55); font-size: 16px; margin-top: 8px; }

/* Grid */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

/* Card */
.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.testi-card:hover {
  transform: translateY(-6px);
  border-color: rgba(29,161,210,0.5);
  box-shadow: 0 20px 50px rgba(29,161,210,0.15);
}
.testi-card--featured {
  background: linear-gradient(135deg, rgba(29,161,210,0.18), rgba(0,224,255,0.08));
  border-color: rgba(29,161,210,0.4);
  box-shadow: 0 8px 40px rgba(29,161,210,0.2);
  transform: translateY(-8px);
}
.testi-card--featured:hover { transform: translateY(-14px); }

/* Quote icon */
.testi-quote-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #1DA1D2, #00E0FF);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-quote-icon i { color: #fff; font-size: 18px; }

/* Text */
.testi-text {
  font-size: 15px; color: rgba(255,255,255,0.8);
  line-height: 1.75; font-style: italic; flex: 1;
}

/* Stars */
.testi-stars i { color: #f5a623; font-size: 14px; margin-right: 2px; }

/* Author */
.testi-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.testi-author img {
  width: 52px; height: 52px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 3px solid var(--blue);
}
.testi-info strong { display: block; color: #fff; font-size: 15px; font-weight: 700; }
.testi-info span { font-size: 13px; color: var(--glow); display: flex; align-items: center; gap: 6px; margin-top: 3px; }
.testi-info span i { font-size: 12px; }

/* Trust bar */
.testi-trust-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 20px 32px;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.85); font-size: 15px; font-weight: 600;
}
.trust-item i { color: var(--glow); font-size: 18px; }
.trust-divider {
  width: 1px; height: 32px;
  background: rgba(255,255,255,0.15);
}

@media (max-width: 900px) {
  .testi-grid { grid-template-columns: 1fr; }
  .testi-card--featured { transform: none; }
  .trust-divider { display: none; }
  .testi-trust-bar { gap: 20px; }
}

/* ===== ACHIEVEMENTS ===== */
.achievements { padding: 90px 0; position: relative; overflow: hidden; }
.achievements-bg { position: absolute; inset: 0; }
.ach-bg-img { width: 100%; height: 100%; object-fit: cover; }
.ach-overlay { position: absolute; inset: 0; background: rgba(10,42,74,0.88); }
.achievements .container { position: relative; z-index: 2; }
.achievements-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 32px; }
.achievement-card { text-align: center; }
.ach-num {
  font-size: 56px; font-weight: 900;
  background: linear-gradient(90deg, #1DA1D2, #00E0FF);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.ach-plus { font-size: 36px; font-weight: 900; color: var(--glow); }
.achievement-card p { font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 8px; font-weight: 500; }

/* ===== FAQ ===== */
.faq { padding: 100px 0; background: #fff; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid rgba(29,161,210,0.2); border-radius: 14px; overflow: hidden; transition: border-color 0.2s; }
.faq-item.open { border-color: var(--blue); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 20px 24px; text-align: left; font-size: 16px; font-weight: 600; color: var(--dark);
  display: flex; justify-content: space-between; align-items: center; transition: color 0.2s;
}
.faq-item.open .faq-q { color: var(--blue); }
.faq-icon { font-size: 20px; font-weight: 300; transition: transform 0.3s; color: var(--blue); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a p { padding: 0 24px 20px; font-size: 15px; color: #555; line-height: 1.7; }
.faq-item.open .faq-a { max-height: 200px; }

/* ===== ENQUIRY ===== */
.enquiry { padding: 100px 0; position: relative; overflow: hidden; }
.enquiry-bg { position: absolute; inset: 0; }
.enquiry-bg img { width: 100%; height: 100%; object-fit: cover; }
.enquiry-bg-overlay { position: absolute; inset: 0; background: rgba(10,42,74,0.92); }
.enquiry .container { position: relative; z-index: 2; }
.enquiry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.enquiry-text .section-tag { color: var(--glow); border-color: rgba(0,224,255,0.3); background: rgba(0,224,255,0.08); }
.enquiry-text .section-title { color: #fff; text-align: left; margin-bottom: 16px; }
.enquiry-text > p { color: rgba(255,255,255,0.7); font-size: 16px; margin-bottom: 32px; line-height: 1.6; }
.enquiry-ctas { display: flex; flex-direction: column; gap: 12px; }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff; font-weight: 700;
  padding: 14px 28px; border-radius: 50px; font-size: 15px;
  transition: all 0.2s; width: fit-content;
}
.btn-whatsapp:hover { background: #1ebe5d; box-shadow: 0 8px 24px rgba(37,211,102,0.4); transform: translateY(-2px); }
.enquiry-text .btn-secondary { color: rgba(255,255,255,0.8); width: fit-content; }
.enquiry-form {
  background: rgba(255,255,255,0.07); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius); padding: 40px;
}
.form-group { margin-bottom: 16px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 18px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px; color: #fff; font-size: 15px;
  font-family: 'Inter', sans-serif; transition: border-color 0.2s; outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.45); }
.form-group select option { background: #0A2A4A; color: #fff; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--glow); box-shadow: 0 0 0 3px rgba(0,224,255,0.1);
}
.form-group textarea { resize: vertical; }

/* ===== BLOG ===== */
.blog { padding: 100px 0; background: #f8fbff; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid rgba(29,161,210,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(29,161,210,0.2); }
.blog-img-wrap { position: relative; height: 210px; overflow: hidden; }
.blog-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-img-wrap img { transform: scale(1.06); }
.blog-tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(29,161,210,0.85); backdrop-filter: blur(8px);
  color: #fff; font-size: 12px; font-weight: 600;
  padding: 4px 14px; border-radius: 50px;
}
.blog-body { padding: 24px; }
.blog-body h4 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; line-height: 1.4; }
.blog-body p { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 16px; }
.blog-read { color: var(--blue); font-weight: 600; font-size: 14px; transition: color 0.2s; }
.blog-read:hover { color: var(--glow); }

/* ===== FOOTER ===== */
.footer { background: #060f1a; padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 60px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin: 16px 0 24px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: all 0.2s;
}
.social-links a:hover { background: rgba(29,161,210,0.2); border-color: var(--blue); }
.footer-col h5 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li, .footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--glow); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; text-align: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }

/* ===== STICKY SIDE DOCK ===== */
.side-dock {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.dock-btn {
  display: flex;
  flex-direction: row-reverse; /* icon RIGHT, label LEFT */
  align-items: center;
  border-radius: 50px 0 0 50px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: -3px 3px 14px rgba(0,0,0,0.3);
  /* NO overflow:hidden — that was clipping the icon */
  height: 60px;
  width: 68px; /* collapsed: just icon + tiny colored strip */
  transition: width 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s;
}
.dock-btn:hover {
  width: 190px;
  box-shadow: -4px 5px 22px rgba(0,0,0,0.4);
}

.dock-label {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  transition: max-width 0.35s ease, opacity 0.2s ease;
  padding-left: 0;
}
.dock-btn:hover .dock-label {
  max-width: 130px;
  opacity: 1;
  padding-left: 14px;
  transition: max-width 0.35s ease, opacity 0.2s ease 0.15s, padding-left 0.2s ease;
}

.dock-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  /* small gap from right edge */
  margin: 3px 3px 3px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: transform 0.2s;
  position: relative;
  z-index: 1;
}
.dock-btn:hover .dock-icon { transform: scale(1.08); }

/* Per-button colors */
.dock-wa   { background: #25D366; }
.dock-wa   .dock-icon i { color: #25D366; }

.dock-call  { background: #1a73e8; }
.dock-call  .dock-icon i { color: #1a73e8; }

.dock-call2 { background: #0a8a6e; }
.dock-call2 .dock-icon i { color: #0a8a6e; }

.dock-fb   { background: #1877f2; }
.dock-fb   .dock-icon i { color: #1877f2; }

.dock-insta {
  background: linear-gradient(160deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
}
.dock-insta .dock-icon i {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 480px) {
  .dock-btn { height: 52px; width: 58px; }
  .dock-btn:hover { width: 170px; }
  .dock-icon { width: 46px; height: 46px; min-width: 46px; font-size: 19px; }
}

/* ===== FLOATING WHATSAPP (legacy — hidden) ===== */
.whatsapp-float { display: none; }
.whatsapp-float:hover { transform: scale(1.1); }

/* ===== MOBILE STICKY ===== */
.mobile-sticky {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  background: var(--dark); padding: 12px 16px; gap: 12px;
  border-top: 1px solid rgba(29,161,210,0.3);
}
.sticky-btn { flex: 1; text-align: center; padding: 12px; border-radius: 12px; font-weight: 700; font-size: 14px; }
.sticky-wa { background: #25D366; color: #fff; }
.sticky-enq { background: linear-gradient(135deg, #1DA1D2, #00E0FF); color: #fff; }

/* ===== ICON STYLES ===== */
.check { color: var(--glow); font-size: 17px; }
.zone-icon-wrap {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.zone-icon-wrap i { font-size: 22px; color: #fff; }
.zone-card:hover .zone-icon-wrap { background: var(--blue); border-color: var(--blue); }
.usp-icon { font-size: 28px; padding: 20px 24px 8px; display: block; color: var(--glow); }
.stars i { color: #f5a623; font-size: 15px; margin-right: 2px; }
.footer-col ul li i { color: var(--blue); margin-right: 8px; width: 16px; }
.blog-read i { margin-left: 4px; transition: transform 0.2s; }
.blog-read:hover i { transform: translateX(4px); }
.btn-whatsapp i, .btn-secondary i, .sticky-btn i { margin-right: 6px; }
.hero-badge i { margin-right: 6px; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .zones-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .about-grid, .enquiry-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-width: 100%; }
  .counters { gap: 16px; }
  .mobile-sticky { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-arrow { width: 40px; height: 40px; font-size: 16px; }
  .hero-prev { left: 12px; }
  .hero-next { right: 12px; }
  .hero-highlights-bar { gap: 16px; }
}
@media (max-width: 480px) {
  .zones-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-highlights-bar { display: none; }
}
