/* ==========================================
   TECHWAGGER Premium Stylesheet
   Design System: Deep Space Dark Mode
   ========================================== */

:root {
  /* Color Palette */
  --bg-main: #07090e;
  --bg-card: rgba(13, 19, 33, 0.45);
  --bg-card-hover: rgba(20, 29, 51, 0.6);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(63, 102, 201, 0.3);
  
  --primary: #3f66c9;
  --primary-glow: rgba(63, 102, 201, 0.4);
  --secondary: #6366f1;
  --accent: #d9944f;
  --accent-glow: rgba(217, 148, 79, 0.3);
  
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dark: #64748b;
  --text-white: #ffffff;

  /* Font Pairings */
  --font-heading: 'Sora', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --font-alt: 'Outfit', sans-serif;

  /* Spacing & Sizes */
  --nav-height: 80px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

/* 1. Global Resets & Layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Background Glow Effects */
.glow-bg {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(150px);
  z-index: -1;
  opacity: 0.15;
  pointer-events: none;
}

.glow-primary {
  background: var(--primary);
  top: 10%;
  left: -100px;
}

.glow-secondary {
  background: var(--secondary);
  top: 60%;
  right: -100px;
}

/* Container Wrapper */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-spacing {
  padding-top: 100px;
  padding-bottom: 100px;
}

/* 2. Typography & Headers */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.25;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary);
}

.section-header {
  margin-bottom: 48px;
}

.section-header.centered {
  text-align: center;
}

.section-eyebrow {
  font-family: var(--font-alt);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #a5b4fc 0%, var(--primary) 50%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.body-text {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}

.body-text-sm {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* 3. Reusable Components */
/* Glassmorphism Card style */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(63, 102, 201, 0.1);
}

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

.card-accent-title {
  font-family: var(--font-alt);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

/* Buttons style */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-alt);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--text-white);
  border: none;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--primary-glow);
  filter: brightness(1.1);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(63, 102, 201, 0.08);
  color: var(--text-white);
  transform: translateY(-2px);
}

/* 4. Navbar Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: rgba(7, 9, 14, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background 0.3s ease;
}

.navbar.scrolled {
  background: rgba(7, 9, 14, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--text-white);
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--text-white);
}

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

.nav-cta {
  background: rgba(63, 102, 201, 0.15);
  border: 1px solid var(--primary);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-alt);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--text-white);
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--primary);
  box-shadow: 0 4px 12px var(--primary-glow);
  color: var(--text-white);
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.nav-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* 5. Hero Section */
.hero-section {
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 60px;
  text-align: center;
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-row {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 6px 16px;
  border-radius: 30px;
  font-family: var(--font-alt);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.hero-title {
  font-size: 54px;
  font-weight: 800;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 720px;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

/* 6. Key Stats Section */
.stats-section {
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 35px 20px;
}

.stat-number {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-family: var(--font-alt);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-dark);
}

/* 7. About & Timeline */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: stretch;
}

.mission-vision {
  margin-top: 30px;
  border-left: 4px solid var(--accent);
  padding-left: 16px;
}

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  padding-left: 20px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 4px;
  width: 2px;
  height: calc(100% - 30px);
  background: var(--border-color);
}

.timeline-item {
  position: relative;
}

.timeline-dot, .timeline-dot-active, .timeline-dot-future {
  position: absolute;
  left: -20px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translateX(-4px);
}

.timeline-dot {
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary-glow);
}

.timeline-dot-active {
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
  width: 12px;
  height: 12px;
  transform: translate(-5px, -1px);
}

.timeline-dot-future {
  background: var(--text-dark);
  border: 1px solid var(--border-color);
}

.timeline-date {
  font-family: var(--font-alt);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.timeline-date.highlight-date {
  color: var(--accent);
}

.timeline-body h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.timeline-body p {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* 7.5 What We Do (4-Pillar Grid Layout) */
.section-subtitle {
  max-width: 720px;
  margin: 12px auto 0;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.pillar-grid, .build-pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.pillar-card {
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
  border-radius: 20px;
  background: rgba(11, 15, 25, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* Pillar Specific Hover Borders */
.pillar-build:hover, .pillar-ai:hover { border-color: rgba(129, 140, 248, 0.4); box-shadow: 0 16px 40px rgba(99, 102, 241, 0.15); }
.pillar-connect:hover, .pillar-se:hover { border-color: rgba(45, 212, 191, 0.4); box-shadow: 0 16px 40px rgba(20, 184, 166, 0.15); }
.pillar-modernize:hover, .pillar-cloud:hover { border-color: rgba(251, 191, 36, 0.4); box-shadow: 0 16px 40px rgba(245, 158, 11, 0.15); }
.pillar-optimize:hover, .pillar-qa:hover { border-color: rgba(96, 165, 250, 0.4); box-shadow: 0 16px 40px rgba(59, 130, 246, 0.15); }
.pillar-data:hover { border-color: rgba(217, 148, 79, 0.4); box-shadow: 0 16px 40px rgba(217, 148, 79, 0.15); }
.pillar-crm:hover { border-color: rgba(168, 85, 247, 0.4); box-shadow: 0 16px 40px rgba(168, 85, 247, 0.15); }

.pillar-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}

.pillar-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-icon-box svg {
  width: 26px;
  height: 26px;
}

.icon-build, .icon-ai {
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: #818cf8;
}

.icon-connect, .icon-se {
  background: rgba(20, 184, 166, 0.15);
  border: 1px solid rgba(20, 184, 166, 0.3);
  color: #2dd4bf;
}

.icon-modernize, .icon-cloud {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #fbbf24;
}

.icon-optimize, .icon-qa {
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #60a5fa;
}

.icon-data {
  background: rgba(217, 148, 79, 0.15);
  border: 1px solid rgba(217, 148, 79, 0.3);
  color: #d9944f;
}

.icon-crm {
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: #c084fc;
}

.pillar-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--text-white);
}

.pillar-tagline {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.tagline-build, .tagline-ai { color: #f97316; }
.tagline-connect, .tagline-se { color: #2dd4bf; }
.tagline-modernize, .tagline-cloud { color: #fbbf24; }
.tagline-optimize, .tagline-qa { color: #3b82f6; }
.tagline-data { color: #d9944f; }
.tagline-crm { color: #c084fc; }

.pillar-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.pillar-pills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: auto;
}

.pillar-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(18, 24, 38, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 10px 14px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.pillar-pill:hover {
  background: rgba(30, 41, 59, 0.9);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.pillar-pill svg {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
}

.pillar-pill span {
  font-family: var(--font-alt);
  font-size: 12.5px;
  font-weight: 600;
  color: #cbd5e1;
}

/* Bottom Feature Badges Bar */
.pillar-footer-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 22px 30px;
  background: rgba(13, 19, 33, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  margin-top: 10px;
}

.footer-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-alt);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer-feature-item:hover {
  color: var(--text-white);
}

.footer-feature-item svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

/* Responsive Breakpoints for Pillars */
@media (max-width: 992px) {
  .pillar-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .pillar-pills-grid {
    grid-template-columns: 1fr;
  }
  .pillar-footer-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* 8. Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.icon-ai {
  background: rgba(63, 102, 201, 0.2);
  color: var(--primary);
}
.icon-se {
  background: rgba(99, 102, 241, 0.2);
  color: var(--secondary);
}
.icon-cloud {
  background: rgba(63, 102, 201, 0.2);
  color: var(--primary);
}
.icon-qa {
  background: rgba(217, 148, 79, 0.2);
  color: var(--accent);
}
.icon-data {
  background: rgba(217, 148, 79, 0.2);
  color: var(--accent);
}
.icon-crm {
  background: rgba(99, 102, 241, 0.2);
  color: var(--secondary);
}

.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* 9. Why Us & Industries */
.expertise-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.why-us-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.why-us-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(63, 102, 201, 0.15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 3px;
}

.why-us-list strong {
  display: block;
  font-size: 15px;
  color: var(--text-white);
  margin-bottom: 2px;
}

.why-us-list p {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* Industry cloud */
.industries-cloud {
  padding: 35px;
}

.badge-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ind-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  padding: 6px 14px;
  border-radius: 30px;
  font-family: var(--font-alt);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-main);
  transition: all 0.3s ease;
}
.ind-badge a {
	color: var(--text-main);
	text-decoration: none;
}
.ind-badge:hover {
  background: rgba(217, 148, 79, 0.1);
  border-color: var(--accent);
  color: var(--text-white);
}

/* 10. Tech Stack Section */
.tech-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-family: var(--font-alt);
  font-weight: 500;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text-white);
  box-shadow: 0 4px 12px var(--primary-glow);
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.tech-badge {
  background: rgba(13, 19, 33, 0.7);
  border: 1px solid var(--border-color);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-alt);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--text-muted);
  transition: all 0.4s ease;
}

.tech-badge:hover {
  color: var(--text-white);
  border-color: var(--primary);
  background: rgba(63, 102, 201, 0.1);
  transform: translateY(-2px);
}

.tech-badge.dimmed {
  opacity: 0.2;
  transform: scale(0.95);
}

/* 11. Portfolio / Case Studies */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-card {
  display: flex;
  flex-direction: column;
}

.portfolio-category {
  font-family: var(--font-alt);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.portfolio-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.portfolio-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* 12. Testimonials Carousel */
.carousel-container {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  padding: 20px 0;
}

.testimonial-carousel {
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: center;
}

.testimonial-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-align: center;
}

.testimonial-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.quote-icon {
  font-family: Georgia, serif;
  font-size: 90px;
  line-height: 1;
  color: var(--primary);
  opacity: 0.12;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  user-select: none;
}

.quote-text {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-main);
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.client-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.client-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-white);
}

.client-title {
  font-family: var(--font-alt);
  font-size: 12px;
  color: var(--text-dark);
  margin-top: 2px;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.carousel-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text-white);
}

.carousel-btn svg {
  width: 18px;
  height: 18px;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--primary);
  width: 20px;
  border-radius: 4px;
}

/* 13. Footer & Booking Box */
.footer {
  background: #04060a;
  border-top: 1px solid var(--border-color);
  padding-top: 80px;
  padding-bottom: 40px;
  position: relative;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}

.footer-info h3 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.footer-tagline {
  font-family: var(--font-alt);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-address {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--text-muted);
}

.footer-contact strong {
  color: var(--text-white);
}

.footer-contact a {
  color: var(--text-main);
  border-bottom: 1px dotted rgba(255,255,255,0.4);
}

.footer-contact a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* Footer booking card */
.footer-cta-box {
  padding: 30px;
  background: linear-gradient(135deg, rgba(63, 102, 201, 0.08) 0%, rgba(99, 102, 241, 0.04) 100%);
  border-color: rgba(63, 102, 201, 0.2);
}

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

.cta-text {
  flex: 1;
}

.cta-text h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-text p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.cta-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  padding: 10px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.qr-code {
  width: 90px;
  height: 90px;
}

.qr-label {
  color: #04060a;
  font-family: var(--font-alt);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 12.5px;
  color: var(--text-dark);
}

/* ==========================================
   14. Responsive Adaptations
   ========================================== */

@media (max-width: 1024px) {
  .section-title {
    font-size: 32px;
  }
  
  .hero-title {
    font-size: 44px;
  }
  
  .about-grid, .expertise-grid, .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .services-grid, .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }
  
  .section-spacing {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 15px;
  }
  
  .services-grid, .portfolio-grid, .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  
  .btn {
    width: 100%;
  }

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

  /* Responsive navbar menu */
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background: rgba(7, 9, 14, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    transition: left 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-top: 1px solid var(--border-color);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    font-size: 18px;
    width: 100%;
    text-align: center;
  }
  
  .nav-cta {
    width: 100%;
    text-align: center;
    font-size: 16px;
    padding: 12px;
  }

  /* Hamburger anim */
  .nav-toggle.open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-toggle.open .bar:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* Management Team Styles */
.team-container {
  margin-top: 35px;
}

.team-section-title {
  font-family: var(--font-alt);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-white);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.team-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-color);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.team-card {
  background: rgba(13, 19, 33, 0.35);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  background: rgba(20, 29, 51, 0.5);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.team-img-wrapper {
  width: 90px;
  height: 90px;
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s ease;
}

.team-card:hover .team-img-wrapper {
  border-color: var(--primary);
}

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

.team-name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 2px;
}

.team-role {
  font-family: var(--font-alt);
  font-size: 11px;
  color: var(--text-dark);
  font-weight: 500;
}

@media (max-width: 576px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
