/* ==========================================================================
   DRIVE ASIAN - Modern Luxury Automotive CSS Architecture
   ========================================================================== */

:root {
  /* Drive Asian Executive Signature Color System */
  --bg-page: #F4F6F9;
  --bg-surface-light: #FFFFFF;
  --bg-card-dark: #0F172A;
  --bg-card-dark-alt: #1E293B;
  
  --border-light: rgba(15, 23, 42, 0.1);
  --border-dark: rgba(255, 255, 255, 0.1);
  --border-brand: rgba(0, 102, 255, 0.3);

  /* Single Brand Signature Color: Drive Asian Electric Azure (#0066FF) matching 'Partner with us' button */
  --brand-primary: #0066FF;
  --brand-primary-hover: #0052FF;
  --brand-navy: #0F172A;

  --text-dark: #0F172A;
  --text-muted-dark: #475569;
  --text-light: #F8FAFC;
  --text-muted-light: #94A3B8;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container-width: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-page);
  color: var(--text-dark);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* Layout Utilities */
.section-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gradient-text {
  color: var(--brand-primary);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: initial;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand-primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  color: var(--text-dark);
}

.section-lead {
  font-size: 1.15rem;
  color: var(--text-muted-dark);
  max-width: 760px;
  line-height: 1.7;
}

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

.section-header.center .section-lead {
  margin: 0 auto;
}

.hidden {
  display: none !important;
}

/* Buttons & CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.8rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 18px rgba(0, 82, 255, 0.28);
}

.btn-primary:hover {
  background: var(--brand-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 82, 255, 0.4);
}

.btn-skywell {
  background: var(--brand-navy);
  color: #FFFFFF;
  border: 1px solid var(--brand-primary);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.2);
}

.btn-skywell:hover {
  background: #1E293B;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.35);
}

.btn-full {
  width: 100%;
}

/* Header & Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(6, 11, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-fast);
}

.navbar.scrolled {
  padding: 0.75rem 0;
  background: rgba(6, 11, 20, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo .logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.nav-logo:hover .logo-img {
  transform: scale(1.03);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: #FFFFFF;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link:hover {
  color: #0066FF;
}

.nav-link.skywell-badge-link {
  color: #0066FF;
  font-weight: 700;
}

.nav-cta {
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  background: #0066FF;
  color: #FFFFFF !important;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.nav-cta:hover {
  background: #0052FF;
  transform: translateY(-1px);
}

/* Language Switcher */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lang-switcher {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.6rem;
  border-radius: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.lang-btn {
  background: none;
  border: none;
  color: #060B14;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
  transition: color var(--transition-fast);
}

.lang-btn.active {
  color: #0066FF;
}

.lang-divider {
  color: #94A3B8;
  font-size: 0.8rem;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-main);
  transition: all 0.3s;
}

/* Hero Section - Reference Screenshot 1-to-1 Match */
.hero {
  position: relative;
  min-height: 90vh;
  padding-top: 8rem;
  padding-bottom: 7.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #060B14;
  overflow: hidden;
}

/* Background image & gradient overlay */
.hero-bg-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background-image: url('Assets/images/hero_ev_cinematic.png');
  background-size: cover;
  background-position: center right;
  z-index: 0;
  animation: heroSubtleDrift 22s infinite alternate ease-in-out;
}

@keyframes heroSubtleDrift {
  0% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.06) translate(-8px, -4px);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}

.hero-dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #060B14 38%, rgba(6, 11, 20, 0.85) 58%, rgba(6, 11, 20, 0.15) 100%);
  z-index: 1;
}

.hero-dot-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-image: radial-gradient(rgba(0, 102, 255, 0.25) 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: 1;
  opacity: 0.6;
  pointer-events: none;
}

.hero-floating-pill {
  position: absolute;
  top: 6.5rem;
  right: 5%;
  z-index: 10;
  background: rgba(10, 18, 34, 0.85);
  border: 1px solid rgba(0, 102, 255, 0.4);
  color: #FFFFFF;
  padding: 0.45rem 1.1rem;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.sparkle-icon {
  color: #0066FF;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.hero-content {
  max-width: 620px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  color: #FFFFFF;
  letter-spacing: -1px;
}

.highlight-blue {
  color: #0066FF;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: #0066FF;
  margin-bottom: 1.2rem;
  line-height: 1.35;
}

.hero-desc {
  font-size: 1.08rem;
  color: #CBD5E1;
  margin-bottom: 2.2rem;
  line-height: 1.65;
  max-width: 560px;
}

.hero-ctas {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.btn-blue {
  background: #0066FF;
  color: #FFFFFF;
  font-weight: 700;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.35);
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}

.btn-blue:hover {
  background: #0052FF;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.5);
}

.btn-outline-dark {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  font-weight: 700;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-outline-dark:hover {
  border-color: #0066FF;
  background: rgba(15, 23, 42, 0.9);
}

/* Integrated Bottom Glass Stats Bar */
.hero-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: rgba(6, 11, 20, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.2rem 0;
}

.hero-bottom-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hero-stats-group {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.stat-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
}

.stat-text-box {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #0066FF;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.8rem;
  color: #CBD5E1;
}

.glass-badge.skywell-official-badge {
  background: rgba(14, 22, 38, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.8rem 1.4rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #0066FF;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.badge-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: #FFFFFF;
}

.badge-sub {
  font-size: 0.82rem;
  color: #94A3B8;
}

/* SKYWELL Highlight Section - Reference Screenshot 1-to-1 Match */
.skywell-section {
  padding: 5rem 0 6rem;
  background-color: #060B14;
  color: #FFFFFF;
}

.skywell-layout-top {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.skywell-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(10, 18, 34, 0.85);
  border: 1px solid rgba(0, 102, 255, 0.4);
  color: #FFFFFF;
  padding: 0.45rem 1.1rem;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.pulse-dot-blue {
  width: 8px;
  height: 8px;
  background-color: #0066FF;
  border-radius: 50%;
  box-shadow: 0 0 8px #0066FF;
}

.skywell-main-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.4rem;
  color: #FFFFFF;
}

.skywell-lead-desc {
  font-size: 1.1rem;
  color: #94A3B8;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.skywell-sub-desc {
  font-size: 1rem;
  color: #64748B;
  line-height: 1.6;
}

.skywell-visual-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.skywell-parts-img {
  width: 100%;
  max-width: 540px;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease;
}

.skywell-parts-img:hover {
  transform: scale(1.02);
}

.skywell-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.skywell-feature-card {
  background: rgba(11, 18, 32, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 2px solid rgba(0, 102, 255, 0.4);
  padding: 1.8rem 1.4rem;
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.skywell-feature-card:hover {
  border-color: #0066FF;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 102, 255, 0.2);
}

.skywell-icon-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.15);
  border: 1px solid rgba(0, 102, 255, 0.3);
  color: #0066FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.skywell-feature-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #FFFFFF;
}

.skywell-feature-card p {
  font-size: 0.9rem;
  color: #94A3B8;
  line-height: 1.5;
}

/* Bottom CTA Card */
.skywell-bottom-cta {
  background: rgba(11, 18, 32, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.4rem 2.2rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.skywell-cta-left {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.headset-icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.15);
  color: #0066FF;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
}

.skywell-cta-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
}

/* About / Mission Section */
.about-section {
  padding: 6rem 0;
  background-color: var(--bg-page);
}

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

.about-card {
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  padding: 2.2rem;
  border-radius: var(--radius-md);
  position: relative;
  transition: all var(--transition-fast);
  color: var(--text-light);
}

.about-card:hover {
  border-color: var(--brand-primary);
  transform: translateY(-4px);
}

.about-card-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand-primary);
  margin-bottom: 1rem;
}

.about-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #FFFFFF;
}

.about-card p {
  font-size: 0.95rem;
  color: var(--text-muted-light);
  line-height: 1.6;
}

/* Offer Section */
.offer-section {
  padding: 6rem 0;
  background: var(--bg-page);
}

.offer-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

.offer-desc {
  font-size: 1.1rem;
  color: var(--text-muted-dark);
  margin-bottom: 2rem;
}

.offer-img-box {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15);
}

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

.offer-solutions-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.solution-item {
  display: flex;
  gap: 1.2rem;
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  padding: 1.4rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  color: var(--text-light);
}

.solution-item:hover {
  border-color: var(--brand-primary);
  transform: translateX(4px);
}

.solution-icon {
  font-size: 1.8rem;
  background: rgba(0, 82, 255, 0.15);
  color: #FFFFFF;
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}

.solution-body h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #FFFFFF;
}

.solution-body p {
  font-size: 0.92rem;
  color: var(--text-muted-light);
}

/* Consulting & Coaching Section */
.consulting-section {
  padding: 6rem 0;
  background: var(--bg-page);
}

.tab-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tab-btn {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  color: var(--text-muted-dark);
  padding: 0.9rem 2rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-btn:hover {
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}

.tab-btn.active {
  background: var(--brand-primary);
  color: #FFFFFF;
  border-color: var(--brand-primary);
  box-shadow: 0 4px 18px rgba(0, 82, 255, 0.3);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.4s ease forwards;
}

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

.tab-hero-box {
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  color: var(--text-light);
}

.tab-hero-box h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.tab-hero-box p {
  font-size: 1.05rem;
  color: var(--text-muted-light);
  line-height: 1.7;
}

.consulting-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.c-service-item {
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  padding: 1.8rem;
  border-radius: var(--radius-md);
  color: var(--text-light);
}

.c-service-item.full-width {
  grid-column: span 2;
}

.c-service-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--brand-primary);
  display: block;
  margin-bottom: 0.5rem;
}

.c-service-item h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}

.c-service-item p {
  font-size: 0.95rem;
  color: var(--text-muted-light);
}

.coaching-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  padding: 3rem;
  border-radius: var(--radius-lg);
  color: var(--text-light);
}

.coaching-info h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.coaching-info p {
  font-size: 1.05rem;
  color: var(--text-muted-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.coaching-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.c-feat {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
}

.check-icon {
  background: rgba(0, 82, 255, 0.2);
  color: #FFFFFF;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.coaching-img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* Contact & B2B Form Section */
.contact-section {
  padding: 6rem 0;
  background: var(--bg-page);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
}

.contact-desc {
  font-size: 1.1rem;
  color: var(--text-muted-dark);
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.detail-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.detail-icon {
  font-size: 1.5rem;
  background: #FFFFFF;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.detail-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text-dark);
}

.detail-item p {
  color: var(--text-muted-dark);
  font-size: 0.95rem;
}

.contact-form-card {
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.2);
  color: var(--text-light);
}

.contact-form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}

.form-sub {
  font-size: 0.95rem;
  color: var(--text-muted-light);
  margin-bottom: 2rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card-dark-alt);
  border: 1px solid var(--border-dark);
  color: #FFFFFF;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 10px rgba(0, 82, 255, 0.3);
}

.form-group select option {
  background: var(--bg-card-dark);
  color: #FFFFFF;
}

.form-success-msg {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(0, 82, 255, 0.15);
  border: 1px solid var(--brand-primary);
  padding: 1.2rem;
  border-radius: var(--radius-md);
  margin-top: 1.5rem;
  color: #FFFFFF;
}

.success-icon {
  font-size: 1.8rem;
  color: var(--brand-primary);
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-card {
  background: var(--bg-card-dark);
  border: 1px solid var(--border-brand);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  color: var(--text-light);
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-muted-light);
  cursor: pointer;
}

.modal-close:hover {
  color: #FFFFFF;
}

.badge-tag {
  display: inline-block;
  background: rgba(0, 82, 255, 0.15);
  color: #FFFFFF;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}

.modal-header p {
  font-size: 0.92rem;
  color: var(--text-muted-light);
  margin-bottom: 1.8rem;
}

/* Footer */
.footer {
  background: var(--brand-navy);
  border-top: 1px solid var(--border-dark);
  padding: 4rem 0 2rem;
  color: var(--text-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-logo {
  height: 40px;
  margin-bottom: 1.2rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted-light);
  line-height: 1.6;
}

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #FFFFFF;
}

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

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted-light);
  transition: color var(--transition-fast);
}

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

.skywell-foot-card {
  background: var(--bg-card-dark-alt);
  border: 1px solid var(--border-dark);
  padding: 1.2rem;
  border-radius: var(--radius-md);
}

.foot-skywell-logo {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: #FFFFFF;
  margin-bottom: 0.4rem;
}

.skywell-foot-card p {
  font-size: 0.85rem;
  color: var(--text-muted-light);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted-light);
}

.footer-bottom a {
  color: #FFFFFF;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-container,
  .offer-layout,
  .coaching-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-title {
    font-size: 3rem;
  }

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

@media (max-width: 768px) {
  .section-container {
    padding: 0 1rem;
  }

  .section-title {
    font-size: 1.85rem;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .section-lead {
    font-size: 1rem;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-toggle span {
    background-color: #FFFFFF;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    transform: translateY(-150%);
    transition: transform var(--transition-smooth);
  }

  .nav-menu .nav-link {
    color: #0F172A;
    font-weight: 700;
    font-size: 1.05rem;
  }

  .nav-menu .nav-link:hover,
  .nav-menu .nav-link.skywell-badge-link {
    color: #0066FF;
  }

  .nav-menu.open {
    transform: translateY(0);
  }

  .hero {
    padding-top: 6.5rem;
    padding-bottom: 2rem;
    min-height: auto;
  }

  .hero-bg-image {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.78;
    background-position: 70% center;
  }

  .hero-dark-overlay {
    background: linear-gradient(180deg, rgba(6, 11, 20, 0.45) 0%, rgba(6, 11, 20, 0.78) 55%, #060B14 100%);
  }

  .hero-title {
    font-size: 2.4rem;
    line-height: 1.15;
    margin-bottom: 0.8rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
  }

  .hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.9);
  }

  .hero-desc {
    font-size: 0.98rem;
    margin-bottom: 1.5rem;
    color: #E2E8F0;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 0.85rem;
    margin-bottom: 2.5rem;
  }

  .hero-ctas .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero-floating-pill {
    position: static;
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 1rem;
  }

  .hero-bottom-bar {
    position: relative;
    background: rgba(10, 18, 34, 0.95);
    padding: 1.5rem 0;
    margin-top: 2rem;
  }

  .hero-bottom-container {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }

  .hero-stats-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .glass-badge.skywell-official-badge {
    justify-content: center;
  }

  .skywell-layout-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .skywell-main-title {
    font-size: 2.2rem;
  }

  .skywell-features-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .skywell-bottom-cta {
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 1.2rem;
  }

  .skywell-bottom-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .about-card {
    padding: 1.5rem;
  }

  .solution-item {
    padding: 1.1rem;
  }

  .tab-hero-box {
    padding: 1.4rem;
  }

  .tab-hero-box h3 {
    font-size: 1.4rem;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .tab-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .tab-btn {
    text-align: center;
    width: 100%;
    padding: 0.8rem 1rem;
  }

  .consulting-services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .c-service-item {
    padding: 1.25rem;
  }

  .c-service-item.full-width {
    grid-column: span 1;
  }

  .coaching-layout {
    padding: 1.5rem;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .coaching-info h3 {
    font-size: 1.5rem;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .contact-form-card {
    padding: 1.5rem;
  }

  .contact-form-card h3 {
    font-size: 1.5rem;
    overflow-wrap: break-word;
    word-break: break-word;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.85rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .skywell-title {
    font-size: 1.55rem;
  }
}

/* ==========================================================================
   GDPR COMPLIANCE STYLES (Cookie Banner, Legal Modals & Consent Checkbox)
   ========================================================================== */

/* Floating Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(10, 18, 34, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0, 102, 255, 0.4);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
  padding: 1.25rem 0;
  animation: slideUpCookie 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUpCookie {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-banner-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-banner-text {
  flex: 1;
}

.cookie-icon-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.3rem;
}

.cookie-desc {
  font-size: 0.88rem;
  color: #94A3B8;
  line-height: 1.5;
}

.cookie-desc a {
  color: #0066FF;
  text-decoration: underline;
}

.cookie-banner-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.88rem;
  border-radius: 6px;
}

.btn-outline-light {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
}

/* Legal & Cookie Preference Modals */
.legal-modal-card,
.cookie-config-card {
  max-width: 760px;
  width: 92%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  background: #0F172A;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  padding: 2rem;
  color: #F8FAFC;
}

.legal-modal-body {
  overflow-y: auto;
  padding-right: 0.5rem;
  margin-top: 1rem;
  font-size: 0.93rem;
  line-height: 1.7;
  color: #CBD5E1;
}

.legal-modal-body h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 1.5rem 0 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.4rem;
}

.legal-modal-body h4:first-child {
  margin-top: 0;
}

.legal-modal-body ul {
  padding-left: 1.2rem;
  margin: 0.5rem 0;
}

.legal-modal-body li {
  margin-bottom: 0.35rem;
}

/* Custom Toggle Switches for Cookie Modal */
.cookie-toggle-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 1.5rem 0 2rem;
}

.cookie-toggle-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.2rem;
  border-radius: var(--radius-sm);
}

.toggle-info h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

.toggle-info p {
  font-size: 0.85rem;
  color: #94A3B8;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #334155;
  transition: 0.3s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #0066FF;
}

input:checked + .slider:before {
  transform: translateX(24px);
}

.toggle-switch.disabled .slider {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Privacy Consent Checkbox on Forms */
.privacy-consent-group {
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
  font-size: 0.85rem;
  color: #CBD5E1;
  line-height: 1.4;
}

.checkbox-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  background-color: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s ease;
  margin-top: 1px;
}

.checkbox-label:hover input ~ .checkbox-custom {
  border-color: #0066FF;
}

.checkbox-label input:checked ~ .checkbox-custom {
  background-color: #0066FF;
  border-color: #0066FF;
}

.checkbox-custom:after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-label input:checked ~ .checkbox-custom:after {
  display: block;
}

.privacy-text a {
  color: #0066FF;
  text-decoration: underline;
}

/* Footer Legal Links */
.footer-legal-bar {
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
}

.footer-legal-bar a {
  color: #94A3B8;
  transition: color 0.2s ease;
}

.footer-legal-bar a:hover {
  color: #0066FF;
}

.legal-separator {
  color: #475569;
}

@media (max-width: 768px) {
  .cookie-banner-container {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .cookie-banner-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-banner-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

