/* =========================
   GLOBAL STYLES
========================= */
:root {
  --primary: #1f6f64;
  --primary-dark: #15524a;
  --secondary: #3aaea0;
  --accent: #e8f5f3;

  --dark: #ffffff;
  --dark-light: #f7f9f9;
  --light: #1a1a1a;
  --gray: #6b6b6b;

  --white: #ffffff;
  --white-rgb: 255,255,255;
  --black: #000000;
  --muted: #333333;
  --accent-rgb: 0,188,212;
  --overlay: rgba(0,0,0,0.5);
  --shadow-rgb: 0,0,0;
  --on-primary: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  background: var(--dark);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

.preload * { transition: none !important; }
.loaded    { transition: all 0.3s ease; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary);
}

.btn {
  background: var(--primary);
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  display: inline-block;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(31,111,100,0.35);
}

.btn-outline {
  display: inline-block;
  border: 2px solid var(--primary);
  margin-top: 10px;
  padding: 10px 23px;
  border-radius: 5px;
  color: var(--primary);
  background: transparent;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--primary);
  color: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================
   HEADER
========================= */
.logo-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.logo-img  { height: 60px; width: auto; }

.logo h1 {
  margin: 0;
  font-size: 1.8rem;
  color: var(--primary);
}

.logo p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray);
}

header {
  background: #ffffff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.09);
  width: 100%;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  transition: all 0.3s ease;
}

.main-nav a {
  color: var(--light);
  font-weight: 500;
  padding: 5px 10px;
  transition: color 0.3s ease;
  text-decoration: none;
  position: relative;
  display: inline-block;
}

.main-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: 0; left: 10px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.main-nav a:not(.btn):hover::after { width: calc(100% - 20px); }
.main-nav a:hover { color: var(--primary); }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--light);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
}

/* =========================
   HERO SLIDER
========================= */
.hero-slider {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.slider-container {
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active { opacity: 1; }

.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--overlay);
}

.slide-content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  width: 80%;
  max-width: 800px;
  padding: 20px;
  z-index: 2;
}

.slide-content h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.slider-nav {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
}

.slider-prev, .slider-next {
  background: var(--overlay);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-prev:hover, .slider-next:hover { background: var(--primary); }

.slider-dots { display: flex; gap: 10px; }

.slider-dots .dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots .dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 100px 0;
  background: linear-gradient(160deg, #e6f4f2 0%, #f0f9f7 50%, #e8f5f3 100%);
  position: relative;
  overflow: hidden;
}

/* Large decorative circle top-right */
.services::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: rgba(31,111,100,0.12);
  pointer-events: none;
}

/* Large decorative circle bottom-left */
.services::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: rgba(58,174,160,0.10);
  pointer-events: none;
}

.services .container { position: relative; z-index: 1; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}

.service-card {
  background: #ffffff;
  padding: 36px 26px;
  border-radius: 18px;
  transition: all 0.35s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(31,111,100,0.14);
  border: 1px solid rgba(31,111,100,0.08);
}

/* Gradient top bar */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 18px 18px 0 0;
}

/* Faint watermark number — purely decorative */
.service-card::after {
  content: attr(data-num);
  position: absolute;
  bottom: -10px; right: 10px;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(31,111,100,0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 48px rgba(31,111,100,0.18);
  border-color: rgba(31,111,100,0.25);
}

.service-icon {
  font-size: 3.2rem;
  margin-bottom: 18px;
  display: block;
}

.service-card h3 {
  margin-top: 0;
  color: var(--primary);
  font-size: 1.1rem;
}

.service-card p { color: #555; font-size: 0.95rem; }

.service-card span {
  display: inline-block;
  margin-top: 14px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(31,111,100,0.09);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.9rem;
}

.note {
  background: linear-gradient(135deg, rgba(31,111,100,0.07), rgba(58,174,160,0.09));
  padding: 22px 26px;
  margin-top: 40px;
  border-radius: 14px;
  border-left: 5px solid var(--primary);
  position: relative;
  z-index: 1;
}

.note h4 { margin-top: 0; color: var(--primary); }

/* ============================================================
   WHY CHOOSE US
   Full deep-teal section — completely different feel
   ============================================================ */
.why-us {
  padding: 100px 0;
  background: linear-gradient(135deg, #14524a 0%, #1f6f64 55%, #2a8f80 100%);
  position: relative;
  overflow: hidden;
}

/* Large ring top-left */
.why-us::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 55px solid rgba(255,255,255,0.07);
  pointer-events: none;
}

/* Large ring bottom-right */
.why-us::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 460px; height: 460px;
  border-radius: 50%;
  border: 65px solid rgba(255,255,255,0.05);
  pointer-events: none;
}

.why-us .container { position: relative; z-index: 1; }

.why-us .section-title { color: #ffffff; }
.why-us .section-title::after { background: rgba(255,255,255,0.45); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.why-card {
  background: rgba(255,255,255,0.10);
  padding: 32px 28px;
  border-radius: 16px;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  border: 1px solid rgba(255,255,255,0.15);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(255,255,255,0.5), rgba(255,255,255,0.1));
  border-radius: 16px 16px 0 0;
}

.why-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.17);
  box-shadow: 0 20px 44px rgba(0,0,0,0.22);
}

.why-icon {
  font-size: 2.6rem;
  margin-bottom: 14px;
  display: block;
}

.why-card h3 { color: #ffffff; margin-top: 0; font-size: 1.05rem; }
.why-card p  { color: rgba(255,255,255,0.80); font-size: 0.93rem; line-height: 1.65; }

/* ============================================================
   MORE SERVICES
   Light mint background + left-accent horizontal cards
   ============================================================ */
#more-services {
  padding: 100px 0;
  background: #f0f7f6;
  position: relative;
  overflow: hidden;
}

/* Corner triangle top-right */
#more-services::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 260px 260px 0;
  border-color: transparent rgba(31,111,100,0.07) transparent transparent;
  pointer-events: none;
}

/* Corner triangle bottom-left */
#more-services::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 200px 0 0 200px;
  border-color: transparent transparent transparent rgba(58,174,160,0.07);
  pointer-events: none;
}

#more-services .container { position: relative; z-index: 1; }

/* Override why-card styles for this section */
#more-services .why-card {
  background: #ffffff;
  border: none;
  border-left: 5px solid var(--primary);
  border-radius: 14px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(31,111,100,0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 26px 28px;
}

#more-services .why-card::before { display: none; }

#more-services .why-card:hover {
  transform: translateX(8px) translateY(-4px);
  box-shadow: 0 14px 36px rgba(31,111,100,0.15);
  border-left-color: var(--secondary);
  background: #fbfffd;
}

#more-services .why-icon {
  font-size: 2rem;
  margin-bottom: 2px;
}

#more-services .why-card h3 { color: var(--primary); font-size: 1.05rem; }
#more-services .why-card p  { color: #4a4a4a; font-size: 0.93rem; }

/* ============================================================
   OUR SECTORS
   ============================================================ */
.sectors {
  padding: 100px 0;
  background: linear-gradient(170deg, #f7f9f9 0%, #edf6f5 50%, #f2faf9 100%);
  position: relative;
  overflow: hidden;
}

/* Top accent stripe */
.sectors::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-dark), var(--secondary), var(--primary-dark));
  z-index: 2;
}

/* Decorative large ring bottom-right */
.sectors::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  border: 55px solid rgba(31,111,100,0.08);
  pointer-events: none;
}

.sector-tabs {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(31,111,100,0.13);
  position: relative;
  z-index: 1;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 2px solid rgba(31,111,100,0.12);
  background: #ffffff;
}

.tab-btn {
  padding: 15px 25px;
  background: transparent;
  border: none;
  color: var(--gray);
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 3px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.tab-btn.active          { color: var(--primary); }
.tab-btn.active::after   { width: 100%; }
.tab-btn:hover           { color: var(--primary); background: rgba(31,111,100,0.04); }

.tab-content             { display: none; padding: 35px; }
.tab-content.active      { display: block; }

.tab-content-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.tab-text h3 { color: var(--primary); font-size: 1.8rem; margin-top: 0; margin-bottom: 12px; }

.tab-text ul { padding-left: 0; list-style-type: none; }

.tab-text li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 24px;
  color: #444;
}

.tab-text li::before {
  content: '✓';
  color: var(--primary);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.tab-image {
  border-radius: 14px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.13);
}

.tab-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

/* ============================================================
   ABOUT
   Soft mint gradient + organic blob shapes
   ============================================================ */
.about {
  padding: 100px 0;
  background: linear-gradient(155deg, #f0f7f6 0%, #e8f5f3 45%, #f4faf9 100%);
  position: relative;
  overflow: hidden;
}

/* Organic blob top-right */
.about::before {
  content: '';
  position: absolute;
  top: -80px; right: 8%;
  width: 380px; height: 380px;
  border-radius: 62% 38% 55% 45% / 52% 60% 40% 48%;
  background: rgba(31,111,100,0.08);
  pointer-events: none;
}

/* Organic blob bottom-left */
.about::after {
  content: '';
  position: absolute;
  bottom: -70px; left: 4%;
  width: 300px; height: 300px;
  border-radius: 42% 58% 48% 52% / 58% 42% 58% 42%;
  background: rgba(58,174,160,0.08);
  pointer-events: none;
}

.about .container { position: relative; z-index: 1; }

.about p {
  max-width: 800px;
  margin: 0 auto 20px;
  text-align: center;
  color: #333;
}

.about-content { max-width: 900px; margin: 0 auto 50px; }

.about-highlights {
  background: rgba(31,111,100,0.09);
  padding: 25px;
  border-radius: 14px;
  margin: 30px 0;
  border-left: 5px solid var(--primary);
}

.about-highlights h3 { color: var(--primary); margin-top: 0; }

.about-values {
  background: #ffffff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

.about-values h3 { color: var(--primary); margin-top: 0; }

.about-values ul { padding-left: 0; list-style-type: none; }

.about-values li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 24px;
}

.about-values li::before {
  content: '✓';
  color: var(--primary);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.about-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border-bottom: 5px solid var(--primary);
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(31,111,100,0.15);
}

.about-card h3 { color: var(--primary); margin-bottom: 10px; }

/* ============================================================
   CONTACT / BOOK
   Deep teal section to contrast with the light about section
   ============================================================ */
.book {
  padding: 100px 0;
  background: linear-gradient(135deg, #12493f 0%, #1f6f64 60%, #267a6e 100%);
  position: relative;
  overflow: hidden;
}

/* Arc top-left */
.book::before {
  content: '';
  position: absolute;
  top: -110px; left: -110px;
  width: 440px; height: 440px;
  border-radius: 50%;
  border: 65px solid rgba(255,255,255,0.06);
  pointer-events: none;
}

/* Arc bottom-right */
.book::after {
  content: '';
  position: absolute;
  bottom: -90px; right: -90px;
  width: 360px; height: 360px;
  border-radius: 50%;
  border: 55px solid rgba(255,255,255,0.05);
  pointer-events: none;
}

.book .container { position: relative; z-index: 1; }

.book .section-title { color: #ffffff; }
.book .section-title::after { background: rgba(255,255,255,0.45); }

.contact-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.6;
  cursor: pointer;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  padding: 36px;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.22);
}

.form-title {
  color: var(--primary);
  margin-bottom: 4px;
  font-size: 1.4rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 13px 16px;
  background: #f5f9f8;
  border: 1.5px solid #cde4e0;
  border-radius: 9px;
  color: #1a1a1a;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--primary);
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(31,111,100,0.12);
}

.booking-form textarea { min-height: 130px; resize: vertical; }

.booking-form button {
  padding: 14px;
  background: var(--primary);
  color: #ffffff;
  border: none;
  border-radius: 9px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.booking-form button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(31,111,100,0.4);
}

.contact-info {
  background: rgba(255,255,255,0.10);
  padding: 36px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
}

.contact-info h3 {
  margin-top: 0;
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 26px;
}

.contact-detail { margin-bottom: 20px; }

.contact-detail h4 {
  color: rgba(255,255,255,0.60);
  margin-bottom: 4px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-detail p  { color: #ffffff; font-size: 1rem; }

.contact-detail a  { color: #ffffff; text-decoration: none; transition: color 0.3s; }
.contact-detail a:hover { color: #a0ddd6; }

.opening-hours {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.18);
}

.opening-hours h4 {
  color: rgba(255,255,255,0.60);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.opening-hours p { color: #ffffff; margin-bottom: 4px; }

.emergency-contact {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.18);
}

.emergency-contact h4 {
  color: rgba(255,255,255,0.60);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.emergency-contact p { color: #ffffff; margin-bottom: 10px; }

/* Override btn-outline inside the dark book section */
.book .btn-outline {
  border-color: rgba(255,255,255,0.55);
  color: #ffffff;
}

.book .btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #ffffff;
  color: #ffffff;
}

/* =========================
   FOOTER
========================= */
footer {
  background: #0d3530;
  padding: 60px 0 0;
  color: #c2e0dc;
  position: relative;
}

.footer-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
}

.footer-flex {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.footer-column h3 { margin-top: 0; margin-bottom: 18px; color: #7dd4cb; }
.footer-column p  { color: #a0c9c5; font-size: 0.93rem; line-height: 1.7; }

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  color: #a0c9c5;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.93rem;
}

.footer-links a:hover { color: #7dd4cb; padding-left: 6px; }

.footer-column a         { color: #a0c9c5; text-decoration: none; transition: color 0.3s; }
.footer-column a:hover   { color: #7dd4cb; }

.subscribe { display: flex; gap: 8px; margin-top: 10px; }

.subscribe input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 6px;
  color: #fff;
  font-size: 0.9rem;
}

.subscribe input::placeholder { color: rgba(255,255,255,0.38); }

.subscribe button {
  padding: 10px 18px;
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.subscribe button:hover { background: var(--primary); transform: translateY(-2px); }

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.35);
  position: relative;
  z-index: 1;
}

/* =========================
   ANIMATIONS
========================= */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .contact-flex,
  .tab-content-inner { grid-template-columns: 1fr; }

  .tab-image { height: 220px; margin-top: 20px; }
}

@media (max-width: 768px) {
  .header-flex { flex-direction: row; gap: 15px; }

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
  }

  .main-nav.show { display: flex; }

  .mobile-menu-btn { display: block; }

  .slide-content h2 { font-size: 2rem; }
  .slide-content p  { font-size: 1rem; }

  .hero-buttons { flex-direction: column; gap: 10px; }

  .tab-buttons { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 10px; }
  .tab-buttons::-webkit-scrollbar { height: 4px; }
  .tab-buttons::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

  .booking-form,
  .contact-info { padding: 24px; }
}

@media (max-width: 576px) {
  .slide-content h2 { font-size: 1.8rem; }
  .section-title    { font-size: 2rem; }

  .why-grid { grid-template-columns: 1fr; }

  .logo { flex-direction: column; text-align: center; gap: 5px; }
  .logo-img { margin: 0 auto; }

  #more-services .why-card { text-align: left; }
}

/* =========================
   GENERIC FORM FALLBACK
========================= */
form { width: 100%; animation: fadeIn 0.8s ease-in-out; }

/* ============================================================
   SECTORS — Modern Redesign
   Replace the entire .sectors block in your CSS with this
   ============================================================ */

/* Google Font import — add to <head> if not already present:
   <link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=DM+Serif+Display&display=swap" rel="stylesheet">
*/

/* ── Section shell ── */
.sectors {
  padding: 120px 0 100px;
  background: #f7faf9;
  position: relative;
  overflow: hidden;
}

/* ── Floating background orbs ── */
.sectors-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.orb-1 {
  width: 500px; height: 500px;
  top: -120px; right: -100px;
  background: radial-gradient(circle, rgba(31,111,100,0.18) 0%, transparent 70%);
  animation: orbFloat 12s ease-in-out infinite;
}

.orb-2 {
  width: 380px; height: 380px;
  bottom: -80px; left: -80px;
  background: radial-gradient(circle, rgba(58,174,160,0.15) 0%, transparent 70%);
  animation: orbFloat 15s ease-in-out infinite reverse;
}

.orb-3 {
  width: 260px; height: 260px;
  top: 40%; left: 40%;
  background: radial-gradient(circle, rgba(31,111,100,0.08) 0%, transparent 70%);
  animation: orbFloat 10s ease-in-out infinite 3s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -30px) scale(1.05); }
  66%       { transform: translate(-15px, 20px) scale(0.97); }
}

.sectors .container { position: relative; z-index: 1; }

/* ── Header ── */
.sectors-header {
  text-align: center;
  margin-bottom: 56px;
}

.sectors-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(31,111,100,0.1);
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.sectors-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #0d2b26;
  margin-bottom: 14px;
}

.sectors-subtitle {
  color: #5a7a76;
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Pill tab bar ── */
.tab-pill-bar {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.tab-pill-track {
  display: inline-flex;
  background: #ffffff;
  border-radius: 60px;
  padding: 6px;
  gap: 4px;
  box-shadow: 0 4px 24px rgba(31,111,100,0.12), 0 1px 3px rgba(0,0,0,0.06);
  flex-wrap: wrap;
  justify-content: center;
}

.tab-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: 50px;
  border: none;
  background: transparent;
  color: #5a7a76;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  position: relative;
}

.tab-pill .pill-icon {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.tab-pill:hover {
  color: var(--primary);
  background: rgba(31,111,100,0.06);
}

.tab-pill:hover .pill-icon {
  transform: scale(1.2);
}

.tab-pill.active {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(31,111,100,0.35);
  transform: translateY(-1px);
}

.tab-pill.active .pill-icon {
  filter: brightness(0) invert(1);
}

/* ── Tab panels container ── */
.tab-panels {
  position: relative;
}

.tab-panel {
  display: none;
  opacity: 0;
  transform: translateY(16px);
}

.tab-panel.active {
  display: block;
  animation: panelReveal 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes panelReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Panel inner layout ── */
.panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: #ffffff;
  border-radius: 28px;
  padding: 52px 52px;
  box-shadow:
    0 2px 4px rgba(0,0,0,0.04),
    0 8px 32px rgba(31,111,100,0.08),
    0 32px 64px rgba(31,111,100,0.06);
  border: 1px solid rgba(31,111,100,0.08);
  position: relative;
  overflow: hidden;
}

/* Top-left decorative line accent */
.panel-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, transparent 100%);
}

/* ── Panel text side ── */
.panel-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  background: rgba(58,174,160,0.12);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.panel-text h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #0d2b26;
  margin: 0 0 14px;
  line-height: 1.25;
}

.panel-text > p {
  color: #5a7a76;
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

/* ── Feature list ── */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #2d4a45;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 10px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.feature-list li:hover {
  background: rgba(31,111,100,0.05);
  transform: translateX(4px);
}

.check-icon {
  width: 22px; height: 22px;
  min-width: 22px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
}

/* ── CTA link ── */
.panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #ffffff;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 6px 20px rgba(31,111,100,0.3);
}

.panel-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(31,111,100,0.4);
  color: #ffffff;
}

/* ── Visual / image side ── */
.panel-visual {
  position: relative;
}

.visual-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow:
    0 4px 16px rgba(0,0,0,0.08),
    0 20px 48px rgba(31,111,100,0.14);
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.panel-inner:hover .visual-card img {
  transform: scale(1.04);
}

/* Stat badge overlaid on image */
.visual-stat {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 10px 18px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  border: 1px solid rgba(255,255,255,0.8);
}

.stat-number {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: #5a7a76;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Trust strip ── */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
  background: #ffffff;
  border-radius: 20px;
  padding: 22px 36px;
  box-shadow: 0 4px 20px rgba(31,111,100,0.08);
  border: 1px solid rgba(31,111,100,0.08);
  flex-wrap: wrap;
  gap: 12px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #2d4a45;
  padding: 6px 20px;
}

.trust-icon {
  font-size: 1.1rem;
}

.trust-divider {
  width: 1px;
  height: 28px;
  background: rgba(31,111,100,0.15);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .panel-inner {
    grid-template-columns: 1fr;
    padding: 36px 32px;
    gap: 32px;
  }

  .panel-visual {
    order: -1;
  }

  .visual-card {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 640px) {
  .sectors {
    padding: 80px 0 70px;
  }

  .tab-pill-track {
    padding: 5px;
    gap: 2px;
  }

  .tab-pill {
    padding: 8px 14px;
    font-size: 0.82rem;
  }

  .tab-pill span:not(.pill-icon) {
    display: none;
  }

  .tab-pill .pill-icon {
    font-size: 1.2rem;
  }

  .panel-inner {
    padding: 28px 22px;
  }

  .panel-text h3 {
    font-size: 1.5rem;
  }

  .trust-strip {
    padding: 18px 16px;
    gap: 8px;
  }

  .trust-divider { display: none; }

  .trust-item {
    padding: 6px 12px;
    font-size: 0.82rem;
  }
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* =========================================================
   PREMIUM SECTOR SECTION
========================================================= */

.sector-section {
    position: relative;

    overflow: hidden;

    background: #020617;

    padding: 120px 0;
}

/* PARTICLES */
#particles-js {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 1;
}

/* GLOW OVERLAY */
.gradient-overlay {
    position: absolute;

    inset: 0;

    z-index: 2;

    background:
    radial-gradient(
        circle at top left,
        rgba(37,99,235,0.18),
        transparent 35%
    ),

    radial-gradient(
        circle at bottom right,
        rgba(6,182,212,0.14),
        transparent 40%
    );
}

/* CONTENT */
.sector-section .container {
    position: relative;
    z-index: 5;
}

/* GLASS EFFECT */
.tab-panel {
    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(16px);

    border-radius: 30px;

    overflow: hidden;

    transition: 0.4s ease;
}

/* HOVER */
.tab-panel:hover {
    transform: translateY(-6px);

    border-color: rgba(56,189,248,0.3);

    box-shadow:
    0 0 40px rgba(56,189,248,0.12);
}

/* IMAGE ZOOM */
.visual-card img {
    transition: 0.6s ease;
}

.tab-panel:hover img {
    transform: scale(1.05);
}

/* ORBS */
.orb {
    filter: blur(120px);

    opacity: 0.22;
}

.more-services-section {
    position: relative;
    overflow: hidden;

    padding: 120px 8%;

    /* NEW PREMIUM COLOR (different from sectors) */
    background: linear-gradient(
        135deg,
        #050816,
        #0b1b3a,
        #071022
    );

    isolation: isolate;
}

/* GRID FIX: 3 ITEMS PER ROW */
.more-services-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

    margin-top: 70px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .more-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .more-services-grid {
        grid-template-columns: 1fr;
    }
}

/* BACKGROUND EFFECT (SOFT BLUE GLOW) */
.mesh-gradient {
    position: absolute;
    inset: 0;
    z-index: -3;

    background:
    radial-gradient(circle at 20% 20%, rgba(59,130,246,0.20), transparent 35%),

    radial-gradient(circle at 80% 30%, rgba(99,102,241,0.15), transparent 40%),

    radial-gradient(circle at 50% 80%, rgba(6,182,212,0.12), transparent 40%);

    animation: meshMove 14s ease-in-out infinite alternate;
}

@keyframes meshMove {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

/* CARD UPDATE */
.more-service-card {
    position: relative;

    padding: 35px;

    border-radius: 26px;

    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(14px);

    color: white;

    transition: 0.4s ease;
}

/* HOVER */
.more-service-card:hover {
    transform: translateY(-10px);

    border-color: rgba(59,130,246,0.4);

    box-shadow: 0 0 30px rgba(59,130,246,0.15);
}

/* ICON */
.more-service-card .why-icon {
    font-size: 42px;
    margin-bottom: 18px;
}

/* TEXT COLOR FIX */
.more-service-card p {
    color: rgba(255,255,255,0.75);
}

#more-services {
    background: linear-gradient(
        135deg,
        #0b1220,
        #0f1a2b,
        #0a0f1a
    );
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 99999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float img {
  width: 24px;
  height: 24px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}