/* ═══════════════════════════════════════════════════
   Geopoint Lynx – Main Stylesheet
   Palette: Deep Teal Primary · Orange Accent · White
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;600;700;800&display=swap');

/* ── CSS Variables ──────────────────────────────── */
:root {
  --primary:        #0e4d3e;
  --primary-light:  #1a6b5a;
  --primary-dark:   #072e24;
  --primary-glow:   rgba(14, 77, 62, 0.15);
  --accent:         #e07b2a;
  --accent-light:   #f5a054;
  --accent-glow:    rgba(224, 123, 42, 0.15);
  --white:          #ffffff;
  --light-bg:       #f4faf8;
  --light-2:        #e8f4f0;
  --dark:           #0d1f1a;
  --gray:           #5a706b;
  --gray-light:     #a8bfba;
  --border:         rgba(14, 77, 62, 0.12);
  --shadow-sm:      0 2px 8px rgba(14,77,62,0.08);
  --shadow-md:      0 8px 32px rgba(14,77,62,0.12);
  --shadow-lg:      0 20px 60px rgba(14,77,62,0.18);
  --radius:         14px;
  --radius-lg:      24px;
  --transition:     0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

/* ── Utility ────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-heading {
  color: var(--primary-dark);
  margin-bottom: 16px;
}

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

section { padding: 96px 0; }

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(224,123,42,0.35);
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(224,123,42,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}
.btn-white:hover {
  background: var(--light-bg);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
}

/* ══════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.nav-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.nav-logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary-dark);
  line-height: 1.1;
}

.nav-logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--gray);
  font-weight: 500;
  text-transform: uppercase;
}

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

.nav-links a {
  padding: 8px 16px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gray);
  border-radius: 8px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
  background: var(--primary-glow);
}

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

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

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

/* Mobile nav drawer */
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow-md);
  flex-direction: column;
  gap: 8px;
  z-index: 999;
}

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

.nav-mobile a {
  padding: 12px 16px;
  font-weight: 500;
  color: var(--dark);
  border-radius: 10px;
  transition: var(--transition);
}

.nav-mobile a:hover {
  background: var(--light-bg);
  color: var(--primary);
}

.nav-mobile .btn {
  margin-top: 8px;
}

/* ══════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  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.03'%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");
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-badge span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-light);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.4); }
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-content h1 em {
  font-style: normal;
  color: var(--accent-light);
}

.hero-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 480px;
}

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

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}

.hero-logo-large {
  width: 160px;
  margin: 0 auto 16px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
}

.hero-card-title {
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.hero-card-sub {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
}

/* Floating blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.2;
  pointer-events: none;
}

.blob-1 {
  width: 300px; height: 300px;
  background: var(--accent);
  top: -60px; right: -60px;
}

.blob-2 {
  width: 200px; height: 200px;
  background: var(--primary-light);
  bottom: -40px; left: -40px;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
}

.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  animation: scrollBounce 1.6s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(6px); }
}

/* ══════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════ */
#about { background: var(--light-bg); }

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

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--gray);
  margin-top: 4px;
}

/* About visual */
.about-visual {
  position: relative;
}

.about-map {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  box-shadow: var(--shadow-lg);
}

.map-dot {
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.map-dot.active {
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(224,123,42,0.2);
  animation: ping 2s ease-in-out infinite;
}

@keyframes ping {
  0%, 100% { box-shadow: 0 0 0 6px rgba(224,123,42,0.2); }
  50%       { box-shadow: 0 0 0 14px rgba(224,123,42,0.05); }
}

.about-badge {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 28px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.about-badge-icon {
  width: 40px; height: 40px;
  background: var(--primary-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.about-badge-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--primary-dark);
}

.about-badge-text span {
  font-size: 0.78rem;
  color: var(--gray);
}

/* ══════════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════════ */
#services { background: var(--white); }

/* ══════════════════════════════════════════════════
   SERVICES – compact two-column layout
   ══════════════════════════════════════════════════ */
#services { background: var(--white); }

.services-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.services-left .section-heading { margin-bottom: 12px; }
.services-left .section-sub     { margin-bottom: 36px; }

/* Service list rows */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.service-item:first-child { border-top: 1px solid var(--border); }

.service-item:hover { background: var(--light-bg); padding-left: 12px; border-radius: 8px; }

.service-item-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: var(--primary-glow);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
}

.service-item:hover .service-item-icon {
  background: var(--primary);
}

.service-item-body h3 {
  font-size: 1.05rem;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.service-item-body p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* Right stats panel */
.services-visual {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: var(--shadow-lg);
}

.sv-stat {
  text-align: center;
  padding: 28px 0;
}

.sv-stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.sv-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sv-divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
}

/* Responsive */
@media (max-width: 900px) {
  .services-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services-visual {
    flex-direction: row;
    padding: 28px 24px;
    gap: 0;
  }
  .sv-stat { flex: 1; padding: 0 16px; }
  .sv-divider { width: 1px; height: auto; }
}

@media (max-width: 600px) {
  .services-visual { flex-direction: column; padding: 24px; }
  .sv-stat { padding: 20px 0; }
  .sv-divider { width: auto; height: 1px; }
}


/* ══════════════════════════════════════════════════
   PRODUCTS
   ══════════════════════════════════════════════════ */
#products { background: var(--light-bg); }

.products-header { margin-bottom: 64px; }

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
  transition: var(--transition);
}

.product-card:hover { box-shadow: var(--shadow-lg); }

.product-card:last-child { margin-bottom: 0; }

.product-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.product-inner.reverse { direction: rtl; }
.product-inner.reverse > * { direction: ltr; }

.product-content {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}

.product-content h3 { color: var(--primary-dark); margin-bottom: 8px; }
.product-content .tagline {
  color: var(--primary-light);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 16px;
}

.product-content p { color: var(--gray); font-size: 0.95rem; margin-bottom: 28px; }

.feature-list { display: flex; flex-direction: column; gap: 12px; }

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--dark);
}

.feature-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--primary-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-dot svg {
  width: 12px; height: 12px;
  fill: none;
  stroke: var(--primary);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-visual {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  position: relative;
  overflow: hidden;
}

.product-visual::after {
  content: '';
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: -80px; right: -80px;
}

.product-icon-large {
  font-size: 5rem;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.2));
  position: relative;
  z-index: 1;
  animation: float 5s ease-in-out infinite;
}

/* ══════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════ */
#contact {
  background:
    linear-gradient(rgba(14,77,62,0.85), rgba(14,77,62,0.85)),
    url('../images/contact-bg.png') center center / cover no-repeat;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}



.contact-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.contact-inner .section-label {
  background: rgba(255,255,255,0.12);
  color: var(--accent-light);
}

.contact-inner h2 { color: var(--white); margin-bottom: 16px; }

.contact-inner p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 48px;
}

.contact-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.contact-buttons .btn { min-width: 220px; justify-content: center; }

.contact-details {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
}

.contact-detail-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.5);
  padding: 32px 0;
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}

.footer-logo img { width: 32px; }

/* ══════════════════════════════════════════════════
   RESPONSIVE – TABLET
   ══════════════════════════════════════════════════ */
@media (max-width: 900px) {

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-grid,
  .about-grid,
  .product-inner { grid-template-columns: 1fr; }

  .hero-visual { margin-top: 40px; }

  .hero-logo-large { width: 120px; }

  .about-visual { margin-top: 64px; margin-bottom: 48px; }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .product-inner.reverse { direction: ltr; }

  .product-visual { min-height: 260px; order: -1; }

  .contact-details { gap: 24px; }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE – MOBILE
   ══════════════════════════════════════════════════ */
@media (max-width: 600px) {

  section { padding: 72px 0; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .about-stats { grid-template-columns: 1fr 1fr; }

  .services-grid { grid-template-columns: 1fr; }

  .service-card { padding: 32px 24px; }

  .product-content { padding: 36px 24px; }

  .contact-actions { flex-direction: column; align-items: center; }
  .contact-actions .btn { width: 100%; max-width: 320px; }

  .contact-details { flex-direction: column; gap: 16px; align-items: flex-start; }
  .contact-details .contact-detail-item { justify-content: flex-start; }

  .footer-inner { flex-direction: column; text-align: center; }
}
