/**
 * AI GLOBAL NETWORKS - ENHANCED STYLESHEET
 * Updated with AGN branding and booking button glow
 * Color Scheme: Black, Orange, White
 */

/* ==================== CSS VARIABLES ==================== */
:root {
  /* Colors */
  --black: #000000;
  --black-light: #0f0f0f;
  --black-lighter: #1a1a1a;

  --orange: #ff6600;
  --orange-light: #ff8533;
  --orange-dark: #cc5200;
  --orange-glow: rgba(255, 102, 0, 0.3);

  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e0e0e0;
  --gray-300: #cccccc;
  --gray-400: #999999;
  --gray-500: #666666;
  --gray-600: #4d4d4d;
  --gray-700: #333333;
  --gray-800: #262626;

  /* Typography */
  --font-display: "Syne", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;

  /* Effects */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 16px 32px rgba(0, 0, 0, 0.25);

  --glow-orange: 0 0 30px var(--orange-glow);
  --glow-orange-strong: 0 0 50px rgba(255, 102, 0, 0.5);
  --glow-orange-ultra: 0 0 40px rgba(255, 102, 0, 0.7),
    0 0 80px rgba(255, 102, 0, 0.5);
}

/* ==================== RESET ==================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-display);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* ==================== UTILITIES ==================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-md);
  }
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  font-size: 0.65rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--glow-orange);
}

.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: var(--glow-orange-strong);
}

/* BOOKING BUTTON WITH GLOW - Matches button.jpg */
.btn-booking,
.btn-booking-glow {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  box-shadow: 0 0 30px rgba(255, 102, 0, 0.5), 0 0 60px rgba(255, 102, 0, 0.3),
    0 4px 15px rgba(0, 0, 0, 0.4);
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn-booking-glow {
  padding: 1.125rem 2.5rem;
  font-size: 1rem;
}

.btn-booking::before,
.btn-booking-glow::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  border-radius: 50px;
  z-index: -1;
  filter: blur(10px);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-booking:hover,
.btn-booking-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(255, 102, 0, 0.7), 0 0 80px rgba(255, 102, 0, 0.5),
    0 6px 20px rgba(0, 0, 0, 0.5);
}

.btn-booking:hover::before,
.btn-booking-glow:hover::before {
  opacity: 1;
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gray-700);
}

.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-hero-primary {
  background: var(--orange);
  color: var(--white);
  padding: 1.125rem 2.5rem;
  font-size: 1rem;
  box-shadow: var(--glow-orange);
}

.btn-hero-primary:hover {
  background: var(--orange-light);
  transform: translateY(-3px);
  box-shadow: var(--glow-orange-strong);
}

.btn-hero-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 1.125rem 2.5rem;
  font-size: 1rem;
}

.btn-hero-outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn-cta-primary {
  background: var(--white);
  color: var(--black);
  padding: 1.125rem 2.5rem;
  font-size: 1rem;
}

.btn-cta-primary:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--glow-orange-strong);
}

.btn-cta-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 1.125rem 2.5rem;
  font-size: 1rem;
}

.btn-cta-outline:hover {
  background: var(--white);
  color: var(--black);
}

/* ==================== HEADER & NAVIGATION ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-800);
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: var(--shadow-lg);
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.5px;
  transition: transform var(--transition);
  z-index: 1001;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-icon {
  position: relative;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-dot {
  width: 12px;
  height: 12px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: var(--glow-orange);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.logo-ring {
  position: absolute;
  inset: 0;
  border: 2px solid var(--orange);
  border-radius: 50%;
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.logo-separator {
  color: var(--orange);
  margin: 0 0.25rem;
}


/* Navigation */
.nav-list {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-link {
  position: relative;
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--gray-300);
  transition: color var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.1rem;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-actions-mobile {
  display: none;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ==================== HERO SECTION ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4xl) 0 var(--space-3xl);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.grid-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 102, 0, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 102, 0, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.gradient-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
  animation: float 15s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(50px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-30px, 50px) scale(0.9);
  }
}

.sphere-1 {
  width: 600px;
  height: 600px;
  background: var(--orange);
  top: -10%;
  left: -5%;
}

.sphere-2 {
  width: 500px;
  height: 500px;
  background: var(--orange-light);
  bottom: -10%;
  right: -5%;
  animation-delay: -5s;
}

.sphere-3 {
  width: 400px;
  height: 400px;
  background: var(--orange-dark);
  top: 50%;
  left: 50%;
  animation-delay: -10s;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1.5rem;
  background: rgba(255, 102, 0, 0.1);
  border: 1px solid rgba(255, 102, 0, 0.3);
  border-radius: 50px;
  margin-bottom: var(--space-lg);
  animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.badge-text {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1.5px;
}

.hero-title {
  font-size: clamp(1.3rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  letter-spacing: -2px;
  animation: slideUp 0.8s ease-out 0.2s both;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.title-highlight {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--gray-300);
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  line-height: 1.7;
  animation: slideUp 0.8s ease-out 0.4s both;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: var(--space-3xl);
  animation: slideUp 0.8s ease-out 0.6s both;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl) 0;
  animation: slideUp 0.8s ease-out 0.8s both;
}

.stat-item {
  text-align: center;
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--gray-800);
}

/* .scroll-indicator {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeIn 1s ease-out 1s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.scroll-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(20px);
    opacity: 0.3;
  }
}

.scroll-text {
  font-size: 0.75rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 2px;
  writing-mode: vertical-rl;
  font-family: var(--font-mono);
}

/* ==================== SECTIONS ==================== */
.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-tag {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 102, 0, 0.1);
  border: 1px solid rgba(255, 102, 0, 0.2);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 2px;
  margin-bottom: var(--space-md);
}

.section-title {
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto;
}

/* ==================== SERVICES SECTION (AGN SPECIFIC) ==================== */
.services-section {
  padding: var(--space-4xl) 0;
  background: var(--black-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
}

.service-card {
  position: relative;
  padding: var(--space-xl);
  background: var(--black-lighter);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius-xl);
  transition: all var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--orange);
  box-shadow: var(--glow-orange);
}

.service-card:hover::before {
  opacity: 1;
}

.service-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 102, 0, 0.1);
  font-family: var(--font-mono);
}

.service-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 102, 0, 0.1);
  border-radius: var(--radius-md);
  color: var(--orange);
  margin-bottom: var(--space-md);
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.service-description {
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.service-features {
  list-style: none;
  padding: 0;
  margin-top: var(--space-md);
}

.service-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--gray-300);
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* ==================== WHY US SECTION (AGN SPECIFIC) ==================== */
.why-us {
  padding: var(--space-4xl) 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.why-card {
  padding: var(--space-xl);
  background: var(--black-light);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all var(--transition);
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: var(--orange);
  box-shadow: var(--glow-orange);
}

.why-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.why-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--white);
}

.why-card p {
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==================== MISSION SECTION (AGN SPECIFIC) ==================== */
.mission {
  padding: var(--space-4xl) 0;
  background: var(--black-light);
}

.mission-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--space-xl);
}

.mission-card {
  padding: var(--space-2xl);
  background: var(--black-lighter);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all var(--transition);
}

.mission-card:hover {
  transform: translateY(-8px);
  border-color: var(--orange);
  box-shadow: var(--glow-orange);
}

.mission-icon {
  font-size: 4rem;
  margin-bottom: var(--space-md);
}

.mission-card h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: var(--space-md);
  color: var(--orange);
}

.mission-card p {
  color: var(--gray-300);
  font-size: 1.125rem;
  line-height: 1.8;
}

/* ==================== CTA OPTIONS (AGN SPECIFIC) ==================== */
.cta-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cta-option {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: rgba(255, 102, 0, 0.05);
  border: 1px solid rgba(255, 102, 0, 0.2);
  border-radius: var(--radius-md);
  color: var(--gray-300);
  font-size: 0.95rem;
  transition: all var(--transition);
}

.cta-option:hover {
  background: rgba(255, 102, 0, 0.1);
  border-color: var(--orange);
  color: var(--white);
  transform: translateX(5px);
}

.cta-option svg {
  color: var(--orange);
  flex-shrink: 0;
}

/* ==================== FOOTER LOCATION (AGN SPECIFIC) ==================== */
.footer-location {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--orange);
  font-weight: 600;
  margin-top: var(--space-md);
}

.footer-location svg {
  flex-shrink: 0;
}

.footer-credits {
  margin-top: var(--space-sm);
  font-size: 0.85rem;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials {
  padding: var(--space-4xl) 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
}

.testimonial-card {
  padding: var(--space-xl);
  background: var(--black-light);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius-xl);
  transition: all var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: var(--orange);
  box-shadow: var(--glow-orange);
}

.testimonial-stars {
  color: var(--orange);
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--gray-300);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: var(--space-lg);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
}

.author-info h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* ==================== CTA SECTION ==================== */
.cta {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), transparent);
  border-top: 1px solid var(--gray-800);
  border-bottom: 1px solid var(--gray-800);
}

.cta-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: var(--space-md);
  letter-spacing: -1px;
}

.cta-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--gray-400);
  margin-bottom: var(--space-xl);
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

/* ==================== FOOTER ==================== */
.footer {
  padding: var(--space-4xl) 0 var(--space-xl);
  background: var(--black-light);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-xl);
}

.footer-description {
  color: var(--gray-500);
  line-height: 1.7;
  margin: var(--space-md) 0 var(--space-lg);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.footer-column h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-md);
  color: var(--orange);
}

.footer-column ul {
  display: grid;
  gap: 0.75rem;
}

.footer-column a {
  color: var(--gray-500);
  transition: color var(--transition);
  font-size: 0.95rem;
}

.footer-column a:hover {
  color: var(--orange);
  padding-left: 0.5rem;
}

.footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid var(--gray-800);
  text-align: center;
}

.footer-bottom p {
  color: var(--gray-600);
  font-size: 0.9rem;
}

/* ==================== FLOATING CHAT ==================== */
.floating-chat {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  width: 60px;
  height: 60px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow-orange);
  transition: all var(--transition);
  z-index: 900;
  animation: float 3s ease-in-out infinite;
}

.floating-chat:hover {
  transform: scale(1.1);
  box-shadow: var(--glow-orange-strong);
}

.chat-pulse {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

/* ==================== RESPONSIVE DESIGN ==================== */

@media (max-width: 1024px) {
  .mission-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Hide desktop navigation */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: var(--black-lighter);
    border-left: 1px solid var(--gray-800);
    padding: 5rem 2rem 2rem;
    overflow-y: auto;
    transition: right var(--transition);
    z-index: 999;
  }

  .nav.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .nav-list li {
    width: 100%;
    border-bottom: 1px solid var(--gray-800);
  }

  .nav-list li:last-child {
    border-bottom: none;
  }

  .nav-link {
    display: block;
    padding: 1.25rem 0;
    font-size: 1.125rem;
    color: var(--white);
  }

  .nav-link::after {
    display: none;
  }

  .nav-actions-mobile {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--gray-800);
  }

  .nav-actions-mobile .btn {
    width: 100%;
    justify-content: center;
  }

  .header-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-overlay.active {
    display: block;
  }

  /* Adjust sections */
  .hero {
    min-height: 90vh;
    padding: var(--space-3xl) 0 var(--space-xl);
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .stat-divider {
    display: none;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 320px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 320px;
  }

  .cta-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  :root {
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 5rem;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .logo-text {
    font-size: 1.25rem;
  }

  .mission-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .floating-chat {
    width: 55px;
    height: 55px;
    bottom: var(--space-lg);
    right: var(--space-lg);
  }
}
