/* 
   Sumit Automotive – VAHHAN24 (Ultra-Premium White Corporate Theme)
   Enterprise Design Language: Inspired by SAN Automotive & Top Global Auto Brands
*/

:root {
  /* Clean White & Light Gray Color System */
  --bg-body: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --bg-secondary: #f1f5f9;
  --bg-topbar: #0f172a;
  
  /* Brand Accents (Vibrant Red & Rich Navy) */
  --brand-red: #e63946;
  --brand-red-dark: #c1121f;
  --brand-navy: #0f172a;
  --brand-navy-light: #1e293b;
  --brand-accent-amber: #f59e0b;
  --brand-green: #25d366;
  
  /* Borders & Shadows */
  --card-border: 1px solid #e2e8f0;
  --card-border-hover: 1px solid #e63946;
  --card-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  --card-shadow-hover: 0 20px 45px rgba(230, 57, 70, 0.15);
  --header-shadow: 0 4px 25px rgba(15, 23, 42, 0.08);
  
  /* Text Colors */
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  
  /* Badges & Accents */
  --badge-bg: #e63946;
  --badge-text: #ffffff;
  
  /* Typography */
  --font-main: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Radii & Transitions */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition-fast: 0.25s ease;
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  background: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.6;
}

body {
  min-height: 100vh;
  background: var(--bg-body);
  color: var(--text-primary);
  overflow-x: hidden;
  position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--brand-red);
}

/* Container */
.container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Top Announcement / Contact Bar (Ultra-Premium Detail) */
.top-bar {
  background: var(--bg-topbar);
  color: #94a3b8;
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #cbd5e1;
}

.top-bar-item a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
}

.top-bar-item a:hover {
  color: var(--brand-red);
}

/* Sticky White Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: var(--header-shadow);
  margin-bottom: 30px;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-badge {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.3rem;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(230, 57, 70, 0.35);
}

.brand-text h1 {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--brand-navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.brand-text span {
  font-size: 0.73rem;
  color: var(--brand-red);
  letter-spacing: 0.1em;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-item button {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
  position: relative;
}

.nav-item button:hover {
  color: var(--brand-red);
  background: #f8fafc;
}

.nav-item button.active {
  color: var(--brand-red);
  background: #fff5f5;
  border-bottom: 3px solid var(--brand-red);
  border-radius: 4px 4px 0 0;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  color: #ffffff;
  padding: 11px 24px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition-fast);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.3);
  white-space: nowrap;
}

.btn-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(230, 57, 70, 0.45);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--brand-navy);
  font-size: 1.6rem;
  cursor: pointer;
}

/* Page Views Container */
.page-view {
  display: none;
  animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  position: relative;
  z-index: 1;
  padding-bottom: 60px;
}

.page-view.active-page {
  display: block;
}

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

/* Section Header */
.section-header {
  text-align: center;
  margin: 0 auto 45px;
  max-width: 800px;
}

.section-tag {
  display: inline-block;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  color: var(--brand-red);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.7rem;
  font-weight: 900;
  color: var(--brand-navy);
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Glass & Card Containers */
.glass-card {
  background: var(--bg-card);
  border: var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--card-shadow);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.glass-card:hover {
  transform: translateY(-5px);
  border: var(--card-border-hover);
  box-shadow: var(--card-shadow-hover);
}

/* Number Badges */
.badge-number {
  width: 38px;
  height: 38px;
  background: var(--brand-red);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.35);
  flex-shrink: 0;
}

/* Stat Counters */
.stats-banner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.stat-box {
  background: #ffffff;
  border: var(--card-border);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: var(--transition-fast);
  min-width: 0;
  position: relative;
  overflow: hidden;
}

.stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-accent-amber));
}

.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.stat-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--brand-navy);
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Brand OEM Partner Logo Bar */
.brand-partner-bar {
  background: #ffffff;
  border: var(--card-border);
  border-radius: var(--radius-lg);
  padding: 24px 30px;
  margin-bottom: 50px;
  box-shadow: var(--card-shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.partner-title {
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--brand-navy);
  letter-spacing: 0.08em;
}

.partner-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.partner-chip {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-navy);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.partner-chip:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
  background: #fff5f5;
}

/* Hero Section */
.hero-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 40px;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 60px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  padding: 8px 18px;
  border-radius: 50px;
  width: fit-content;
  font-size: 0.9rem;
  color: var(--brand-red);
  font-weight: 700;
}

.hero-title {
  font-size: 3.3rem;
  font-weight: 900;
  line-height: 1.12;
  color: var(--brand-navy);
  letter-spacing: -0.03em;
}

.hero-tagline-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 5px;
}

.tag-chip {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: var(--brand-navy);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: 0 10px 25px rgba(230, 57, 70, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(230, 57, 70, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ffffff;
  color: var(--brand-navy);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid #cbd5e1;
  cursor: pointer;
  box-shadow: var(--card-shadow);
  transition: var(--transition-fast);
}

.btn-secondary:hover {
  background: #f8fafc;
  border-color: var(--brand-navy);
  transform: translateY(-3px);
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 4px solid #ffffff;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: var(--transition-normal);
}

.hero-visual:hover img {
  transform: scale(1.03);
}

/* Floating Overlay Badge on Hero Visual */
.hero-glass-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid #ffffff;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-glass-badge-icon {
  width: 36px;
  height: 36px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.hero-glass-badge-text h4 {
  font-size: 0.9rem;
  color: var(--brand-navy);
  font-weight: 800;
}

.hero-glass-badge-text p {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}

/* Checklist Styling */
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-secondary);
  background: #f8fafc;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid #e2e8f0;
  font-weight: 600;
}

.checklist li svg {
  color: var(--brand-red);
  flex-shrink: 0;
}

/* Vehicle Showcase Box */
.vehicle-showcase-box {
  background: #ffffff;
  border: var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 60px;
  box-shadow: var(--card-shadow);
}

.vehicle-tab-header {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 28px;
  border-bottom: 1px solid #e2e8f0;
}

.v-tab-btn {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: var(--text-secondary);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 10px;
}

.v-tab-btn:hover,
.v-tab-btn.active {
  background: var(--brand-red);
  color: #ffffff;
  border-color: var(--brand-red);
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.v-tab-content {
  display: none;
}

.v-tab-content.active {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

/* Accordion FAQ Component */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  text-align: left;
  color: var(--brand-navy);
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.7;
  display: none;
}

.faq-item.active {
  border-color: var(--brand-red);
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-toggle-icon {
  font-size: 1.4rem;
  color: var(--brand-red);
  transition: var(--transition-fast);
  font-weight: 800;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

/* Contact Page Grid & Form Alignment */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
  width: 100%;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #f8fafc;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.contact-item-text h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--brand-red);
  letter-spacing: 0.05em;
  font-weight: 800;
}

.contact-item-text p, 
.contact-item-text a {
  font-size: 1.02rem;
  color: var(--brand-navy);
  text-decoration: none;
  font-weight: 700;
}

.contact-item-text a:hover {
  color: var(--brand-red);
}

/* Form Controls */
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  min-width: 0;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.form-control {
  width: 100%;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--brand-navy);
  font-family: var(--font-main);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
  box-sizing: border-box;
}

.form-control:focus {
  border-color: var(--brand-red);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
}

select.form-control option {
  background: #ffffff;
  color: var(--brand-navy);
}

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

/* Search & Filter Bar */
.filter-bar-wrapper {
  background: #ffffff;
  border: var(--card-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 35px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.search-input-group {
  position: relative;
  flex: 1;
  min-width: 260px;
}

.search-input-group input {
  width: 100%;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 50px;
  padding: 12px 20px 12px 48px;
  color: var(--brand-navy);
  font-family: var(--font-main);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.search-input-group input:focus {
  border-color: var(--brand-red);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
}

.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.search-results-counter {
  font-size: 0.88rem;
  color: var(--brand-red);
  font-weight: 800;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cat-tab {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: var(--text-secondary);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
}

.cat-tab:hover,
.cat-tab.active {
  background: var(--brand-red);
  color: #ffffff;
  border-color: var(--brand-red);
}

/* Floating Right Vertical Enquiry Tab (Matching sanautomotive.com Reference Screenshot) */
.side-enquiry-tab {
  position: fixed;
  right: 0;
  top: 45%;
  transform: translateY(-50%);
  background: var(--brand-red);
  color: #ffffff;
  padding: 14px 10px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 12px 0 0 12px;
  box-shadow: -4px 10px 25px rgba(230, 57, 70, 0.4);
  cursor: pointer;
  z-index: 998;
  text-decoration: none;
  transition: var(--transition-fast);
}

.side-enquiry-tab:hover {
  background: var(--brand-red-dark);
  padding-right: 14px;
}

/* Deep Corporate Footer */
.site-footer {
  margin-top: 60px;
  background: var(--brand-navy);
  color: #ffffff;
  padding: 50px 0 24px;
}

.footer-content {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 40px;
  margin-bottom: 35px;
}

.footer-brand p {
  color: #94a3b8;
  margin-top: 14px;
  max-width: 380px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-col h4 {
  color: #ffffff;
  margin-bottom: 18px;
  font-weight: 800;
  font-size: 1.05rem;
  border-bottom: 2px solid var(--brand-red);
  width: fit-content;
  padding-bottom: 4px;
}

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

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: var(--transition-fast);
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--brand-red);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  color: #94a3b8;
  font-size: 0.88rem;
}

/* Floating Action Bar */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.25);
  transition: var(--transition-fast);
}

.float-btn-call {
  background: var(--brand-red);
  color: #ffffff;
}

.float-btn-whatsapp {
  background: #25d366;
}

.float-btn-top {
  background: #ffffff;
  color: var(--brand-navy);
  border: 1px solid #cbd5e1;
}

.float-btn:hover {
  transform: scale(1.1);
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
}

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

.modal-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 520px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.3);
}

.modal-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: white;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-wrapper, 
  .grid-3, 
  .grid-4, 
  .stats-banner,
  .contact-grid, 
  .footer-content,
  .v-tab-content.active {
    grid-template-columns: 1fr;
  }

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

  .stats-banner {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: var(--header-shadow);
    padding: 20px;
    flex-direction: column;
  }

  .nav-links.mobile-open {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

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

@media (max-width: 576px) {
  .stats-banner {
    grid-template-columns: 1fr;
  }
  .brand-partner-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .side-enquiry-tab {
    display: none;
  }
  .top-bar-info {
    font-size: 0.75rem;
  }
}
