/* ============================================
   Elite Electronics Solutions — Main Styles
   Brand: dark teal → forest green → lime
   ============================================ */

:root {
  --teal-dark: #0a1f1c;
  --teal-mid: #0d3d35;
  --green-deep: #1a5c3a;
  --green-bright: #2ecc71;
  --green-lime: #7cfc00;
  --green-glow: rgba(124, 252, 0, 0.4);
  --text-primary: #e8f5e9;
  --text-secondary: #a8c5b0;
  --text-muted: #6b8f78;
  --glass-bg: rgba(10, 31, 28, 0.65);
  --glass-border: rgba(124, 252, 0, 0.15);
  --glass-highlight: rgba(255, 255, 255, 0.05);
  --section-padding: clamp(4rem, 10vw, 8rem);
  --nav-height: 72px;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--teal-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

body.touch-device {
  cursor: auto;
}

body.touch-device .cursor-glow,
body.touch-device .cursor-dot {
  display: none;
}

/* Custom Cursor */
.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0.5;
  will-change: transform;
}

.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--green-lime);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  top: 0;
  left: 0;
  box-shadow: 0 0 8px var(--green-lime);
  will-change: transform;
}

a, button, input, select, textarea, label {
  cursor: none;
}

.touch-device a,
.touch-device button,
.touch-device input,
.touch-device select,
.touch-device textarea,
.touch-device label {
  cursor: pointer;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(10, 31, 28, 0.95);
  border-bottom: 1px solid var(--glass-border);
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 31, 28, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-logo span {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--green-lime);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--green-lime);
  background: rgba(124, 252, 0, 0.08);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-lime);
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: var(--transition);
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-deep), var(--green-bright));
  color: #fff;
  border-color: var(--green-bright);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--green-bright), var(--green-lime));
  color: var(--teal-dark);
  box-shadow: 0 0 30px var(--green-glow);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--green-lime);
  border-color: var(--green-lime);
}

.btn-outline:hover {
  background: rgba(124, 252, 0, 0.1);
  box-shadow: 0 0 20px var(--green-glow);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

/* Sections */
.section {
  position: relative;
  min-height: 100vh;
  padding: var(--section-padding) 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green-lime);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--text-primary), var(--green-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  color: var(--text-secondary);
  margin-top: 0.75rem;
  font-size: 1.05rem;
}

/* Glass Card — solid background instead of blur for scroll performance */
.glass-card {
  background: rgba(10, 31, 28, 0.88);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  border-color: rgba(124, 252, 0, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 var(--glass-highlight);
}

/* 3D Scene */
.scene-3d {
  perspective: 1200px;
  perspective-origin: center center;
}

.layer-3d {
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
}

/* Hero */
.hero-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, var(--teal-mid) 0%, var(--teal-dark) 70%);
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding-top: var(--nav-height);
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  background: rgba(124, 252, 0, 0.08);
  border: 1px solid var(--glass-border);
  font-size: 0.85rem;
  color: var(--green-lime);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.title-line {
  display: block;
}

.title-line.accent {
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(135deg, var(--green-bright), var(--green-lime));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--green-lime);
  border-bottom: 2px solid var(--green-lime);
  transform: rotate(45deg);
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* About */
.about-section {
  background: linear-gradient(180deg, var(--teal-dark) 0%, #0c2822 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

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

.about-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--green-bright);
}

.about-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Services */
.services-section {
  background: var(--teal-dark);
}

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

.service-card {
  background: rgba(10, 31, 28, 0.88);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
}

.service-card:hover {
  border-color: rgba(124, 252, 0, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(124, 252, 0, 0.08);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--green-lime);
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card li {
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 0.3rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.service-card li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--green-bright);
}

/* Pricing */
.pricing-section {
  background: linear-gradient(180deg, #0c2822 0%, var(--teal-dark) 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.pricing-card {
  text-align: center;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--green-lime);
  box-shadow: 0 0 40px rgba(124, 252, 0, 0.12);
  transform: scale(1.03);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-lime);
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-tier {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-bright);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.pricing-price .currency {
  font-size: 1.5rem;
  vertical-align: super;
}

.pricing-price .period {
  font-size: 1.2rem;
  color: var(--text-muted);
}

.pricing-note {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 1.5rem;
}

.pricing-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding-left: 1.5rem;
  position: relative;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-lime);
  font-weight: 700;
}

.pricing-extras {
  margin-top: 1rem;
}

.pricing-extras h3 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--green-bright);
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.extra-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.extra-item span {
  color: var(--text-secondary);
}

.extra-item strong {
  color: var(--green-lime);
  white-space: nowrap;
  margin-left: 0.5rem;
}

/* Partners */
.partners-section {
  background: var(--teal-dark);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

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

.partner-logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-lime);
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.partner-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.partner-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.partner-logo-img {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.partner-logo-img img {
  max-height: 72px;
  max-width: 100%;
  object-fit: contain;
}

.partner-type-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-lime);
  background: rgba(124, 252, 0, 0.08);
  border: 1px solid var(--glass-border);
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

/* Credentials */
.credentials-section {
  background: linear-gradient(180deg, var(--teal-dark) 0%, #0c2822 100%);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.credential-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
}

.credential-image {
  width: 100%;
  max-width: 200px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
}

.credential-image img {
  max-width: 100%;
  max-height: 140px;
  object-fit: contain;
}

.credential-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-bright);
  margin-bottom: 0.5rem;
}

.credential-info h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: var(--text-primary);
}

.credential-issuer {
  color: var(--green-lime) !important;
  font-weight: 600;
  font-size: 0.85rem !important;
  margin-bottom: 0.5rem !important;
}

.credential-info p {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.credential-valid {
  color: var(--text-muted) !important;
  font-size: 0.8rem !important;
  margin-top: 0.5rem !important;
  font-style: italic;
}

/* Booking */
.booking-section {
  background: linear-gradient(180deg, var(--teal-dark) 0%, #0c2822 100%);
}

.booking-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: start;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-lime);
  box-shadow: 0 0 0 3px rgba(124, 252, 0, 0.1);
}

.form-group select option {
  background: var(--teal-dark);
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.5rem;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 400;
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.checkbox-group label:hover {
  background: rgba(124, 252, 0, 0.05);
}

.checkbox-group input[type="checkbox"] {
  accent-color: var(--green-lime);
  width: 16px;
  height: 16px;
}

.booking-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card h3 {
  color: var(--green-bright);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.info-card ol {
  padding-left: 1.25rem;
  color: var(--text-secondary);
}

.info-card ol li {
  padding: 0.35rem 0;
}

.info-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.booking-success {
  text-align: center;
  padding: 3rem;
  margin-top: 2rem;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-lime);
  color: var(--teal-dark);
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.form-error {
  background: rgba(255, 80, 80, 0.1);
  border: 1px solid rgba(255, 80, 80, 0.4);
  color: #ff8a8a;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.booking-success h3 {
  color: var(--green-lime);
  margin-bottom: 0.75rem;
}

.success-ref {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.success-ref span {
  color: var(--green-bright);
  font-family: 'Orbitron', monospace;
}

/* Contact */
.contact-section {
  background: var(--teal-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

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

.contact-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.contact-card h3 {
  color: var(--green-bright);
  margin-bottom: 0.75rem;
}

.contact-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.contact-note {
  font-size: 0.8rem !important;
  color: var(--text-muted) !important;
  margin-top: 0.5rem;
  font-style: italic;
}

.map-placeholder {
  text-align: center;
  padding: 3rem;
}

.map-content .map-pin {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.map-content p {
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.map-content .btn {
  margin-top: 1.5rem;
}

/* Footer */
.footer {
  background: #061412;
  border-top: 1px solid var(--glass-border);
  padding: 3rem 1.5rem 1.5rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 350px;
}

.footer-links h4 {
  color: var(--green-bright);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-links a,
.footer-links span {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.25rem 0;
  transition: var(--transition);
}

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

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* AI Assistant */
.ai-toggle {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-deep), var(--green-bright));
  border: 2px solid var(--green-lime);
  color: #fff;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 30px var(--green-glow);
  transition: var(--transition);
}

.ai-toggle svg {
  width: 28px;
  height: 28px;
}

.ai-toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5), 0 0 40px var(--green-glow);
}

.ai-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--green-lime);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.3); opacity: 0; }
}

.ai-panel {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 400px;
  max-width: calc(100vw - 2rem);
  height: 520px;
  max-height: calc(100vh - 4rem);
  background: rgba(10, 31, 28, 0.98);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.3s ease;
}

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

.ai-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--glass-border);
}

.ai-header-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ai-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-deep), var(--green-lime));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--teal-dark);
}

.ai-header-info strong {
  display: block;
  font-size: 0.95rem;
}

.ai-header-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.ai-close {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  line-height: 1;
  padding: 0.25rem;
  transition: var(--transition);
}

.ai-close:hover {
  color: var(--green-lime);
}

.ai-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ai-msg {
  max-width: 85%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  line-height: 1.5;
  animation: fadeIn 0.3s ease;
}

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

.ai-msg.bot {
  background: rgba(124, 252, 0, 0.08);
  border: 1px solid var(--glass-border);
  align-self: flex-start;
  color: var(--text-secondary);
}

.ai-msg.user {
  background: linear-gradient(135deg, var(--green-deep), var(--teal-mid));
  align-self: flex-end;
  color: var(--text-primary);
}

.ai-msg.typing {
  display: flex;
  gap: 4px;
  padding: 1rem;
}

.ai-msg.typing span {
  width: 8px;
  height: 8px;
  background: var(--green-lime);
  border-radius: 50%;
  animation: typing 1.4s infinite;
}

.ai-msg.typing span:nth-child(2) { animation-delay: 0.2s; }
.ai-msg.typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}

.ai-input-form {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--glass-border);
}

.ai-input-form input {
  flex: 1;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.9rem;
}

.ai-input-form input:focus {
  outline: none;
  border-color: var(--green-lime);
}

.ai-input-form button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-lime);
  border: none;
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.ai-input-form button svg {
  width: 18px;
  height: 18px;
}

.ai-input-form button:hover {
  background: var(--green-bright);
  transform: scale(1.05);
}

.ai-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.5rem 1rem 0.75rem;
}

.ai-suggestions button {
  padding: 0.35rem 0.75rem;
  background: rgba(124, 252, 0, 0.08);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: var(--text-secondary);
  font-size: 0.75rem;
  transition: var(--transition);
}

.ai-suggestions button:hover {
  background: rgba(124, 252, 0, 0.15);
  color: var(--green-lime);
}

.ai-panel[hidden],
.ai-toggle[hidden] {
  display: none !important;
}

/* Scroll reveal — CSS-only animation, unobserve after visible */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero trust strip & stats */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  margin: 1.5rem 0 0.5rem;
}

.hero-stat {
  text-align: center;
  min-width: 100px;
}

.hero-stat strong {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.35rem;
  color: var(--green-lime);
}

.hero-stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.trust-strip {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: rgba(10, 31, 28, 0.75);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  max-width: 920px;
}

.trust-strip li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.trust-strip li::before {
  content: "✓ ";
  color: var(--green-lime);
  font-weight: 700;
}

/* Projects */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.project-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.project-card.featured {
  border-color: rgba(124, 252, 0, 0.35);
  box-shadow: 0 0 24px rgba(124, 252, 0, 0.08);
}

.project-media {
  position: relative;
  min-height: 160px;
  background: linear-gradient(135deg, var(--teal-mid), var(--green-deep));
}

.project-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.project-placeholder {
  height: 180px;
  display: grid;
  place-items: center;
  font-size: 3rem;
}

.project-type {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(10, 31, 28, 0.85);
  border: 1px solid var(--glass-border);
  color: var(--green-lime);
}

.project-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.project-location {
  font-size: 0.8rem;
  color: var(--green-bright);
  margin-bottom: 0.35rem;
}

.project-summary {
  color: var(--text-secondary);
  margin: 0.5rem 0 1rem;
  font-size: 0.95rem;
}

.project-details summary {
  cursor: pointer;
  color: var(--green-lime);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.project-story p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.project-tags span {
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(124, 252, 0, 0.08);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.testimonial-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-card p {
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.7;
  flex: 1;
}

.testimonial-stars {
  color: var(--green-lime);
  letter-spacing: 0.1em;
}

.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testimonial-card footer strong {
  color: var(--text-primary);
}

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

.reviews-cta {
  text-align: center;
  margin-top: 2rem;
}

/* FAQ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--green-lime);
  font-size: 1.25rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-secondary);
  line-height: 1.7;
  border-top: 1px solid var(--glass-border);
  padding-top: 1rem;
  margin: 0 1.25rem 1.25rem;
}

/* Sticky contact bar (mobile-first) */
.sticky-contact {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9000;
  display: flex;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  background: rgba(10, 31, 28, 0.96);
  border-top: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
}

.sticky-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  transition: var(--transition);
}

.sticky-call:hover,
.sticky-whatsapp:hover {
  border-color: var(--green-lime);
  color: var(--green-lime);
}

.sticky-book {
  flex: 1.2;
  border: none;
}

@media (min-width: 769px) {
  .sticky-contact {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }

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

  .pricing-card.featured {
    transform: none;
  }

  .trust-strip {
    border-radius: var(--radius);
    justify-content: flex-start;
  }

  .trust-strip li {
    white-space: normal;
  }
}

@media (max-width: 768px) {
  body {
    cursor: auto;
    padding-bottom: 72px;
  }

  .cursor-glow,
  .cursor-dot {
    display: none;
  }

  a, button, input, select, textarea, label {
    cursor: pointer;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(10, 31, 28, 0.98);
    flex-direction: column;
    padding: 1rem;
    gap: 0.25rem;
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    border-bottom: 1px solid var(--glass-border);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .ai-panel {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius) var(--radius) 0 0;
    height: 70vh;
  }

  .ai-toggle {
    bottom: 5.5rem;
    right: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero-stats {
    gap: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .layer-3d {
    transform: none !important;
  }

  #heroCanvas {
    display: none;
  }

  .cursor-glow,
  .cursor-dot {
    display: none;
  }
}
