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

:root {
  /* Premium Palette - Dark Mode */
  --navy: #051930;
  --navy-light: #0d3257;
  --bg-dark: #020b16;
  
  --blue: #0066cc;
  --blue-hover: #0052a3;
  --blue-soft: rgba(0, 102, 204, 0.15);
  
  --cyan: #00d4ff;
  --cyan-glow: rgba(0, 212, 255, 0.3);
  
  --white: #ffffff;
  --text: #e6edf5;
  --text-muted: #94a3b8;
  
  /* Glassmorphism */
  --glass-bg: rgba(13, 50, 87, 0.45);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  
  --border: rgba(255, 255, 255, 0.1);
  --radius: 16px;
  
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  --shadow-soft: 0 10px 20px rgba(0, 0, 0, 0.2);
  
  --gradient-text: linear-gradient(135deg, #fff 0%, #00d4ff 100%);
  --bg-gradient: radial-gradient(circle at top right, #0d3257 0%, #051930 40%, #020b16 100%);
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  background-image: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

ul {
  list-style: none;
}

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

/* Layout */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Typography Utilities */
.eyebrow {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  color: var(--cyan);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lead {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 2rem;
}

.text-center {
  text-align: center;
}

.muted {
  color: var(--text-muted);
}

.tagline {
  font-size: 0.9rem;
  color: var(--cyan);
  margin-top: 1rem;
  font-weight: 500;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, #0052a3 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.4);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.6);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Header & Nav */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(5, 25, 48, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 24px;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  color: var(--white);
}

.brand img {
  height: 32px;
  width: auto;
}

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

.nav-links a {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.95rem;
  position: relative;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--white);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--cyan);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 80px 0;
}

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

.hero-panel h1 {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
}

.hero-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.hero-visual img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.hero-visual:hover img {
  transform: scale(1.02);
}

/* Cards & Grid */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(255, 255, 255, 0.2);
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  color: var(--white);
}

.pill {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(0, 212, 255, 0.1);
  color: var(--cyan);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

/* Pack Cards (Specially fixed for contrast) */
.pack-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.pack-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pack-card h3 {
  color: var(--cyan);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.pack-card ul {
  margin-bottom: 30px;
  flex-grow: 1;
}

.pack-card li {
  margin-bottom: 12px;
  color: var(--text);
  padding-left: 24px;
  position: relative;
}

.pack-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: bold;
}

/* Steps & Lists */
.steps {
  display: grid;
  gap: 24px;
  margin-top: 30px;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 20px;
  border-left: 2px solid var(--border);
}

.step strong {
  color: var(--white);
  font-size: 1.1rem;
}

.list li {
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
}

.list li::before {
  content: '•';
  color: var(--cyan);
  position: absolute;
  left: 6px;
  font-size: 1.2rem;
  line-height: 1;
}

/* Forms */
.contact {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

#contact-form {
  background: var(--glass-bg);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--glass-border);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: span 2;
}

label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

input, select, textarea {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.2s ease;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
  background: rgba(0, 0, 0, 0.5);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.checkbox input {
  margin-top: 4px;
}

.status {
  margin-top: 16px;
  padding: 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  display: block;
}

.status.hidden {
  display: none;
}

.status.success {
  background: rgba(46, 213, 115, 0.2);
  color: #2ed573;
  border: 1px solid rgba(46, 213, 115, 0.3);
}

.status.error {
  background: rgba(255, 71, 87, 0.2);
  color: #ff4757;
  border: 1px solid rgba(255, 71, 87, 0.3);
}

.contact-details h3 {
  margin-bottom: 20px;
}

/* FAQ Styles */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 24px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.faq-item h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin: 0 0 10px 0;
}

/* Testimonials */
.testimonials-section {
  text-align: center;
}

.testimonials-slider {
  position: relative;
  max-width: 1000px;
  margin: 40px auto 0;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
  justify-content: center;
}

.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 30px;
  border-radius: 20px;
  width: 300px;
  text-align: left;
  display: none;
}

.testimonial-card.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.testimonial-stars {
  color: #ffd700;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 20px;
  color: var(--text);
}

.testimonial-author {
  font-weight: 700;
  color: var(--cyan);
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonials-prev, .testimonials-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background 0.2s;
}

.testimonials-prev:hover, .testimonials-next:hover {
  background: var(--blue);
}

.testimonials-prev { left: 16px; }
.testimonials-next { right: 16px; }

@media (min-width: 1024px) {
  .testimonials-prev { left: -60px; }
  .testimonials-next { right: -60px; }
  .testimonials-slider { overflow: visible; }
}

/* Project Galleries */
.project-gallery {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  /* aspect-ratio removed for adaptive height */
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-top: 24px;
  background: var(--navy); /* Fallback bg */
}

.project-gallery-viewport {
  position: relative;
  width: 100%;
  height: 100%;
}

.project-gallery-viewport img {
  width: 100%;
  height: auto; /* Adapts to image */
  display: none;
  object-fit: contain;
}

.project-gallery-viewport img.active {
  display: block;
}

.project-gallery-prev, .project-gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background 0.2s;
}

.project-gallery-prev:hover, .project-gallery-next:hover {
  background: var(--blue);
}

.project-gallery-prev { left: 16px; }
.project-gallery-next { right: 16px; }

/* Brand Logos */
.brand-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0.7;
}

.brand-logo img {
  height: 40px;
  width: auto;
  /* filter: grayscale(1) brightness(200%); Removed to show color */
  transition: all 0.3s ease;
}

.brand-logo:hover img {
  transform: scale(1.1);
  opacity: 1;
}

/* Map */
.zone-map-wrapper {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.zone-map-iframe-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  filter: invert(90%) hue-rotate(180deg) brightness(90%) contrast(85%); /* Dark Mode Map */
}

/* Footer */
footer {
  margin-top: 60px;
  padding: 60px 0 30px;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid var(--border);
}

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

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links strong {
  color: var(--white);
  margin-bottom: 8px;
  font-family: 'Outfit', sans-serif;
}

.footer-links a:hover {
  color: var(--cyan);
}

/* Media Queries */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-panel p, .hero-panel .eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-group {
    justify-content: center;
  }
  
  .contact {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  .nav-toggle {
    display: block;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border);
    position: relative;
    z-index: 102;
  }
  
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    margin: 0 auto;
    position: relative;
    transition: all 0.3s;
  }
  
  .nav-toggle span::before, .nav-toggle span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: white;
    left: 0;
    transition: all 0.3s;
  }
  
  .nav-toggle span::before { top: -8px; }
  .nav-toggle span::after { top: 8px; }
  
  .nav-links {
    position: absolute;
    top: 80px;
    left: 20px;
    right: 20px;
    background: rgba(5, 25, 48, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    gap: 16px;
    box-shadow: var(--shadow);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  
  .nav-links a {
    font-size: 1.1rem;
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
  }
  
  .nav-links a.active::after {
    display: none;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group.full {
    grid-column: auto;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
