/* ===== CSS VARIABLES ===== */
:root {
  --navy: #1a2540;
  --navy2: #243050;
  --green: #5caa3c;
  --blue: #3478c8;
  --light: #f4f7fc;
  --white: #ffffff;
  --gray: #6b7280;
  --dark: #111827;
  --border: rgba(26,37,64,0.10);
  --shadow: 0 8px 40px rgba(26,37,64,0.10);
  --radius: 16px;
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
}

/* ===== RESET ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===== UTILITY ===== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), #4a9630);
  color: #fff;
  box-shadow: 0 4px 20px rgba(92, 170, 60, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(92, 170, 60, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.section {
  padding: 100px 0;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(52, 120, 200, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: 1px;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 560px;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--navy);
  color: #fff;
  padding: 0;
  font-size: 0.82rem;
}
@media (max-width: 768px) {
  .topbar {
    padding: 5px 0px;
  }
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}

.topbar a.location {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
  margin-right: 20px;
  font-size: 18px;
}
@media (max-width: 768px) {
  .topbar a.location {
    font-size: 12px;
  }
}

.topbar a:hover {
  color: #fff;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 10.7%;
  background-color: #fff;
  height: 62px;
}
@media (max-width: 768px) {
  .topbar-left {
    width: 0px;
  }
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 53.5%;
}
@media (max-width: 768px) {
  .topbar-right {
    width: 100%;
  }
}

.topbar-right span.follow-us-title {
  color: rgb(255, 255, 255);
  font-size: 1rem;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .topbar-right span.follow-us-title {
    font-size: 10px;
  }
}

.topbar i {
  color: var(--green);
}

.social-icons {
  display: flex;
  gap: 10px;
}
@media (max-width: 768px) {
  .social-icons {
    gap: 5px;
  }
}

.social-icons a {
  width: 38px;
  height: 38px;
  -radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: var(--transition);
}
@media (max-width: 768px) {
  .social-icons a {
    width: 22px;
    height: 22px;
    font-size: 0.65rem;
  }
}

.social-icons a:hover {
  background: var(--green);
  color: #fff;
}

.social-icons a i {
  width: 10px;
  height: 10px;
}

.social-icons a:hover i {
  color: #fff;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  width: 130px;
  transition: var(--transition);
}
@media (max-width: 768px) {
  .logo {
    width: 100px;
  }
}

.logo img {
  height: 130px;
  width: auto;
  position: absolute;
  top: -111px;
  left: 0px;
  z-index: 2;
  transition: var(--transition);
}
@media (max-width: 768px) {
  .logo img {
    height: 75px;
    top: -37px;
  }
}

.logo-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: var(--navy);
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--blue);
  text-transform: uppercase;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .logo {
  width: 100px;
}
.navbar.scrolled .logo img {
  height: 78px;
  top: -39px;
}

.nav-links li a {
  padding: 10px 5px;
}
.nav-links li.dropdown {
  position: relative;
}
.nav-links li.dropdown a i {
  font-size: 12px;
  transition: var(--transition);
  color: #111827;
  position: relative;
  top: 2px;
  left: 6px;
}
.nav-links li.dropdown ul.dropdown-menu {
  position: absolute;
  top: 160%;
  left: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
  display: none;
  flex-direction: column;
  gap: 0;
  min-width: 260px;
  z-index: 1;
  transition: all 0.3s ease;
}
.nav-links li.dropdown ul.dropdown-menu li {
  padding: 0px 10px;
}
.nav-links li.dropdown ul.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #111827;
  transition: var(--transition);
}
.nav-links li.dropdown ul.dropdown-menu li a:hover {
  color: var(--green);
}
.nav-links li.dropdown:hover i {
  color: var(--green);
  transform: rotate(180deg);
}
.nav-links li.dropdown:hover ul {
  display: flex;
}

/* Mobile nav */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 999;
  flex-direction: column;
  padding: 100px 40px 40px;
  gap: 15px;
  top: 43px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 0.9rem;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/hero-bg.jpg") center/cover no-repeat;
  opacity: 0.18;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 55%, rgba(26, 37, 64, 0.7));
}

.hero-shape {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  height: 110%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.12;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(92, 170, 60, 0.15);
  border: 1px solid rgba(92, 170, 60, 0.3);
  color: var(--green);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge i {
  font-size: 0.7rem;
}

.hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.hero-title .accent {
  color: var(--green);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.hero-stat .num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.4rem;
  color: #fff;
  letter-spacing: 1px;
}

.hero-stat .num span {
  color: var(--green);
}

.hero-stat .label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-wrap {
  position: relative;
}

.hero-img-box {
  width: 420px;
  height: 520px;
  border-radius: 24px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  position: relative;
}

.hero-img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero-float-card {
  position: absolute;
  bottom: -20px;
  left: -40px;
  background: #fff;
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: floatCard 3s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.hero-float-card .icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--green), #4a9630);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}

.hero-float-card .text strong {
  display: block;
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 700;
}

.hero-float-card .text span {
  font-size: 0.75rem;
  color: var(--gray);
}

.hero-float-card2 {
  position: absolute;
  top: -20px;
  right: -30px;
  background: var(--navy);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatCard 3s ease-in-out infinite 1.5s;
}

.hero-float-card2 .icon2 {
  color: var(--green);
  font-size: 1.3rem;
}

.hero-float-card2 .text2 strong {
  display: block;
  font-size: 0.9rem;
  color: #fff;
  font-weight: 600;
}

.hero-float-card2 .text2 span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ===== CLIENTS BAR ===== */
.clients-bar {
  background: var(--light);
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.clients-bar .container {
  display: flex;
  align-items: center;
  gap: 40px;
  overflow: hidden;
}

.clients-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  white-space: nowrap;
}

.clients-track {
  display: flex;
  gap: 48px;
  align-items: center;
  flex: 1;
  overflow: hidden;
}

.clients-inner {
  display: flex;
  gap: 48px;
  align-items: center;
  animation: marquee 18s linear infinite;
  white-space: nowrap;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.client-logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--gray);
  opacity: 0.6;
  transition: opacity 0.3s;
}

.client-logo:hover {
  opacity: 1;
  color: var(--navy);
}

/* ===== ABOUT ===== */
.about {
  background: #fff;
}

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

.about-imgs {
  position: relative;
  height: 520px;
}

.about-img-main {
  position: absolute;
  right: 0;
  top: 0;
  width: 78%;
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-img-sm {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46%;
  height: 240px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: var(--shadow);
}

.about-img-sm img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-badge-box {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--green), #4a9630);
  color: #fff;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(92, 170, 60, 0.4);
}

.about-badge-box .big {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.8rem;
  line-height: 1;
}

.about-badge-box .small {
  font-size: 0.75rem;
  letter-spacing: 1px;
  opacity: 0.9;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
}

.about-feat i {
  color: var(--green);
  font-size: 0.85rem;
}

/* ===== SERVICE BOOKING ===== */
.booking-section {
  background: var(--light);
  padding: 60px 0;
}

.booking-card {
  background: #fff;
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow);
  max-width: 900px;
  margin: 0 auto;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.form-group input, .form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  color: var(--dark);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(52, 120, 200, 0.1);
}

.booking-submit {
  margin-top: 28px;
  text-align: center;
}

/* ===== SERVICES ===== */
.services {
  background: #fff;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header .section-sub {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  border: 1.5px solid transparent;
  position: relative;
}

.service-card:hover {
  border-color: var(--green);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(92, 170, 60, 0.12);
}

.service-card-img {
  height: 200px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 28px;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.service-link:hover {
  gap: 12px;
}

/* ===== STATS ===== */
.stats {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  padding: 32px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5rem;
  color: #fff;
  letter-spacing: 2px;
  line-height: 1;
}

.stat-num span {
  color: var(--green);
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 8px;
}

.stat-bar {
  width: 60px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  margin: 14px auto 0;
}

/* ===== WHY CHOOSE US ===== */
.why {
  background: var(--light);
}

.why .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.why-item:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 30px rgba(92, 170, 60, 0.12);
}

.why-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.why-icon.g {
  background: rgba(92, 170, 60, 0.12);
  color: var(--green);
}

.why-icon.b {
  background: rgba(52, 120, 200, 0.12);
  color: var(--blue);
}

.why-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}

.why-item p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

.why-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.why-img img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}

.why-overlay {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  background: rgba(26, 37, 64, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 22px;
  color: #fff;
}

.why-overlay h4 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.why-overlay p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== PARTNERS ===== */
.partners {
  background: #fff;
  padding: 80px 0;
}

.partners-header {
  text-align: center;
  margin-bottom: 50px;
}

.partners-map {
  background: #000;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  margin-bottom: 40px;
}

.partners-map img {
  max-width: 700px;
  width: auto;
  height: 250px;
  margin: 0 auto;
  opacity: 0.7;
}
@media (max-width: 768px) {
  .partners-map img {
    height: 150px;
    max-width: 100%;
  }
}

.partners-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.partner-badge {
  background: var(--light);
  border-radius: 12px;
  padding: 16px 28px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--navy);
  opacity: 0.7;
  transition: var(--transition);
}

.partner-badge:hover {
  opacity: 1;
  background: var(--navy);
  color: #fff;
}

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--green) 0%, #3a8a28 40%, var(--blue) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

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

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--light);
  padding: 100px 0;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.testi-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  border: 1.5px solid transparent;
}

.testi-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(52, 120, 200, 0.12);
}

.testi-stars {
  display: flex;
  gap: 4px;
  color: #f59e0b;
  margin-bottom: 16px;
}

.testi-text {
  font-size: 0.93rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.testi-author h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}

.testi-author span {
  font-size: 0.78rem;
  color: var(--gray);
}

/* ===== CAREERS ===== */
.careers {
  background: var(--navy);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.careers::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(52, 120, 200, 0.1);
}

.careers::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(92, 170, 60, 0.08);
}

.careers h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.careers p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 1;
}

.careers .btn {
  position: relative;
  z-index: 1;
}

/* ===== NEWSLETTER ===== */
.newsletter {
  background: #fff;
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.newsletter .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.newsletter-text h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 8px;
}

.newsletter-text p {
  font-size: 0.9rem;
  color: var(--gray);
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.newsletter-form input {
  padding: 14px 20px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  min-width: 280px;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-form input:focus {
  border-color: var(--blue);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: #fff;
  padding: 80px 0 0;
}

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

.footer-brand .logo-text {
  color: #fff;
  margin-top: 16px;
}

.footer-brand p {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin: 16px 0 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--green);
  color: #fff;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--green);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: var(--green);
  margin-top: 2px;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-badges {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-cert {
  font-size: 0.78rem;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 4px 12px;
  border-radius: 4px;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(92, 170, 60, 0.4);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
}

.scroll-top.show {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  transform: translateY(-4px);
  background: var(--navy);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
  }
  .hero-right {
    display: none;
  }
  .about .container, .why .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-imgs {
    height: 380px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .topbar .container {
    justify-content: center;
  }
  .topbar-left {
    display: none;
  }
  .nav-links, .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .section {
    padding: 70px 0;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .stat-item:nth-child(even) {
    border-right: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .about-badge-box {
    right: 10px;
  }
  .newsletter .container {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-stats {
    gap: 24px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .booking-grid {
    grid-template-columns: 1fr;
  }
  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }
  .newsletter-form input {
    min-width: unset;
    width: 100%;
  }
}
/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-left > * {
  animation: fadeInUp 0.7s ease both;
}

.hero-badge {
  animation-delay: 0.1s;
}

.hero-title {
  animation-delay: 0.25s;
}

.hero-desc {
  animation-delay: 0.4s;
}

.hero-actions {
  animation-delay: 0.55s;
}

.hero-stats {
  animation-delay: 0.7s;
}

.why-img {
  position: relative;
}
.why-img .youtube-play-btn {
  position: absolute;
  bottom: 45%;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  animation: pulse 1.5s infinite;
}
.why-img .youtube-play-btn svg {
  display: block;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(229, 45, 39, 0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(229, 45, 39, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(229, 45, 39, 0);
  }
}
.youtube-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
}
.youtube-modal.show {
  display: flex;
  animation: fadeIn 0.3s;
}
.youtube-modal .youtube-modal-content {
  position: relative;
  background: #000;
  padding: 0;
  border-radius: 8px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.youtube-modal .youtube-modal-content iframe {
  display: block;
  border-radius: 8px;
}
.youtube-modal .youtube-modal-content .youtube-modal-close {
  position: absolute;
  top: 10px;
  right: 20px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}/*# sourceMappingURL=main.css.map */