*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ocean: #0B3C5D;
  --teal: #00A8A8;
  --teal-light: #00C8C8;
  --white: #FAFCFD;
  --gray-50: #F2F6F9;
  --gray-100: #E4ECF2;
  --gray-400: #8BA8BE;
  --gray-700: #2D4A5C;
  --text: #0A1E2E;
  --font: 'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 48px;
  box-shadow: 0 4px 24px rgba(11,60,93,0.1);
}
.nav-logo {
  display: flex; flex-direction: column; line-height: 1.1;
}
.nav-logo span:first-child {
  font-size: 18px; font-weight: 700; letter-spacing: 2px; color: #fff; text-transform: uppercase;
}
.nav-logo span:last-child {
  font-size: 11px; font-weight: 400; letter-spacing: 4px; color: var(--teal); text-transform: uppercase;
}
.nav-links {
  display: flex; gap: 32px; list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 13px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px;
  background: var(--teal); transform: scaleX(0); transition: transform 0.3s;
}
.nav-links a:hover { color: var(--teal); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav.scrolled .nav-links a { color: var(--ocean); }
.nav.scrolled .nav-links a:hover { color: var(--teal); }
.nav-cta {
  background: var(--teal); color: #fff;
  border: none; padding: 10px 24px; border-radius: 50px;
  font-family: var(--font); font-size: 13px; font-weight: 600; letter-spacing: 1px;
  cursor: pointer; transition: all 0.3s;
  text-transform: uppercase;
}
.nav-cta:hover { background: var(--teal-light); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,168,168,0.4); }

/* HERO */
.hero {
  height: 100vh; min-height: 700px;
  position: relative; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: #060F17;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body{
    margin: 0;
    padding: 0;
}
.hero-bg-img {
  position: absolute; inset: 0;
  background: url('/static/images/TJS03132-Enhanced-NR.jpg') center center / cover no-repeat;
  transform: scale(1.06);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.12); }
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to bottom, rgba(5,15,25,0.55) 0%, rgba(5,15,25,0.35) 40%, rgba(5,15,25,0.65) 100%);
}
.hero-water {
  position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  overflow: hidden; opacity: 0.15;
}
.hero-water svg { width: 200%; animation: waterScroll 8s linear infinite; }
@keyframes waterScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.hero-particles {
  position: absolute; inset: 0; overflow: hidden;
}
.particle {
  position: absolute; border-radius: 50%;
  background: rgba(0,168,168,0.3);
  animation: floatParticle var(--dur) ease-in-out infinite;
  animation-delay: var(--delay);
}
@keyframes floatParticle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-30px) scale(1.1); opacity: 0.6; }
}

.hero-content {
  position: relative; z-index: 10;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
  display: flex; flex-direction: column; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.8s 0.3s forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 40px; height: 1px; background: var(--teal);
}
.hero-title {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800; color: #fff; line-height: 1.15;
  letter-spacing: -1px; margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.8s 0.5s forwards;
  width: 100%;
}
.hero-title .accent { color: var(--teal); }
.hero-sub {
  font-size: clamp(13px, 1.4vw, 16px); font-weight: 400;
  color: rgba(255,255,255,0.7); letter-spacing: 1px;
  margin-bottom: 48px; margin-top: 8px;
  opacity: 0; animation: fadeUp 0.8s 0.7s forwards;
}
.hero-sub span { color: rgba(255,255,255,0.9); font-weight: 500; }

.hero-panel {
  display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 24px 32px;
  opacity: 0; animation: fadeUp 0.8s 0.9s forwards;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal), #008888);
  color: #fff; border: none;
  padding: 14px 32px; border-radius: 50px;
  font-family: var(--font); font-size: 14px; font-weight: 600; letter-spacing: 1px;
  cursor: pointer; transition: all 0.3s; text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(0,168,168,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,168,168,0.5);
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
}
.btn-outline {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 14px 32px; border-radius: 50px;
  font-family: var(--font); font-size: 14px; font-weight: 500; letter-spacing: 1px;
  cursor: pointer; transition: all 0.3s; text-transform: uppercase;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff; border: none;
  padding: 14px 28px; border-radius: 50px;
  font-family: var(--font); font-size: 14px; font-weight: 600; letter-spacing: 0.5px;
  cursor: pointer; transition: all 0.3s; display: flex; align-items: center; gap: 8px;
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37,211,102,0.4);
}

.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 11px; letter-spacing: 2px;
  animation: fadeUp 1s 1.5s both;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.1); }
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* SECTION COMMONS */
section { padding: 100px 48px; }
.section-label {
  font-size: 11px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 12px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::after { content: ''; flex: none; width: 32px; height: 1px; background: var(--teal); }
.section-title {
  font-size: clamp(28px, 4vw, 48px); font-weight: 800;
  color: var(--ocean); line-height: 1.15; letter-spacing: -0.5px;
}
.section-title .accent { color: var(--teal); }

/* HIGHLIGHTS */
.highlights { background: var(--ocean); padding: 64px 48px; }
.highlights-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
}
.highlight-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 28px 20px;
  text-align: center; cursor: default;
  transition: all 0.35s ease;
  position: relative; overflow: hidden;
}
.highlight-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,168,168,0.1), transparent);
  opacity: 0; transition: opacity 0.35s;
}
.highlight-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.1); border-color: rgba(0,168,168,0.3); }
.highlight-card:hover::before { opacity: 1; }
.highlight-icon {
  width: 52px; height: 52px; margin: 0 auto 14px;
  background: rgba(0,168,168,0.15); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; transition: transform 0.35s;
}
.highlight-card:hover .highlight-icon { transform: scale(1.15) rotate(-5deg); }
.highlight-title {
  font-size: 13px; font-weight: 600; color: #fff; letter-spacing: 0.3px;
}
.highlight-sub { font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 4px; }

/* ABOUT */
.about { max-width: 1200px; margin: 0 auto; padding: 100px 48px; }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-tag {
  display: inline-block; background: rgba(0,168,168,0.1); color: var(--teal);
  font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 24px;
}
.about-title {
  font-size: clamp(28px, 3vw, 40px); font-weight: 800; color: var(--ocean);
  line-height: 1.2; margin-bottom: 24px; letter-spacing: -0.5px;
}
.about-text {
  font-size: 16px; line-height: 1.85; color: var(--gray-700);
  margin-bottom: 36px; font-weight: 400;
}
.btn-readmore {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--teal); font-size: 14px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; background: none; border: none; cursor: pointer;
  transition: gap 0.3s;
}
.btn-readmore:hover { gap: 16px; }
.btn-readmore .arrow {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,168,168,0.1); display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.btn-readmore:hover .arrow { background: var(--teal); color: #fff; }

.about-img {
  position: relative; border-radius: 24px; overflow: hidden;
  height: 500px;
}
.about-img-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.about-img-inner img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform 0.6s ease;
}
.about-img:hover .about-img-inner img { transform: scale(1.04); }
.img-placeholder-label {
  font-family: 'Courier New', monospace; font-size: 12px; font-weight: 400;
  color: rgba(255,255,255,0.35); letter-spacing: 1px; text-align: center;
  line-height: 1.6; z-index: 1; padding: 20px;
}
.about-badge {
  position: absolute; bottom: 28px; left: -20px;
  background: rgba(11,60,93,0.95); backdrop-filter: blur(10px);
  border: 1px solid rgba(0,168,168,0.2);
  border-radius: 16px; padding: 16px 24px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.about-badge-num {
  font-size: 32px; font-weight: 800; color: var(--teal); line-height: 1;
}
.about-badge-text {
  font-size: 12px; color: rgba(255,255,255,0.7); line-height: 1.4;
}

/* EXPERIENCES */
.experiences { background: var(--gray-50); }
.experiences-inner { max-width: 1200px; margin: 0 auto; }
.experiences-header { text-align: center; margin-bottom: 60px; }
.exp-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.exp-card {
  border-radius: 20px; overflow: hidden;
  height: 440px; position: relative; cursor: pointer;
  transition: transform 0.4s ease;
}
.exp-card:hover { transform: translateY(-8px); }
.exp-card-bg {
  position: absolute; inset: 0;
  transition: transform 0.6s ease;
  overflow: hidden;
}
.exp-card-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block;
}
.exp-card:hover .exp-card-bg { transform: scale(1.05); }
.exp-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,30,46,0.92) 0%, rgba(10,30,46,0.3) 50%, transparent 100%);
  transition: all 0.4s;
}
.exp-card:hover .exp-card-overlay {
  background: linear-gradient(to top, rgba(0,60,80,0.95) 0%, rgba(0,40,70,0.6) 60%, rgba(0,30,60,0.2) 100%);
}
.exp-card-content {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 28px;
}
.exp-card-tag {
  font-size: 10px; font-weight: 600; letter-spacing: 3px; color: var(--teal);
  text-transform: uppercase; margin-bottom: 8px; opacity: 0;
  transform: translateY(10px); transition: all 0.4s 0.1s;
}
.exp-card:hover .exp-card-tag { opacity: 1; transform: translateY(0); }
.exp-card-title {
  font-size: 20px; font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 10px;
}
.exp-card-desc {
  font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.6;
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
}
.exp-card:hover .exp-card-desc { max-height: 80px; }
.exp-card-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; letter-spacing: 1px; color: var(--teal);
  text-transform: uppercase; margin-top: 12px; opacity: 0;
  transform: translateY(8px); transition: all 0.4s 0.2s;
}
.exp-card:hover .exp-card-arrow { opacity: 1; transform: translateY(0); }

/* WHY CHOOSE US */
.why { max-width: 1200px; margin: 0 auto; }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px;
}
.why-item {
  padding: 28px; border-radius: 16px;
  background: var(--gray-50); border: 1px solid var(--gray-100);
  transition: all 0.3s;
  cursor: default;
}
.why-item:hover {
  background: #fff; border-color: rgba(0,168,168,0.2);
  box-shadow: 0 12px 32px rgba(11,60,93,0.08);
  transform: translateY(-4px);
}
.why-item-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(0,168,168,0.1); display: flex; align-items: center;
  justify-content: center; font-size: 20px; margin-bottom: 14px;
  transition: transform 0.3s;
}
.why-item:hover .why-item-icon { transform: rotate(-8deg) scale(1.1); }
.why-item-title { font-size: 14px; font-weight: 700; color: var(--ocean); margin-bottom: 6px; }
.why-item-text { font-size: 13px; color: var(--gray-700); line-height: 1.6; }

.why-visual {
  display: flex; flex-direction: column; gap: 16px;
}
.why-visual-main {
  position: relative; height: 560px; border-radius: 24px; overflow: hidden;
}
.why-visual-second {
  border-radius: 24px; overflow: hidden; height: 260px;
}
.why-visual-second img {
  width: 100%; height: 100%; object-fit: cover; object-position: center; display: block;
  transition: transform 0.6s ease;
}
.why-visual-second:hover img { transform: scale(1.04); }
.why-stats {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 24px;
}
.why-stat {
  text-align: center;
  background: rgba(255,255,255,0.06); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 20px 40px;
  transition: transform 0.3s;
}
.why-stat:hover { transform: scale(1.04); }
.why-stat-num { font-size: 40px; font-weight: 800; color: var(--teal); line-height: 1; }
.why-stat-label { font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 1px; margin-top: 4px; }
.why-visual-bg {
  width: 100%; height: 100%;
  position: relative; overflow: hidden;
}

/* GALLERY */
.gallery { background: var(--ocean); }
.gallery-inner { max-width: 1200px; margin: 0 auto; }
.gallery-header { text-align: center; margin-bottom: 48px; }
.gallery-header .section-title { color: #fff; }
.gallery-header .section-label { justify-content: center; }
.gallery-header .section-label::after { display: none; }
.gallery-header .section-label::before { content: ''; flex: none; width: 32px; height: 1px; background: var(--teal); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 280px 280px;
  gap: 16px;
}
.gallery-item {
  border-radius: 16px; overflow: hidden;
  position: relative; cursor: pointer;
}
.gallery-item:nth-child(1) { grid-column: 1/5; grid-row: 1/2; }
.gallery-item:nth-child(2) { grid-column: 5/9; grid-row: 1/2; }
.gallery-item:nth-child(3) { grid-column: 9/13; grid-row: 1/3; }
.gallery-item:nth-child(4) { grid-column: 1/7; grid-row: 2/3; }
.gallery-item:nth-child(5) { grid-column: 7/9; grid-row: 2/3; }

.gallery-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center; display: block;
  transition: transform 0.6s ease;
}
.gallery-item:hover .gallery-img { transform: scale(1.06); }
.gallery-hover {
  position: absolute; inset: 0;
  background: rgba(0,168,168,0.0); transition: background 0.4s;
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-hover { background: rgba(0,100,120,0.35); }
.gallery-zoom {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.9); display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.6); transition: all 0.3s;
  font-size: 18px;
}
.gallery-item:hover .gallery-zoom { opacity: 1; transform: scale(1); }

.gallery-footer { text-align: center; margin-top: 48px; }
.btn-gallery {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.25); border-radius: 50px;
  padding: 14px 36px; font-family: var(--font); font-size: 14px;
  font-weight: 500; letter-spacing: 1px; cursor: pointer; text-transform: uppercase;
  transition: all 0.3s;
}
.btn-gallery:hover {
  background: rgba(255,255,255,0.08); border-color: var(--teal);
  color: var(--teal); transform: translateY(-2px);
}

/* TESTIMONIALS */
.testimonials { background: var(--gray-50); overflow: hidden; }
.testimonials-inner { max-width: 1200px; margin: 0 auto; }
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-track {
  display: flex; gap: 24px;
  animation: scrollTestimonials 30s linear infinite;
  width: max-content;
}
.testimonials-track:hover { animation-play-state: paused; }
@keyframes scrollTestimonials {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.testimonials-wrap { overflow: hidden; }
.testi-card {
  width: 360px; flex: none;
  background: #fff; border-radius: 20px;
  padding: 32px; box-shadow: 0 4px 24px rgba(11,60,93,0.07);
  border: 1px solid var(--gray-100);
  transition: transform 0.3s, box-shadow 0.3s;
}
.testi-card:hover {
  transform: translateY(-4px); box-shadow: 0 12px 40px rgba(11,60,93,0.12);
}
.testi-stars { color: #F5A623; font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text {
  font-size: 15px; line-height: 1.75; color: var(--gray-700);
  margin-bottom: 24px; font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--ocean), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: #fff; flex: none;
}
.testi-name { font-size: 14px; font-weight: 700; color: var(--ocean); }
.testi-location { font-size: 12px; color: var(--gray-400); margin-top: 2px; }

/* CTA BANNER */
.cta-banner {
  position: relative; text-align: center; padding: 120px 48px; overflow: hidden;
}
.cta-banner-bg {
  position: absolute; inset: 0;
  background: url('./static/images/TJS02833-Enhanced-NR-(1).jpg') center center / cover no-repeat;
  transform: scale(1.04);
  animation: heroZoom 16s ease-in-out infinite alternate;
}
.cta-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,60,93,0.85) 0%, rgba(0,90,122,0.75) 40%, rgba(0,107,107,0.82) 100%);
}
.cta-banner-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-urgency {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px; padding: 6px 18px; margin-bottom: 28px;
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.85); letter-spacing: 1px;
}
.urgency-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #FF6B6B;
  animation: pulseDot 1.5s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}
.cta-banner-title {
  font-size: clamp(28px, 4vw, 52px); font-weight: 800; color: #fff;
  line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 16px;
}
.cta-banner-sub { font-size: 16px; color: rgba(255,255,255,0.65); margin-bottom: 40px; }
.cta-banner-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-banner-primary {
  background: var(--teal); color: #fff; border: none;
  padding: 16px 40px; border-radius: 50px;
  font-family: var(--font); font-size: 15px; font-weight: 600; letter-spacing: 1px;
  cursor: pointer; transition: all 0.3s; text-transform: uppercase;
  box-shadow: 0 8px 28px rgba(0,168,168,0.4);
}
.btn-banner-primary:hover {
  background: var(--teal-light); transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0,168,168,0.55);
}
.btn-banner-outline {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.35); border-radius: 50px;
  padding: 16px 40px; font-family: var(--font); font-size: 15px;
  font-weight: 500; letter-spacing: 1px; cursor: pointer; transition: all 0.3s;
  text-transform: uppercase;
}
.btn-banner-outline:hover {
  background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

/* FOOTER */
.footer {
  background: #060F17; padding: 72px 48px 36px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
  padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand-name {
  font-size: 17px; font-weight: 700; letter-spacing: 2px; color: #fff;
  text-transform: uppercase; line-height: 1.1;
}
.footer-brand-sub {
  font-size: 10px; font-weight: 400; letter-spacing: 4px; color: var(--teal);
  text-transform: uppercase; margin-bottom: 16px;
}
.footer-tagline {
  font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 24px;
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 14px; cursor: pointer;
  transition: all 0.3s; text-decoration: none;
}
.social-btn:hover { background: var(--teal); border-color: var(--teal); color: #fff; }
.footer-col h4 {
  font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.9); margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  text-decoration: none; color: rgba(255,255,255,0.45); font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--teal); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px;
  font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.5;
}
.footer-contact-icon { color: var(--teal); flex: none; margin-top: 2px; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 28px; display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-tagline-bottom { font-size: 12px; color: rgba(255,255,255,0.25); letter-spacing: 2px; }

/* FLOATING BUTTONS */
.float-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  cursor: pointer; transition: transform 0.3s, box-shadow 0.3s;
  border: none;
}
.float-wa:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 14px 36px rgba(37,211,102,0.6);
}
.float-wa svg { width: 28px; height: 28px; }

/* MODAL */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(5,15,25,0.85); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  animation: fadeInOverlay 0.3s ease;
}
@keyframes fadeInOverlay { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: #fff; border-radius: 24px; padding: 48px;
  width: 480px; max-width: 90vw;
  animation: modalIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gray-100); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: background 0.2s;
}
.modal-close:hover { background: var(--gray-100); color: var(--ocean); }
.modal-title { font-size: 22px; font-weight: 800; color: var(--ocean); margin-bottom: 6px; }
.modal-sub { font-size: 14px; color: var(--gray-400); margin-bottom: 28px; }
.modal-form { display: flex; flex-direction: column; gap: 14px; }
.modal-input, .modal-select, .modal-textarea {
  width: 100%; padding: 13px 16px; border-radius: 12px;
  border: 1px solid var(--gray-100); background: var(--gray-50);
  font-family: var(--font); font-size: 14px; color: var(--text);
  outline: none; transition: border-color 0.2s;
}
.modal-input:focus, .modal-select:focus, .modal-textarea:focus {
  border-color: var(--teal);
  background: #fff;
}
.modal-textarea { min-height: 80px; resize: vertical; }
.modal-submit {
  background: linear-gradient(135deg, var(--teal), #008888);
  color: #fff; border: none; border-radius: 50px;
  padding: 14px; font-family: var(--font); font-size: 14px;
  font-weight: 600; letter-spacing: 1px; cursor: pointer; transition: all 0.3s;
  text-transform: uppercase; margin-top: 4px;
}
.modal-submit:hover {
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  box-shadow: 0 8px 24px rgba(0,168,168,0.4);
  transform: translateY(-1px);
}
.modal-note { font-size: 12px; color: var(--gray-400); text-align: center; margin-top: 8px; }

/* IMG PLACEHOLDERS */
.img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.stripe-overlay {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 12px,
    rgba(255,255,255,0.03) 12px,
    rgba(255,255,255,0.03) 13px
  );
}
.placeholder-text {
  font-family: 'Courier New', monospace; font-size: 11px; font-weight: 400;
  color: rgba(255,255,255,0.3); letter-spacing: 0.5px; text-align: center;
  line-height: 1.6; z-index: 1; padding: 20px;
}

/* Thin divider */
.divider {
  max-width: 1200px; margin: 0 auto;
  height: 1px; background: var(--gray-100);
}

/* ── GLOBAL IMAGE FIX ─────────────────────────────── */
img { max-width: 100%; height: auto; }

/* ── HAMBURGER ────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
  position: relative;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: rgba(255,255,255,0.9);
  border-radius: 2px;
  transition: all 0.32s ease;
}
.nav.scrolled .nav-hamburger span { background: var(--ocean); }
.nav-hamburger.open span { background: var(--teal); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE DROPDOWN MENU ─────────────────────────── */
.nav-mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(6,15,23,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 998;
  display: flex;
  flex-direction: column;
  padding: 92px 28px 36px;
  transform: translateY(-110%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  border-bottom: 1px solid rgba(0,168,168,0.18);
  box-shadow: 0 24px 48px rgba(0,0,0,0.45);
}
.nav-mobile-menu.open {
  transform: translateY(0);
  pointer-events: all;
}
.nav-mobile-menu a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.nav-mobile-menu a::after {
  content: '›';
  font-size: 22px;
  line-height: 1;
  color: var(--teal);
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.2s ease;
}
.nav-mobile-menu a:hover { color: #fff; padding-left: 6px; }
.nav-mobile-menu a:hover::after { opacity: 1; transform: translateX(0); }
.nav-mobile-menu a:last-of-type { border-bottom: none; }
.nav-mobile-cta {
  margin-top: 28px;
  width: 100%;
  text-align: center;
}

/* ── TABLET: 769px – 1024px ───────────────────────── */
@media (max-width: 1024px) {
  section { padding: 80px 24px; }
  .nav { padding: 16px 24px; }
  .nav.scrolled { padding: 12px 24px; }

  .highlights { padding: 48px 24px; }
  .highlights-inner { grid-template-columns: repeat(3, 1fr); }

  .about { padding: 80px 24px; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-img { height: 400px; }
  .about-badge { left: 0; }

  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-card { height: 360px; }

  .why { padding: 80px 24px; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-item:last-child { grid-column: span 2 !important; }
  .why-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .why-visual-main { height: 340px; }
  .why-visual-second { height: 340px; }
  .why-stats { display: none; }
  .why-visual-bg img { border-radius: 24px; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 260px 260px 260px;
  }
  .gallery-item:nth-child(1) { grid-column: 1/2; grid-row: 1; }
  .gallery-item:nth-child(2) { grid-column: 2/3; grid-row: 1; }
  .gallery-item:nth-child(3) { grid-column: 1/3; grid-row: 2; }
  .gallery-item:nth-child(4) { grid-column: 1/2; grid-row: 3; }
  .gallery-item:nth-child(5) { grid-column: 2/3; grid-row: 3; }

  .cta-banner { padding: 80px 24px; }

  .footer { padding: 60px 24px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── MOBILE: ≤ 768px ──────────────────────────────── */
@media (max-width: 768px) {
  section { padding: 60px 16px; }
  .nav { padding: 14px 16px; }
  .nav.scrolled { padding: 12px 16px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero-content { padding: 0 16px; }
  .hero-panel {
    flex-direction: column;
    width: 100%; max-width: 360px;
    padding: 20px 16px;
  }
  .btn-primary, .btn-outline, .btn-whatsapp {
    width: 100%; justify-content: center;
  }

  /* Highlights */
  .highlights { padding: 40px 16px; }
  .highlights-inner { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .highlight-card { padding: 20px 12px; }
  .highlight-icon { width: 44px; height: 44px; font-size: 20px; }

  /* About */
  .about { padding: 60px 16px; }
  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-img { height: 280px; }
  .about-badge { left: 0; bottom: 16px; }

  /* Experiences */
  .exp-grid { grid-template-columns: 1fr; gap: 16px; }
  .exp-card { height: 300px; }
  .exp-card:hover { transform: none; }

  /* Why Choose Us */
  .why { padding: 60px 16px; }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-item:last-child { grid-column: unset !important; }
  .why-visual { flex-direction: column; gap: 12px; }
  .why-visual-main { height: 280px; }
  .why-visual-second { height: 200px; }
  .why-stats { display: none; }

  /* Gallery */
  .gallery { padding: 60px 16px; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 12px;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) {
    grid-column: unset;
    grid-row: unset;
    height: 240px;
  }

  /* Testimonials */
  .testimonials { padding: 60px 0; }
  .testimonials-inner { padding: 0 16px; }
  .testimonials-wrap { padding: 0 16px; }
  .testi-card { width: 280px; padding: 24px; }

  /* CTA Banner */
  .cta-banner { padding: 80px 16px; }
  .cta-banner-btns { flex-direction: column; align-items: stretch; }
  .btn-banner-primary, .btn-banner-outline { width: 100%; }

  /* Footer */
  .footer { padding: 48px 16px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}