/* 
 * WOLF Agricultural Implements - Style Sheet
 * Brand Theme: Industrial Premium
 * Primary: Charcoal Slate (#0F172A), Slate Blue (#1E293B)
 * Accent Cyan: #00B4D8 (Brand Logo Color)
 * Accent Orange: #F77F00 (Machinery Orange)
 * Accent Blue: #023E8A (Mulching Framework)
 */

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

:root {
  --primary-color: #0F172A;
  --secondary-color: #1E293B;
  --accent-cyan: #00B4D8;
  --accent-orange: #F77F00;
  --accent-blue: #023E8A;
  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  --text-dark: #0F172A;
  --text-light: #F8FAFC;
  --text-muted: #64748B;
  --border-color: #E2E8F0;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: clip;
  scroll-behavior: smooth;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--primary-color);
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cyan);
}

/* Background Gradients & Helper Layouts */
.bg-dark-grid {
  background-color: var(--primary-color);
  background-image:
    radial-gradient(at 0% 0%, rgba(0, 180, 216, 0.08) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(247, 127, 0, 0.08) 0px, transparent 50%);
}

.inner-page-banner {
  background: linear-gradient(135deg, #071626 0%, #032e3f 50%, #004959 100%);
  border-bottom: 3px solid var(--accent-cyan);
  position: relative;
  overflow: hidden;
}

.inner-page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(at 15% 15%, rgba(0, 180, 216, 0.2) 0px, transparent 45%),
    radial-gradient(at 85% 85%, rgba(247, 127, 0, 0.1) 0px, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.inner-page-banner .lead {
  color: #cbd5e1 !important;
  /* Extremely readable soft slate gray on dark teal */
}

.inner-page-banner h1,
.inner-page-banner h2,
.inner-page-banner h3 {
  color: #ffffff !important;
  /* Ensure banner title text is clean white */
}

.bg-light-grid {
  background-color: var(--bg-light);
  background-image:
    radial-gradient(at 100% 0%, rgba(0, 180, 216, 0.03) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(247, 127, 0, 0.03) 0px, transparent 50%);
}

/* Top Mini bar */
.top-bar {
  background-color: #0b0f19;
  font-size: 0.85rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.top-bar a:hover {
  color: var(--accent-cyan);
}

/* Sticky Glassmorphic Navbar */
.navbar-custom {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 15px 0;
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1030;
}

.navbar-custom.navbar-scrolled {
  padding: 10px 0;
  background: rgba(15, 23, 42, 0.95);
  box-shadow: var(--shadow-md);
}

.navbar-custom .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-custom .navbar-brand svg {
  height: 40px;
  width: auto;
}

.navbar-custom .brand-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 1.5px;
  color: var(--text-light) !important;
}

.navbar-custom .brand-text span {
  color: var(--accent-cyan);
}

.navbar-custom .nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  padding: 8px 16px !important;
  transition: var(--transition-smooth);
  position: relative;
}

.navbar-custom .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--accent-cyan);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--accent-cyan) !important;
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
  width: 60%;
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 180, 216, 0.25);
}

/* Premium Buttons */
.btn-premium {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 6px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-premium-cyan {
  background-color: var(--accent-cyan);
  color: var(--primary-color);
  border: 2px solid var(--accent-cyan);
}

.btn-premium-cyan:hover {
  background-color: transparent;
  color: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(0, 180, 216, 0.4);
}

.btn-premium-orange {
  background-color: var(--accent-orange);
  color: var(--text-light);
  border: 2px solid var(--accent-orange);
}

.btn-premium-orange:hover {
  background-color: transparent;
  color: var(--accent-orange);
  box-shadow: 0 0 20px rgba(247, 127, 0, 0.4);
}

.btn-premium-outline {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-premium-outline:hover {
  background-color: var(--text-light);
  color: var(--primary-color);
  border-color: var(--text-light);
}

/* Hero Section with Parallax Overlay */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: url('../assets/heroimg.png') no-repeat center center;
  background-size: cover;
  color: var(--text-light);
  padding-top: 30px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 66, 124, 0.8) 0%, rgba(48, 61, 88, 0.6) 1%);
  z-index: 1;

}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
}

.hero-title span {
  color: var(--accent-cyan);
  background: linear-gradient(to right, var(--accent-cyan), var(--accent-orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
}

/* Features/Highlights Cards */
.highlight-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition-smooth);
  height: 100%;
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-cyan);
}

.highlight-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0, 180, 216, 0.1);
  color: var(--accent-cyan);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 25px;
  transition: var(--transition-smooth);
}

.highlight-card:hover .highlight-icon {
  background: var(--accent-cyan);
  color: var(--primary-color);
  transform: scale(1.1) rotate(5deg);
}

/* Product Cards and Showcase layout */
.product-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 180, 216, 0.3);
}

.product-img-wrapper {
  position: relative;
  background-color: #F8FAFC;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 260px;
}

.product-img-wrapper img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.08) rotate(2deg);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary-color);
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 10;
}

.product-badge.cyan {
  background: var(--accent-cyan);
  color: var(--primary-color);
}

.product-badge.orange {
  background: var(--accent-orange);
}

.product-badge.blue {
  background: var(--accent-blue);
}

.product-info {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-spec-preview {
  background: var(--bg-light);
  border-radius: 6px;
  padding: 10px 15px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Product Tabs for English / Hindi Features */
.product-tabs .nav-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--text-muted);
  border: none;
  border-bottom: 2px solid transparent;
  padding: 10px 20px;
  background: transparent;
  transition: var(--transition-smooth);
}

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

.product-tabs .nav-link.active {
  color: var(--accent-cyan);
  border-color: var(--accent-cyan);
}

.feature-list {
  list-style: none;
  padding-left: 0;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.feature-list li::before {
  content: '\F272';
  /* Bootstrap Icon check-circle-fill */
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-cyan);
  font-size: 1.1rem;
}

.feature-list.orange-check li::before {
  color: var(--accent-orange);
}

/* Specifications Table styling */
.table-specs {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.table-specs th {
  background-color: var(--secondary-color);
  color: var(--text-light);
  font-family: 'Outfit', sans-serif;
  padding: 12px 18px;
}

.table-specs td {
  padding: 12px 18px;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
}

.table-specs tr:last-child td {
  border-bottom: none;
}

.table-specs tr:nth-child(even) td {
  background-color: var(--bg-light);
}

/* Product Table Grid Redesign - Card-Grid Form */
.product-grid-wrap {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.product-table-card {
  background: var(--bg-white);
  border: 2px solid #E2E8F0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-table-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-cyan);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.product-table-card .product-img-wrapper {
  background-color: #F8FAFC;
  border-bottom: 2px solid #E2E8F0;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 260px;
  overflow: hidden;
  position: relative;
  transition: var(--transition-smooth);
}

.product-table-card:hover .product-img-wrapper {
  background-color: var(--bg-white);
  border-bottom-color: var(--accent-cyan);
}

.product-table-card .product-img-wrapper img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.product-table-card:hover .product-img-wrapper img {
  transform: scale(1.06) rotate(1deg);
}

.product-table-card .card-body-wrap {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Custom Accordion Trigger Button */
.accordion-custom-btn {
  background-color: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  color: var(--primary-color);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  width: 100%;
  text-align: left;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

.accordion-custom-btn:hover {
  background-color: #F1F5F9;
  border-color: #CBD5E1;
}

.accordion-custom-btn:not(.collapsed) {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-color: rgba(0, 180, 216, 0.05);
  border-color: rgba(0, 180, 216, 0.2);
  color: var(--accent-cyan);
}

.accordion-custom-btn .transition-icon {
  transition: transform 0.3s ease;
  font-size: 0.8rem;
}

.accordion-custom-btn:not(.collapsed) .transition-icon {
  transform: rotate(180deg);
}

.accordion-body-wrap {
  border: 1px solid #E2E8F0;
  border-top: none;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  padding: 24px;
  background-color: var(--bg-white);
}

/* Custom CTA Card styling */
.custom-cta-card {
  background: var(--primary-color) !important;
  border: 2px solid var(--secondary-color) !important;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  height: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.custom-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(at 100% 100%, rgba(0, 180, 216, 0.15) 0px, transparent 50%),
    radial-gradient(at 0% 0%, rgba(247, 127, 0, 0.1) 0px, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.custom-cta-card-content {
  position: relative;
  z-index: 2;
}

@media (max-width: 767.98px) {
  .product-table-card .card-body-wrap {
    padding: 1.75rem;
  }
}

/* Why Choose WOLF Section */
.why-section {
  padding: 100px 0;
}

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

.section-subtitle {
  color: var(--accent-cyan);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
}

/* Floating WhatsApp button */
.btn-floating-green {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-floating-green::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: pulse-ring 1.8s cubic-bezier(0.45, 0, 0, 1) infinite;
}

.btn-floating-green:hover {
  transform: scale(1.1);
  color: white;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Back to Top button */
.back-to-top {
  position: fixed;
  bottom: 90px;
  left: 30px;
  width: 45px;
  height: 45px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-md);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--accent-cyan);
  color: var(--primary-color);
  transform: translateY(-5px);
}

/* Stats Section */
.stat-item {
  text-align: center;
  color: var(--text-light);
  padding: 20px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-cyan);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* Testimonial card */
.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 40px;
  height: 100%;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--accent-cyan);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
}

.author-info h5 {
  margin-bottom: 0px;
  color: var(--text-light);
  font-size: 1rem;
}

.author-info p {
  margin-bottom: 0;
  font-size: 0.85rem;
  color: var(--accent-cyan);
}

/* Dealer Page Progress Roadmap */
.dealer-step {
  position: relative;
  text-align: center;
  padding: 20px;
  z-index: 2;
}

.dealer-step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 4px solid var(--border-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 20px auto;
  position: relative;
  z-index: 2;
  transition: var(--transition-smooth);
}

.dealer-step:hover .dealer-step-number {
  border-color: var(--accent-cyan);
  background: var(--accent-cyan);
  color: var(--primary-color);
  box-shadow: 0 0 15px rgba(0, 180, 216, 0.4);
}

.dealer-roadmap-row {
  position: relative;
  z-index: 1;
}

.dealer-roadmap-row::after {
  content: '';
  position: absolute;
  top: 50px;
  left: 10%;
  right: 10%;
  height: 2px;
  background-color: var(--border-color);
  z-index: -1;
}

/* Gallery Hover Grid */
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-category {
  color: var(--accent-cyan);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 5px;
}

.gallery-title {
  color: var(--text-light);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0px;
}

/* Premium Form Styling */
.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label {
  color: var(--accent-cyan);
}

.form-control,
.form-select {
  border: 1.5px solid #b2c0d2;
  border-radius: 8px;
  padding: 12px 16px;
  transition: var(--transition-smooth);
  font-size: 0.95rem;
}

.form-control.bg-dark,
.form-select.bg-dark {
  border-color: rgba(255, 255, 255, 0.15) !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 0.25rem rgba(0, 180, 216, 0.15);
  color: var(--primary-color);
  outline: 0;
}

/* FAQ Accordion Styling */
.accordion-custom .accordion-item {
  border: 1px solid var(--border-color);
  border-radius: 8px !important;
  margin-bottom: 15px;
  overflow: hidden;
  background: var(--bg-white);
  transition: var(--transition-smooth);
}

.accordion-custom .accordion-item:hover {
  border-color: var(--accent-cyan);
}

.accordion-custom .accordion-button {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--primary-color);
  background: var(--bg-white);
  padding: 20px 25px;
  box-shadow: none;
  transition: var(--transition-smooth);
}

.accordion-custom .accordion-button:not(.collapsed) {
  color: var(--accent-cyan);
  background: rgba(0, 180, 216, 0.02);
}

.accordion-custom .accordion-button::after {
  filter: grayscale(1);
}

.accordion-custom .accordion-button:not(.collapsed)::after {
  filter: none;
}

.accordion-custom .accordion-body {
  padding: 20px 25px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Interactive Map Section */
.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  height: 350px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Contact Info Blocks */
.contact-info-block {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: rgba(0, 180, 216, 0.1);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-text h5 {
  font-size: 1.05rem;
  margin-bottom: 5px;
}

.contact-info-text p {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Search bar header */
.search-bar-wrap {
  position: relative;
  max-width: 600px;
  margin: 0 auto 40px auto;
}

.search-input {
  width: 100%;
  padding: 16px 25px 16px 50px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  font-size: 1.1rem;
}

.search-input:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 180, 216, 0.2);
}

.search-icon-inside {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.2rem;
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .navbar-custom {
    background: rgba(15, 23, 42, 0.98);
  }

  .dealer-roadmap-row::after {
    display: none;
  }

  .dealer-step {
    margin-bottom: 30px;
  }
}

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

  .btn-premium {
    width: 100%;
    margin-bottom: 10px;
  }

  .btn-floating-green {
    width: 50px;
    height: 50px;
    font-size: 26px;
    bottom: 20px;
    right: 20px;
  }

  .back-to-top {
    width: 40px;
    height: 40px;
    font-size: 18px;
    bottom: 70px;
    left: 20px;
  }

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

/* Custom Floating Language Switcher Styling */
.lang-switcher {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5px;
  border-radius: 35px;
  display: flex;
  align-items: center;
  gap: 3px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.lang-switcher:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 10px 20px rgba(0, 180, 216, 0.2);
}

.lang-switcher .lang-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition-smooth);
  outline: none;
}

.lang-switcher .lang-btn:hover {
  color: var(--text-light);
}

.lang-switcher .lang-btn.active {
  background-color: var(--accent-cyan);
  color: var(--primary-color);
  box-shadow: 0 2px 5px rgba(0, 180, 216, 0.3);
}

/* Hide Google Translate top banner, tooltips and highlights */
body,
html {
  top: 0 !important;
  margin-top: 0 !important;
  overflow-x: clip !important;
  max-width: 100% !important;
}

iframe.goog-te-banner-frame,
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
.goog-te-banner,
.goog-te-balloon,
iframe[id*=":1.container"],
iframe[id*=":2.container"],
iframe[id*=":0.container"],
#goog-gt-tt,
.goog-tooltip,
.goog-tooltip:hover {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
}

.goog-text-highlight {
  background-color: transparent !important;
  box-shadow: none !important;
}

/* Mobile responsive language switcher */
@media (max-width: 575.98px) {
  .lang-switcher {
    bottom: 20px;
    left: 20px;
    padding: 4px;
    border-radius: 30px;
  }

  .lang-switcher .lang-btn {
    font-size: 0.85rem;
    padding: 6px 14px;
    border-radius: 20px;
  }
}