:root {
  --primary-blue: #5A8FCE;
  /* Exact blue from screenshot analysis */
  --accent-orange: #F4B41A;
  --bg-yellow: #FDBE33;
  --dark-grey: #333333;
  --light-grey: #A9A9A9;
  --white: #FFFFFF;
  --font-main: 'Montserrat', sans-serif;
}

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

body {
  font-family: var(--font-main);
  color: var(--dark-grey);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

/* Header */
header {
  background-color: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.main-nav li a {
  display: block;
  padding: 8px 15px;
  margin: 12px 5px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark-grey);
  transition: all 0.3s ease;
  border-radius: 4px;
}

.main-nav li a:hover,
.main-nav li a.active {
  color: var(--white);
  background-color: var(--accent-orange);
}

/* Hero Section */
.hero {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.2;
}

.hero h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 16px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Form Layout */
.form-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 30px;
}

.car-img-left,
.car-img-right {
  position: absolute;
  bottom: -40px;
  width: 350px;
  max-width: 25vw;
  z-index: 1;
}

.car-img-left {
  left: -200px;
}

.car-img-right {
  right: -200px;
}

.main-form {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  max-width: 600px;
  position: relative;
  z-index: 10;
}

.main-form input {
  width: 100%;
  padding: 14px 20px;
  margin-bottom: 12px;
  border: none;
  border-radius: 4px;
  font-family: var(--font-main);
  font-size: 14px;
  background-color: var(--white);
  color: var(--dark-grey);
  text-align: center;
}

.main-form button {
  width: 100%;
  padding: 15px;
  background-color: var(--accent-orange);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.main-form button:hover {
  background-color: #e0a210;
}

/* Video Section */
.video-section {
  max-width: 800px;
  margin: 60px auto 0;
  position: relative;
  z-index: 10;
}

.video-section .section-title {
  color: var(--white);
  font-size: 26px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  margin-bottom: 30px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  background-color: #000;
}

.video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(255, 0, 0, 0.9);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: #ff0000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Sections General */
.section {
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.section-subtitle {
  font-size: 18px;
  margin-bottom: 40px;
  color: #666;
}

/* Advantages inside Hero */
.advantages {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 40px 20px 60px;
  text-align: center;
}

.advantages-container {
  max-width: 1100px;
  margin: 0 auto;
}

.advantages .section-title {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 30px;
}

.advantages h3 {
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 5px;
  color: var(--white);
}

.advantages p,
.advantages b {
  margin-bottom: 15px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

/* Services */
.services-section {
  background: #f9f9f9;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  display: flex;
  align-items: flex-start;
  padding: 20px 0;
  background: transparent;
  border: none;
  box-shadow: none;
  text-align: left;
}

.service-icon {
  font-size: 40px;
  color: var(--primary-blue);
  margin-right: 20px;
  flex-shrink: 0;
}

.service-content h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: var(--dark-grey);
}

.service-content p {
  font-size: 14px;
  color: #555;
}

/* Testimonials */
.testimonials-section {
  background-color: var(--accent-orange);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-emoji {
  background: var(--primary-blue);
  color: #FFF000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 20px;
  color: #444;
}

.testimonial-author {
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
}

/* Contacts Map Section */
.contacts-section {
  position: relative;
  background-color: #f9f9f9;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 500'%3E%3Cpath fill='%23e0e0e0' d='M10 200 h10 v10 h-10 z M30 190 h10 v10 h-10 z M50 180 h10 v10 h-10 z M50 200 h10 v10 h-10 z M70 170 h10 v10 h-10 z M70 190 h10 v10 h-10 z M70 210 h10 v10 h-10 z M90 160 h10 v10 h-10 z M90 180 h10 v10 h-10 z M90 200 h10 v10 h-10 z M90 220 h10 v10 h-10 z M110 170 h10 v10 h-10 z M110 190 h10 v10 h-10 z M110 210 h10 v10 h-10 z M110 230 h10 v10 h-10 z M110 250 h10 v10 h-10 z M130 180 h10 v10 h-10 z M130 200 h10 v10 h-10 z M130 220 h10 v10 h-10 z M130 240 h10 v10 h-10 z M130 260 h10 v10 h-10 z M130 280 h10 v10 h-10 z M150 190 h10 v10 h-10 z M150 210 h10 v10 h-10 z M150 230 h10 v10 h-10 z M150 250 h10 v10 h-10 z M150 270 h10 v10 h-10 z M150 290 h10 v10 h-10 z M170 200 h10 v10 h-10 z M170 220 h10 v10 h-10 z M170 240 h10 v10 h-10 z M170 260 h10 v10 h-10 z M170 280 h10 v10 h-10 z M170 300 h10 v10 h-10 z M190 210 h10 v10 h-10 z M190 230 h10 v10 h-10 z M190 250 h10 v10 h-10 z M190 270 h10 v10 h-10 z M190 290 h10 v10 h-10 z M190 310 h10 v10 h-10 z M210 220 h10 v10 h-10 z M210 240 h10 v10 h-10 z M210 260 h10 v10 h-10 z M210 280 h10 v10 h-10 z M210 300 h10 v10 h-10 z M210 320 h10 v10 h-10 z M230 230 h10 v10 h-10 z M230 250 h10 v10 h-10 z M230 270 h10 v10 h-10 z M230 290 h10 v10 h-10 z M230 310 h10 v10 h-10 z M250 240 h10 v10 h-10 z M250 260 h10 v10 h-10 z M250 280 h10 v10 h-10 z M250 300 h10 v10 h-10 z M270 250 h10 v10 h-10 z M270 270 h10 v10 h-10 z M270 290 h10 v10 h-10 z M290 260 h10 v10 h-10 z M290 280 h10 v10 h-10 z M310 270 h10 v10 h-10 z M400 150 h10 v10 h-10 z M420 140 h10 v10 h-10 z M440 130 h10 v10 h-10 z M460 120 h10 v10 h-10 z M480 110 h10 v10 h-10 z M500 120 h10 v10 h-10 z M520 130 h10 v10 h-10 z M400 170 h10 v10 h-10 z M420 160 h10 v10 h-10 z M440 150 h10 v10 h-10 z M460 140 h10 v10 h-10 z M480 130 h10 v10 h-10 z M500 140 h10 v10 h-10 z M520 150 h10 v10 h-10 z M400 190 h10 v10 h-10 z M420 180 h10 v10 h-10 z M440 170 h10 v10 h-10 z M460 160 h10 v10 h-10 z M480 150 h10 v10 h-10 z M500 160 h10 v10 h-10 z M520 170 h10 v10 h-10 z M400 210 h10 v10 h-10 z M420 200 h10 v10 h-10 z M440 190 h10 v10 h-10 z M460 180 h10 v10 h-10 z M480 170 h10 v10 h-10 z M500 180 h10 v10 h-10 z M520 190 h10 v10 h-10 z M420 220 h10 v10 h-10 z M440 210 h10 v10 h-10 z M460 200 h10 v10 h-10 z M480 190 h10 v10 h-10 z M500 200 h10 v10 h-10 z M520 210 h10 v10 h-10 z M440 230 h10 v10 h-10 z M460 220 h10 v10 h-10 z M480 210 h10 v10 h-10 z M500 220 h10 v10 h-10 z M520 230 h10 v10 h-10 z M460 240 h10 v10 h-10 z M480 230 h10 v10 h-10 z M500 240 h10 v10 h-10 z M480 250 h10 v10 h-10 z M600 200 h10 v10 h-10 z M620 190 h10 v10 h-10 z M640 180 h10 v10 h-10 z M660 190 h10 v10 h-10 z M680 200 h10 v10 h-10 z M600 220 h10 v10 h-10 z M620 210 h10 v10 h-10 z M640 200 h10 v10 h-10 z M660 210 h10 v10 h-10 z M680 220 h10 v10 h-10 z M600 240 h10 v10 h-10 z M620 230 h10 v10 h-10 z M640 220 h10 v10 h-10 z M660 230 h10 v10 h-10 z M680 240 h10 v10 h-10 z M620 250 h10 v10 h-10 z M640 240 h10 v10 h-10 z M660 250 h10 v10 h-10 z M640 260 h10 v10 h-10 z M800 260 h10 v10 h-10 z M820 250 h10 v10 h-10 z M840 260 h10 v10 h-10 z M800 280 h10 v10 h-10 z M820 270 h10 v10 h-10 z M840 280 h10 v10 h-10 z M820 290 h10 v10 h-10 z'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px;
}

.contact-circle {
  background-color: #3D4849;
  color: var(--white);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-circle h3 {
  margin-bottom: 20px;
  font-size: 22px;
  text-transform: uppercase;
}

.contact-circle p {
  margin-bottom: 10px;
  font-size: 16px;
}

.contact-circle .orange-text {
  color: var(--accent-orange);
  font-weight: bold;
}

/* Footer & SEO */
footer {
  background: #222;
  color: #ccc;
  text-align: center;
}

.footer-top {
  padding: 40px 20px;
}

.footer-nav {
  margin-bottom: 20px;
}

.footer-nav a {
  color: #ccc;
  font-weight: bold;
  margin: 0 10px;
  text-transform: uppercase;
}

.seo-cars {
  font-size: 12px;
  color: #777;
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.8;
}

.footer-bottom {
  background: var(--primary-blue);
  color: var(--white);
  padding: 15px 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: var(--white);
  font-size: 16px;
}

.social-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background: var(--white);
  color: var(--primary-blue);
  border-radius: 50%;
  margin: 0 15px;
}

/* Floating Buttons */
.floating-btn {
  position: fixed;
  bottom: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s;
}

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

.btn-phone {
  background-color: var(--primary-blue);
  left: 30px;
}

.btn-up {
  background-color: var(--accent-orange);
  right: 30px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1000px) {

  .car-img-left,
  .car-img-right {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 24px;
  }

  .hero h2 {
    font-size: 18px;
  }

  .main-nav li a {
    padding: 15px 10px;
    font-size: 12px;
  }

  .contact-circle {
    width: 250px;
    height: 250px;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}