/* ==========================================================================
   RentCar Jihlava - Premium Automotive Rental Style System
   ========================================================================== */

:root {
  --bg-primary: #0b0f17;
  --bg-secondary: #121824;
  --bg-card: #192233;
  --bg-card-hover: #202b40;
  --bg-glass: rgba(18, 24, 36, 0.85);

  --accent-gold: #f59e0b;
  --accent-gold-hover: #d97706;
  --accent-blue: #3b82f6;
  --accent-whatsapp: #25d366;
  --accent-whatsapp-hover: #1eaf53;

  --text-main: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --border-light: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(245, 158, 11, 0.3);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --max-width: 1360px;
  --max-width-narrow: 900px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);

  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

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

/* Container Utility (Constrained Max Width for Widescreen & Ultrawide) */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-narrow {
  max-width: var(--max-width-narrow);
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), #d97706);
  color: #0b0f17;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #fbbf24, var(--accent-gold));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-light);
  color: var(--text-main);
}

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

.btn-whatsapp {
  background-color: var(--accent-whatsapp);
  color: #ffffff;
}

.btn-whatsapp:hover {
  background-color: var(--accent-whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-icon {
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: var(--radius-sm);
  background-color: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: var(--accent-whatsapp);
  font-size: 1.25rem;
}

.btn-whatsapp-icon:hover {
  background-color: var(--accent-whatsapp);
  color: #ffffff;
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 15px 30px;
  font-size: 1.05rem;
}

.btn-lg i {
  font-size: 1.15rem;
}

/* Top Announcement Bar */
.top-bar {
  background-color: #070a10;
  border-bottom: 1px solid var(--border-light);
  padding: 8px 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.top-info i, .top-contacts i {
  color: var(--accent-gold);
  margin-right: 4px;
}

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

/* Header & Navigation */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  padding: 14px 0;
}

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

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

/* Real logo image - inverted to white for dark backgrounds */
.header-logo-img {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  transition: opacity 0.2s ease;
}

.header-logo-img:hover {
  opacity: 1;
}

.header-logo-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

/* Keep these for any remaining references */
.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent-gold), #d97706);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b0f17;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.logo-title .highlight {
  color: var(--accent-gold);
}

.logo-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-gold);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 80px 0 100px 0;
  background: radial-gradient(circle at 70% 30%, rgba(37, 99, 235, 0.12), transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.08), transparent 50%),
              var(--bg-primary);
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 30px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid var(--border-accent);
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3.2rem;
  letter-spacing: -1px;
  margin-bottom: 20px;
  background: linear-gradient(180deg, #ffffff 40%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 540px;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--text-main);
}

.hero-feature-item i {
  color: var(--accent-gold);
  font-size: 1.1rem;
}

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

.hero-preview-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

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

.hero-floating-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(18, 24, 36, 0.9);
  backdrop-filter: blur(10px);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
}

.hero-floating-badge i {
  font-size: 1.6rem;
  color: var(--accent-gold);
}

.hero-floating-badge strong {
  display: block;
  font-size: 0.95rem;
}

.hero-floating-badge span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Benefits Section */
.benefits-section {
  padding: 40px 0;
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

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

.benefit-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  padding: 28px 24px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-accent);
  background: var(--bg-card);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Section Header */
.section-header {
  margin-bottom: 50px;
}

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

.section-tag {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent-gold);
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* Catalog Section */
.catalog-section {
  padding: 90px 0;
  background-color: var(--bg-primary);
}

.catalog-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-btn {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #0b0f17;
  font-weight: 600;
}

.catalog-terms-bar {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  margin-bottom: 40px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.95rem;
}

.terms-bar-item i {
  color: var(--accent-gold);
  margin-right: 8px;
}

/* Vehicles Grid */
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 30px;
}

.car-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.car-img-wrapper {
  position: relative;
  height: 220px;
  background-color: #0f141f;
  overflow: hidden;
}

.car-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.car-card:hover .car-img {
  transform: scale(1.05);
}

.car-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(18, 24, 36, 0.85);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffffff;
  border: 1px solid var(--border-light);
  z-index: 2;
}

.car-badge.premium {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.car-badge.popular {
  border-color: #ef4444;
  color: #ef4444;
}

.car-badge.new {
  border-color: #10b981;
  color: #10b981;
}

.car-badge.van {
  border-color: #3b82f6;
  color: #3b82f6;
}

.car-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.car-header {
  margin-bottom: 16px;
}

.car-title {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.car-specs-summary {
  font-size: 0.85rem;
  color: var(--accent-gold);
  font-weight: 600;
}

.car-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.tag i {
  color: var(--accent-gold);
  margin-right: 4px;
}

/* Price Table */
.price-table {
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 24px;
  border: 1px solid var(--border-light);
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border-light);
  font-size: 0.9rem;
}

.price-row:last-child {
  border-bottom: none;
}

.price-label {
  color: var(--text-secondary);
}

.price-val {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #ffffff;
}

.price-val.highlight {
  color: var(--accent-gold);
  font-size: 1.05rem;
}

.price-val small {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.car-footer-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

/* Conditions Section */
.conditions-section {
  padding: 80px 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

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

.condition-box {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 20px;
}

.cond-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: rgba(245, 158, 11, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.5rem;
}

.cond-content h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.cond-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* FAQ Section (Accordion) */
.faq-section {
  padding: 90px 0;
  background-color: var(--bg-primary);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--border-accent);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--accent-gold);
}

.faq-icon {
  color: var(--accent-gold);
  transition: transform 0.3s ease;
  font-size: 1rem;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease-out;
  padding: 0 26px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 26px 24px 26px;
}

.faq-answer p {
  margin-bottom: 12px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* Contact Section */
.contact-section {
  padding: 90px 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 30px;
}

.contact-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contact-card.primary-card {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-md);
}

.contact-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.contact-card-header i {
  font-size: 2rem;
  color: var(--accent-gold);
}

.contact-card-header h3 {
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.badge-d1 {
  display: inline-block;
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent-gold);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
}

.address-line {
  font-size: 1rem;
  margin-bottom: 4px;
}

.opening-hours {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin: 24px 0;
  border: 1px solid var(--border-light);
}

.oh-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed var(--border-light);
  font-size: 0.9rem;
}

.oh-row:last-child {
  border-bottom: none;
}

.contact-buttons-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-direct-info {
  margin-top: 24px;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.info-row i {
  color: var(--accent-gold);
}

/* Footer */
.main-footer {
  background-color: #06090e;
  border-top: 1px solid var(--border-light);
  padding-top: 70px;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-col p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-col p i {
  color: var(--accent-gold);
}

.footer-bottom {
  background-color: #040609;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* Modal Window */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 15, 23, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 580px;
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-lg);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--text-main);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.modal-header-icon {
  font-size: 2.2rem;
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.modal-header h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.modal-header p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.form-group input, .form-group select, .form-group textarea {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

/* Date-picker calendar icon - force pure white on dark background */
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: brightness(0) invert(1);
  cursor: pointer;
  opacity: 0.9;
  width: 18px;
  height: 18px;
  padding: 0;
  transition: opacity 0.2s ease;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-success-msg {
  display: none;
  text-align: center;
  padding: 30px 0;
}

.form-success-msg.active {
  display: block;
}

.success-icon {
  font-size: 3.5rem;
  color: #10b981;
  margin-bottom: 16px;
}

.form-success-msg h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.form-success-msg p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* Responsive Media Queries & Mobile Perfection */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-features {
    align-items: center;
  }

  .hero-buttons {
    justify-content: center;
  }

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

  .conditions-grid, .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }

  .top-bar {
    padding: 6px 0;
    font-size: 0.8rem;
  }

  .hero-section {
    padding: 45px 0 65px 0;
  }

  .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    letter-spacing: -0.5px;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-light);
    flex-direction: column;
    padding: 24px 0;
    gap: 20px;
    display: none;
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.active {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

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

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .vehicles-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .catalog-terms-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 18px;
    gap: 12px;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 18px 18px 18px;
    font-size: 0.9rem;
  }

  .contact-card {
    padding: 24px 18px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .header-logo-img {
    height: 34px;
  }

  .header-logo-sub {
    display: none;
  }

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

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-floating-badge {
    bottom: 12px;
    left: 12px;
    padding: 10px 14px;
    gap: 10px;
  }

  .hero-floating-badge i {
    font-size: 1.2rem;
  }

  .hero-floating-badge strong {
    font-size: 0.85rem;
  }

  .hero-floating-badge span {
    font-size: 0.75rem;
  }

  .catalog-filters {
    gap: 6px;
  }

  .filter-btn {
    padding: 8px 14px;
    font-size: 0.82rem;
  }

  .car-body {
    padding: 18px 14px;
  }

  .car-title {
    font-size: 1.25rem;
  }

  .price-table {
    padding: 12px 14px;
  }

  .price-row {
    font-size: 0.85rem;
  }

  .contact-buttons-row .btn {
    width: 100%;
  }

  .modal-card {
    padding: 24px 16px;
    width: 94%;
  }

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

