/* ===================== NAVIGATION ===================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.nav-logo-icon {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--teal);
  border-radius: 50%;
  position: relative;
}

.nav-logo-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  width: 16px;
  height: 20px;
  border: 1.5px solid var(--teal);
  border-radius: 40% 40% 45% 45%;
}

.nav-logo-text {
  font-size: 18px;
  letter-spacing: 3px;
  color: var(--teal);
  text-transform: uppercase;
  font-weight: 400;
}

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

.nav-link--highlight {
  margin-left: 8px;
}

.nav-cta {
  margin-left: -20px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  opacity: 0.8;
  transition: opacity 0.2s;
}

.nav-link:hover {
  opacity: 1;
}

.nav-link--highlight {
  opacity: 1;
  color: var(--teal);
  border: 1.5px solid var(--teal);
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.nav-link--highlight:hover {
  background: var(--teal);
  color: #fff;
}

.nav-cta {
  padding: 10px 24px;
  background: var(--teal);
  color: #fff;
  border: 1.5px solid var(--teal);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(27,77,77,0.3);
}

/* Backdrop for mobile menu */
.nav-backdrop {
  display: none;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal);
  transition: transform 0.3s, opacity 0.3s;
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(180deg, #B8D4E3 0%, #87CEEB 30%, #5BA3C0 70%, #3D8DAB 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
  transition: transform 0.15s ease-out;
}

.hero-circle--1 {
  top: 15%;
  left: 10%;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-circle--2 {
  bottom: 10%;
  right: 5%;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(255,255,255,0.15);
}

.hero-circle--3 {
  top: 40%;
  right: 15%;
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.1);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-tag {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-title {
  font-size: 72px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
}

.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 48px;
  line-height: 1.6;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero-primary {
  padding: 16px 36px;
  background: #fff;
  color: var(--teal);
  border: none;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.btn-hero-secondary {
  padding: 16px 36px;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-indicator span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}

/* ===================== FEATURES ===================== */
.features {
  padding: 120px 40px;
  background: var(--bg-light);
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-tag {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  font-weight: 600;
}

.section-title {
  font-size: 48px;
  font-weight: 300;
  color: var(--text);
}

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

.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid var(--border);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  opacity: 0.1;
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--text);
}

.feature-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.feature-link {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 14px;
}

/* ===================== STATS ===================== */
.stats {
  padding: 100px 40px;
  background: var(--teal);
  color: #fff;
}

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

.stat-number {
  font-size: 56px;
  font-weight: 300;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ===================== LOCATIONS ===================== */
.locations {
  padding: 120px 40px;
  background: #fff;
}

.locations-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.location-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.location-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.location-header {
  height: 200px;
  background: linear-gradient(135deg, #B8D4E3 0%, #5BA3C0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-pin {
  width: 80px;
  height: 80px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-body {
  padding: 28px;
}

.location-body h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--text);
}

.location-body .address {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.location-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.location-tag {
  font-size: 12px;
  padding: 6px 12px;
  background: var(--bg-light);
  border-radius: 20px;
  color: var(--text-muted);
}

/* ===================== PRICING ===================== */
.pricing {
  padding: 120px 40px;
  background: var(--bg-light);
}

.pricing-inner {
  max-width: 1000px;
  margin: 0 auto;
}

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

.plan-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  position: relative;
  border: 1px solid var(--border);
  transition: transform 0.3s;
}

.plan-card--popular {
  background: var(--teal);
  color: #fff;
  border: none;
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(27,77,77,0.2);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sand);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plan-card h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 8px;
}

.plan-price {
  margin-bottom: 24px;
}

.plan-price .currency {
  font-size: 14px;
  opacity: 0.6;
}

.plan-price .amount {
  font-size: 48px;
  font-weight: 300;
}

.plan-price .period {
  font-size: 14px;
  opacity: 0.6;
}

.plan-features {
  margin-bottom: 32px;
}

.plan-features li {
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-card--popular .plan-features li {
  border-bottom-color: rgba(255,255,255,0.1);
}

.plan-features .check {
  color: var(--green);
}

.plan-card--popular .plan-features .check {
  color: #fff;
}

.plan-btn {
  width: 100%;
  padding: 14px 24px;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.2s;
}

.plan-btn:hover {
  transform: translateY(-2px);
}

.plan-card--popular .plan-btn {
  background: #fff;
  color: var(--teal);
}

/* ===================== CTA ===================== */
.cta {
  padding: 120px 40px;
  background: linear-gradient(135deg, #B8D4E3 0%, #87CEEB 50%, #5BA3C0 100%);
  text-align: center;
}

.cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 48px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 24px;
}

.cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-btn {
  padding: 18px 48px;
  background: #fff;
  color: var(--teal);
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
}

/* ===================== FOOTER ===================== */
.footer {
  padding: 80px 40px 40px;
  background: #1A1A1A;
  color: #fff;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-icon {
  width: 36px;
  height: 36px;
  border: 1.5px solid #fff;
  border-radius: 50%;
  position: relative;
}

.footer-logo-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  width: 16px;
  height: 20px;
  border: 1.5px solid #fff;
  border-radius: 40% 40% 45% 45%;
}

.footer-brand span {
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

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

.footer-col a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.footer-social a {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  transition: color 0.2s;
}

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

/* ===================== RESPONSIVE ===================== */

/* Tablet */
@media (max-width: 1023px) {
  .features-grid,
  .locations-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

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

  .hero-title {
    font-size: 56px;
  }

  .section-title {
    font-size: 40px;
  }

  .cta h2 {
    font-size: 40px;
  }

  .plan-card--popular {
    transform: scale(1);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .nav {
    padding: 16px 20px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 100px 32px 40px;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    z-index: 200;
  }

  .nav-links .nav-link {
    font-size: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    opacity: 1;
    display: block;
  }

  .nav-links .nav-link--highlight {
    border: none;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    padding: 16px 0;
    color: var(--teal);
    background: none;
    font-size: 16px;
  }

  .nav-links .nav-cta {
    margin-top: 24px;
    text-align: center;
    width: 100%;
  }

  .nav-links.nav-menu--open {
    right: 0;
  }

  .nav-hamburger {
    display: flex;
    z-index: 300;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 150;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .nav-backdrop.visible {
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    padding: 100px 24px 60px;
    min-height: auto;
    min-height: 100svh;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-desc {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .features,
  .locations,
  .pricing {
    padding: 80px 20px;
  }

  .stats {
    padding: 60px 20px;
  }

  .features-grid,
  .locations-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stat-number {
    font-size: 40px;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .section-title {
    font-size: 32px;
  }

  .cta {
    padding: 80px 20px;
  }

  .cta h2 {
    font-size: 32px;
  }

  .footer {
    padding: 60px 20px 30px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .scroll-indicator {
    display: none;
  }
}
