/* SQUADRON Stylesheet - Premium Dark Blue Tech Theme */

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

/* CSS Variables */
:root {
  --bg-primary: #050811;
  --bg-secondary: #0a0f1d;
  --bg-tertiary: #121b30;
  --bg-card: rgba(10, 15, 29, 0.65);
  --accent: #00ff88;
  --accent-rgb: 0, 255, 136;
  --accent-secondary: #00e5ff;
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --text-highlight: #ffffff;
  --border-color: rgba(255, 255, 255, 0.05);
  --border-hover: rgba(0, 255, 136, 0.35);
  --card-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.75);
  --glow-shadow: 0 0 25px rgba(0, 255, 136, 0.18);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s ease;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 4px;
  border: 1px solid var(--border-color);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* Typography & Headers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-highlight);
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

/* Section Common Styles */
section {
  padding: 100px 20px;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

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

.section-subtitle {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 10px;
  font-weight: 600;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 2px;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 8, 17, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: padding var(--transition-normal), background var(--transition-normal);
}

header.scrolled {
  background: rgba(5, 8, 17, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: padding var(--transition-normal);
}

header.scrolled .nav-container {
  padding: 12px 20px;
}

/* Typographic Logo with Glowing Accents */
.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-highlight);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.logo-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  display: inline-block;
}

/* Desktop Menu Links */
.nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 8px 0;
  color: var(--text-muted);
}

.nav-link:hover, .nav-link.active {
  color: var(--accent);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  transition: width var(--transition-normal);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Hamburg Menu Icon */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  background: transparent;
  border: none;
  z-index: 1001;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--text-highlight);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  transition: all var(--transition-normal);
  cursor: pointer;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  color: #050811;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4), var(--glow-shadow);
}

.btn-secondary {
  background: transparent;
  color: var(--text-highlight);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  border-color: var(--accent);
  background-color: rgba(0, 255, 136, 0.05);
  box-shadow: var(--glow-shadow);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-primary);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

/* Hero Tech Background image & Overlay */
.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  filter: grayscale(40%) contrast(110%);
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(5, 8, 17, 0.4) 0%, var(--bg-primary) 85%);
}

/* Interactive SVG Circuit grid overlay */
.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: 
    linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center center;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.hero-brand {
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 50%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-tagline {
  font-size: 1.35rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-weight: 400;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

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

/* About Us Section */
.about {
  background-color: var(--bg-secondary);
}

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

.about-tag {
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
  display: block;
  margin-bottom: 12px;
}

.about-title {
  font-size: 2.25rem;
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-text {
  font-size: 1.05rem;
  margin-bottom: 30px;
}

/* Glassmorphic Core Domains Card Grid */
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.specialty-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all var(--transition-normal);
}

.specialty-item:hover {
  border-color: var(--accent);
  background: rgba(18, 27, 48, 0.8);
  transform: translateY(-3px);
  box-shadow: var(--card-shadow), var(--glow-shadow);
}

.specialty-icon {
  color: var(--accent);
  font-size: 1.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.specialty-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-highlight);
}

/* Profile Card Styling */
.profile-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(18, 27, 48, 0.4);
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: 16px;
  margin-top: 24px;
  margin-bottom: 24px;
  transition: all var(--transition-normal);
}

.profile-card:hover {
  border-color: var(--border-hover);
  background: rgba(18, 27, 48, 0.6);
  box-shadow: var(--card-shadow), var(--glow-shadow);
}

.profile-image-box {
  width: 140px;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--accent);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.2);
  flex-shrink: 0;
}

.profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-details {
  display: flex;
  flex-direction: column;
}

.profile-badge {
  font-size: 0.7rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 4px;
}

.profile-name {
  font-size: 1.4rem;
  color: var(--text-highlight);
  margin-bottom: 2px;
  font-weight: 800;
  font-family: var(--font-heading);
}

.profile-title {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.profile-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 12px;
}

.meta-item {
  display: flex;
  flex-direction: column;
}

.meta-number {
  font-size: 1.25rem;
  color: var(--accent);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.meta-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.profile-quote {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Responsive styles for Profile Card */
@media (max-width: 576px) {
  .profile-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
  }
  
  .profile-image-box {
    width: 120px;
    height: 150px;
  }
}

/* Services Section */
.services {
  background-color: var(--bg-primary);
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px 30px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: var(--card-shadow), var(--glow-shadow);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(0, 255, 136, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 28px;
  transition: transform var(--transition-normal), background var(--transition-normal);
}

.service-card:hover .service-icon-box {
  transform: scale(1.1) rotate(5deg);
  background: rgba(0, 255, 136, 0.15);
  color: var(--text-highlight);
  box-shadow: var(--glow-shadow);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Products/Projects Gallery Section */
.projects {
  background-color: var(--bg-secondary);
}

/* Filter Tab controls for Grid */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 8px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--transition-normal);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--accent);
  color: var(--bg-primary);
  border-color: var(--accent);
  box-shadow: var(--glow-shadow);
}

/* Grid Layout */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 30px;
  min-height: 200px;
  transition: opacity var(--transition-normal);
}

/* Gallery Project Card */
.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: var(--card-shadow), var(--glow-shadow);
}

.project-image-box {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
  cursor: pointer;
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.project-card:hover .project-img {
  transform: scale(1.06);
}

.project-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 10, 21, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
  backdrop-filter: blur(3px);
}

.project-image-box:hover .project-image-overlay {
  opacity: 1;
}

.zoom-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transform: translateY(15px);
  transition: transform var(--transition-normal);
}

.project-image-box:hover .zoom-icon {
  transform: translateY(0);
}

.project-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.project-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 700;
}

.project-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.project-desc {
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  font-size: 0.75rem;
  background: var(--bg-tertiary);
  color: var(--text-main);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  font-weight: 500;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 8, 17, 0.92);
  z-index: 10000;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition-normal) ease;
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  max-width: 900px;
  width: 100%;
  overflow: hidden;
  box-shadow: var(--card-shadow), 0 0 60px rgba(0, 0, 0, 0.8);
  position: relative;
  transform: scale(0.9);
  transition: transform var(--transition-normal) cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: row;
}

.lightbox-modal.active .lightbox-content {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  z-index: 10;
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--accent);
  color: var(--bg-primary);
  border-color: var(--accent);
}

.lightbox-image-box {
  flex: 1.2;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 500px;
}

.lightbox-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox-details {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lightbox-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}

.lightbox-title {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.lightbox-desc {
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.lightbox-tech-title {
  font-size: 0.875rem;
  text-transform: uppercase;
  color: var(--text-highlight);
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.lightbox-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* Why Choose Us Section */
.why-us {
  background-color: var(--bg-primary);
}

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

.why-us-info h2 {
  font-size: 2.25rem;
  margin-bottom: 20px;
}

.why-us-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.point-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 20px 24px;
  border-radius: 12px;
  transition: all var(--transition-normal);
}

.point-item:hover {
  border-color: var(--accent);
  background: rgba(18, 27, 48, 0.8);
  transform: translateX(5px);
  box-shadow: var(--glow-shadow);
}

.point-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.2);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.15);
}

.point-content h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

/* Contact Section */
.contact {
  background-color: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 40px 0;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(0, 255, 136, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.15);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-card h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

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

.contact-card a:hover {
  color: var(--accent);
}

/* Glassmorphic Contact Form */
.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  position: relative;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  background: rgba(5, 8, 17, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text-highlight);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-normal);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(5, 8, 17, 0.8);
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.15);
}

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

/* Form Toast Alerts */
.form-status {
  margin-top: 15px;
  padding: 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  display: none;
  font-weight: 500;
  text-align: center;
}

.form-status.success {
  display: block;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
}

.form-status.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

/* Maps Section */
.maps-section {
  padding: 0;
  background: var(--bg-primary);
  line-height: 0;
  border-top: 1px solid var(--border-color);
}

.map-container {
  width: 100%;
  height: 400px;
  filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%); /* Dark map skin */
  opacity: 0.8;
  transition: opacity var(--transition-normal);
}

.map-container:hover {
  opacity: 1;
}

/* Footer Section */
footer {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: 60px 20px 30px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}

.footer-brand p {
  margin-top: 16px;
  max-width: 320px;
}

.footer-links h4, .footer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-contact p {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

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

/* Showcase Slider Section */
.showcase-slider {
  padding: 80px 0;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.slider-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 500px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow), 0 0 30px rgba(6, 182, 212, 0.05);
}

.slider-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  background-color: #000;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.slide-caption {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  padding: 20px 24px;
  background: rgba(5, 8, 17, 0.85);
  border: 1px solid rgba(6, 182, 212, 0.15);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  transform: translateY(0);
  transition: all 0.3s ease;
}

.slide-caption h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-highlight);
  margin-bottom: 6px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.slide-caption p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(5, 8, 17, 0.85);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.25s ease;
}

.slider-arrow:hover {
  background: var(--accent);
  color: var(--bg-primary);
  border-color: var(--accent);
  box-shadow: 0 0 15px var(--accent);
}

.slider-arrow.prev {
  left: 20px;
}

.slider-arrow.next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.25s ease;
}

.slider-dot.active {
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  transform: scale(1.2);
}

/* Responsive adjustment for slider */
@media (max-width: 768px) {
  .slider-container {
    height: 350px;
  }
  
  .slide-caption {
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 15px;
  }
  
  .slide-caption h3 {
    font-size: 1.1rem;
  }
  
  .slide-caption p {
    font-size: 0.8rem;
  }
  
  .slider-arrow {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }
  
  .slider-arrow.prev {
    left: 10px;
  }
  
  .slider-arrow.next {
    right: 10px;
  }
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .about-grid, .why-us-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-grid {
    text-align: center;
  }
  
  .specialties-grid {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .contact-info {
    order: 2;
  }
  
  .contact-form-wrapper {
    order: 1;
  }
  
  .lightbox-content {
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
  }
  
  .lightbox-image-box {
    max-height: 350px;
  }
  
  .lightbox-details {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.75rem;
  }
  
  .hero-tagline {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(5, 8, 17, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
    gap: 40px;
    transition: left var(--transition-normal);
    border-top: 1px solid var(--border-color);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-link {
    font-size: 1.25rem;
  }
  
  header.scrolled .nav-container {
    padding: 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .specialties-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    padding: 0 20px;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .contact-form-wrapper {
    padding: 24px;
  }
}
