/* ==========================================================================
   DESIGN SYSTEM & CUSTOM VARIABLES (Auto-Roch Static Web)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Color Palette - Modern Automotive Theme (Electric Blue & Clean Slate - Light Mode) */
  --bg-main: hsl(210, 20%, 97%);
  --bg-card: hsla(0, 0%, 100%, 0.75);
  --bg-card-hover: hsla(0, 0%, 100%, 0.95);
  --border-color: hsla(210, 15%, 85%, 0.6);
  --border-hover: hsla(210, 100%, 50%, 0.5);
  
  --text-primary: hsl(222, 24%, 12%);
  --text-secondary: hsl(215, 15%, 32%);
  --text-muted: hsl(215, 12%, 52%);
  
  --accent-color: hsl(210, 100%, 50%);
  --accent-hover: hsl(198, 100%, 45%);
  --accent-glow: hsla(210, 100%, 50%, 0.15);
  
  --accent-aixam: hsl(200, 100%, 45%);
  --accent-ford: hsl(215, 100%, 45%);
  --accent-skoda: hsl(135, 60%, 40%);
  
  --gradient-primary: linear-gradient(135deg, hsl(210, 100%, 50%) 0%, hsl(195, 100%, 45%) 100%);
  --gradient-dark: linear-gradient(180deg, hsla(210, 20%, 97%, 0.7) 0%, hsl(210, 20%, 97%) 100%);
  --gradient-glow: radial-gradient(600px circle at var(--mouse-x, 0) var(--mouse-y, 0), hsla(210, 100%, 50%, 0.05), transparent 40%);
  
  /* Fonts */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout & Shadows */
  --radius-lg: 16px;
  --radius-md: 8px;
  --radius-sm: 4px;
  --shadow-premium: 0 8px 30px 0 rgba(0, 0, 0, 0.08);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: 80px;
}

/* ==========================================================================
   BASE & RESET
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.25;
}

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

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

ul {
  list-style: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: hsl(210, 15%, 82%);
  border-radius: var(--radius-md);
  border: 2px solid var(--bg-main);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

/* ==========================================================================
   LAYOUT CONTAINERS & UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-bg {
  background: var(--gradient-dark), radial-gradient(circle at 50% 50%, hsla(210, 100%, 55%, 0.03), transparent 70%);
}

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

.section-subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--accent-color);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: inline-block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background: var(--gradient-primary);
  margin: 12px auto 0 auto;
  border-radius: var(--radius-sm);
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   PREMIUM BUTTONS & INTERACTIVES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  gap: 10px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--bg-main);
  box-shadow: 0 4px 14px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px hsla(210, 100%, 55%, 0.4);
  color: var(--bg-main);
}

.btn-secondary {
  background: hsla(0, 0%, 100%, 0.6);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: hsla(0, 0%, 100%, 0.9);
  border-color: var(--accent-color);
  transform: translateY(-2px);
  color: var(--accent-color);
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.header.scrolled {
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 48px;
  width: auto;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
}

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

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

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

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

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

.header-contact {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 30px;
  background: hsla(210, 100%, 55%, 0.1);
  border: 1px solid hsla(210, 100%, 55%, 0.2);
  color: var(--accent-color);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
}

.phone-badge:hover {
  background: var(--gradient-primary);
  color: var(--bg-main);
  border-color: transparent;
  box-shadow: 0 4px 14px var(--accent-glow);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--text-primary);
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
}

/* Hamburger active states */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ==========================================================================
   HERO BANNER / SWIPER SLIDER
   ========================================================================== */
.hero-slider-section {
  position: relative;
  height: 85vh;
  margin-top: var(--header-height);
  overflow: hidden;
  background: var(--bg-main);
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
  overflow: hidden;
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.9) contrast(1.02);
}

.swiper-slide-active .slide-img {
  transform: scale(1);
}

.slide-content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 10;
  background: linear-gradient(90deg, rgba(248, 250, 252, 0.95) 0%, rgba(248, 250, 252, 0.75) 45%, rgba(248, 250, 252, 0.15) 100%);
}

/* On mobile, standard portrait layouts need a stronger overlay so text remains readable */
@media (max-width: 767px) {
  .slide-content-overlay {
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.95) 0%, rgba(248, 250, 252, 0.85) 60%, rgba(248, 250, 252, 0.5) 100%);
  }
}

.slide-content-box {
  max-width: 650px;
  transform: translateY(40px);
  opacity: 0;
  transition: var(--transition-smooth);
  transition-delay: 0.5s;
}

.swiper-slide-active .slide-content-box {
  transform: translateY(0);
  opacity: 1;
}

.slide-tag {
  display: inline-block;
  padding: 6px 12px;
  background: hsla(210, 100%, 50%, 0.08);
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.slide-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.slide-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 500px;
}

/* Custom Swiper Navigation Styles */
.swiper-button-next, .swiper-button-prev {
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--text-primary) !important;
  backdrop-filter: blur(8px);
  transition: var(--transition-smooth);
}

.swiper-button-next:hover, .swiper-button-prev:hover {
  background: var(--accent-color);
  color: #fff !important;
  border-color: transparent;
  box-shadow: 0 0 15px var(--accent-glow);
}

.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 1.2rem !important;
  font-weight: bold;
}

.swiper-pagination-bullet {
  background: var(--text-primary) !important;
  opacity: 0.25 !important;
  width: 10px !important;
  height: 10px !important;
  transition: var(--transition-smooth);
}

.swiper-pagination-bullet-active {
  opacity: 1 !important;
  background: var(--accent-color) !important;
  width: 24px !important;
  border-radius: 5px !important;
}

/* ==========================================================================
   QUICK CTA / STATS
   ========================================================================== */
.quick-cta-bar {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--border-color);
  padding: 30px 0;
  position: relative;
  z-index: 20;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: center;
}

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

.cta-icon {
  font-size: 2.2rem;
  color: var(--accent-color);
  background: hsla(210, 100%, 55%, 0.08);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid hsla(210, 100%, 55%, 0.15);
}

.cta-item-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.cta-item-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SERVICES GRID & EXPANDABLE POPUPS (Glassmorphism Cards)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  backdrop-filter: blur(12px);
}

.service-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-premium), 0 0 20px var(--accent-glow);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon-wrap {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 24px;
  display: inline-block;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrap {
  transform: scale(1.1);
  color: var(--accent-hover);
}

.service-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.service-more-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent-color);
}

.service-card:hover .service-more-link {
  color: var(--accent-hover);
}

.service-more-icon {
  transition: transform 0.3s ease;
}

.service-card:hover .service-more-icon {
  transform: translateX(4px);
}

/* Modals for service details */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  width: 100%;
  max-width: 750px;
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  opacity: 0;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-premium);
}

.modal-overlay.active .modal-container {
  transform: scale(1);
  opacity: 1;
}

.modal-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  background: var(--accent-color);
  color: #fff;
  border-color: transparent;
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.modal-icon {
  font-size: 3rem;
  color: var(--accent-color);
}

.modal-title {
  font-size: 2rem;
  font-weight: 800;
}

.modal-body {
  color: var(--text-secondary);
}

.modal-body p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.modal-bullet-list {
  margin: 24px 0;
}

.modal-bullet-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.modal-bullet-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.modal-tagline {
  padding: 18px;
  background: hsla(210, 100%, 55%, 0.08);
  border-left: 4px solid var(--accent-color);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 30px 0;
  font-weight: 500;
}

/* ==========================================================================
   BRANDS SECTION (Harmonized, Clean Aesthetics)
   ========================================================================== */
.brands-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.brand-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 24px 32px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 170px;
  transition: var(--transition-smooth);
  backdrop-filter: blur(8px);
}

.brand-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.brand-logo-wrap {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-fallback {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.brand-aixam { color: var(--accent-aixam); }
.brand-ford { color: var(--accent-ford); }
.brand-skoda { color: var(--accent-skoda); }
.brand-ligier { color: hsl(0, 80%, 55%); }
.brand-microcar { color: hsl(30, 90%, 55%); }

.brand-name {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.brand-card:hover .brand-name {
  color: var(--text-primary);
}

.brand-logo-img {
  max-height: 50px;
  width: auto;
  filter: brightness(0.9) contrast(1.1);
  transition: var(--transition-smooth);
}

.brand-card:hover .brand-logo-img {
  filter: brightness(1) contrast(1.2);
  transform: scale(1.05);
}

/* ==========================================================================
   VIDEOS GALLERY SECTION (Premium Players)
   ========================================================================== */
.videos-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.video-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.video-box:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-premium), 0 0 20px var(--accent-glow);
}

.video-player-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
}

.video-player-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-info-overlay {
  padding: 24px;
}

.video-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.video-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================================================
   STATS SECTION (Impressive Numbers)
   ========================================================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition-smooth);
  backdrop-filter: blur(12px);
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 12px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-title {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
}

/* ==========================================================================
   CONTACT SECTION (Map + Anti-Spam Form)
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 4.5fr 5.5fr;
  gap: 40px;
  margin-top: 40px;
  align-items: stretch;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: var(--radius-lg);
  display: flex;
  gap: 20px;
  backdrop-filter: blur(8px);
  transition: var(--transition-smooth);
}

.info-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.info-icon {
  font-size: 1.8rem;
  color: var(--accent-color);
  background: hsla(210, 100%, 55%, 0.08);
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid hsla(210, 100%, 55%, 0.15);
}

.info-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

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

.info-desc a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.map-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 250px;
  box-shadow: var(--shadow-premium);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  /* Clean natural map style for Light Mode */
}

/* Anti-Spam Modern Contact Form */
.contact-form-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 48px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-premium);
}

.form-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.form-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  background: hsl(0, 0%, 100%);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-color);
  background: hsl(0, 0%, 100%);
  box-shadow: 0 0 10px var(--accent-glow);
}

textarea.form-input {
  min-height: 140px;
  resize: vertical;
}

/* Honeypot Spam Protection (COMPLETELY HIDDEN FROM GENUINE USERS) */
.honeypot-field {
  display: none !important;
  visibility: hidden !important;
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
}

/* Form Submit State Messages */
.form-status {
  margin-top: 16px;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.95rem;
  display: none;
}

.form-status.success {
  background: rgba(40, 167, 69, 0.15);
  border: 1px solid #28a745;
  color: #28a745;
  display: block;
}

.form-status.error {
  background: rgba(220, 53, 69, 0.15);
  border: 1px solid #dc3545;
  color: #dc3545;
  display: block;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: hsl(210, 20%, 95%);
  border-top: 1px solid var(--border-color);
  padding: 50px 0 30px 0;
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-link {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-link:hover {
  color: var(--accent-color);
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 30px;
}

.social-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-circle:hover {
  background: var(--gradient-primary);
  color: var(--bg-main);
  border-color: transparent;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 12px var(--accent-glow);
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}

/* ==========================================================================
   RESPONSIVE STYLES (MOBILE & TABLET ADAPTATION)
   ========================================================================== */
@media (max-width: 991px) {
  .header {
    height: 70px;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-link {
    font-size: 1.3rem;
  }
  
  .header-contact {
    display: none; /* Hide phone in header on mobile, standard banner call works */
  }
  
  .hero-slider-section {
    height: 60vh;
  }
  
  .slide-title {
    font-size: 2.5rem;
  }
  
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .videos-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 70px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .slide-title {
    font-size: 2rem;
  }
  
  .slide-desc {
    font-size: 0.95rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .brand-card {
    min-width: 140px;
    padding: 16px 20px;
  }
  
  .brand-logo-fallback {
    font-size: 1.25rem;
  }
  
  .contact-form-panel {
    padding: 30px 20px;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .modal-container {
    padding: 30px 20px;
    border-radius: var(--radius-md);
  }
  
  .modal-title {
    font-size: 1.5rem;
  }
  
  .modal-header {
    gap: 12px;
  }
}
