/********** Template CSS **********/

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');
:root {
  --primary: #4A4A4A;
  --light: #F8F4E3;
  --dark: #4A4A4A;
}



.fw-medium {
  font-weight: 500 !important;
}

.money_for_gold_item_name {
  background-color: #4A4A4A;
  color: #fff;
  padding: 4px 10px;
  font-size: 18px;
  display: inline;
  margin-bottom: 8px;
}

.fw-semi-bold {
  font-weight: 600 !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 2px;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 2px;
  color: #ffffff;
  font-size: 15px;
  text-transform: uppercase;
  outline: none;
  /* background: #134682; */
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: #c6c6c6;
}

@media (max-width: 991.98px) {
  .navbar-dark .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }
}

/* start header */
/* Header Gradient */
.header-gradient {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

/* Logo Animation */
.logo-animation {
  transition: transform 0.3s ease;
}

.logo-animation:hover {
  transform: scale(1.05);
}

/* Custom Navigation Links */
.nav-link-custom {
  position: relative;
  color: #ffffff !important;
  font-weight: 500;
  padding: 1rem 1.5rem !important;
  transition: all 0.3s ease;
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #6c1272;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link-custom:hover {
  color: #6c1272 !important;
}

.nav-link-custom:hover::after {
  width: 80%;
}


/* end header */

/* Mobile Menu Button */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}


/* Collapse Menu */
#navbarCollapse {
  background: transparent !important;
  padding: 0;
}

@media (max-width: 991px) {
  .nav-link-custom {
      padding: 0.8rem 1rem !important;
  }
  
  .nav-link-custom::after {
      display: none;
  }
} 


.booking {
  position: relative;
  margin-top: -100px !important;
  z-index: 1;
}

/*** Section Title ***/



/*** Footer ***/
.newsletter {
  position: relative;
  z-index: 1;
}

.footer {
  position: relative;
  /* margin-top: -110px;
    padding-top: 180px; */
}

.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid #ffffff;
  border-radius: 35px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #ffffff;
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

@media (max-width: 700px) {
  .cookie-wrapper {
    width: 100%;
  }
}

.cookie-wrapper {
  position: fixed;
  bottom: 0px;
  right: 0;
  width: 40%;
  background: #fff;
  padding: 15px 25px 22px;
  transition: right 0.3s ease;
  box-shadow: 0 5px 10px rgb(0, 0, 0);
  z-index: 999;

  @media (max-width: 600px) {
    width: 100%;
  }
}

.cookie-wrapper .show {
  right: 20px;
}

.cookie-wrapper {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.98);
  border-radius: 15px;
  padding: 25px;
  max-width: 500px;
  width: 95%;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  border: 1px solid rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.cookie-wrapper h2 {
  color: #2c3e50;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.cookie-popup p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.cookie-popup a {
  color: #0e4b62;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.cookie-popup a:hover {
  color: #6c1272;
}

.buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-button {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

#acceptBtn {
  background: linear-gradient(135deg, #6c1272 0%, #0e4b62 100%);
  color: white;
}

#declineBtn {
  background: #f5f5f5;
  color: #666;
}

.cookie-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 576px) {
  .cookie-wrapper {
      bottom: 0;
      border-radius: 15px 15px 0 0;
      padding: 20px;
  }
  
  .buttons {
      flex-direction: column;
  }
  
  .cookie-button {
      width: 100%;
  }
} 


.hidden {
  display: none;
}

header i {
  color: #4A4A4A;
  font-size: 32px;
  text-align: center;
}

header h2 {
  /* color: #4A4A4A; */
  font-weight: 500;
  text-align: center;
}

.data {
  text-align: center;
}

.data p a {
  color: #4A4A4A;
  text-decoration: none;
  text-align: center !important;
}

.data p a:hover {
  text-decoration: underline;
}

.buttons {
  padding: 20px 0px;
  text-align: center;
}

.buttons .cookie-button {
  border: 2px solid #4A4A4A;
  color: #fff;
  padding: 8px 0;
  background: #4A4A4A;
  cursor: pointer;
  width: calc(100% / 2 - 10px);
  transition: all 0.5s ease;
  max-width: 150px;
  border-radius: 0;
}

.buttons #acceptBtn:hover {
  background-color: transparent;
  color: #4A4A4A;
}

#declineBtn {
  background-color: #fff;
  color: #4A4A4A;
}

#declineBtn:hover {
  background-color: #4A4A4A;
  color: #fff;
}

/* Footer Style */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #333;
  color: white;
  padding: 1rem;
}

.logo {
  font-size: 1.5rem;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
}

.burger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  height: 21px;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: white;
}

@media (max-width: 578px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    background-color: #333;
  }

  .nav-links li {
    text-align: center;
    margin: 10px 0;
  }

  .burger {
    display: flex;
  }

  .nav-active {
    display: flex;
  }
}

hr {
  margin: 1rem 0;
  border: 1px solid #4A4A4A;

}

#service {
  background: #221b2e;
  color: #fff;
}

#service h2 {
  color: #fff;
}

#service h5 {
  color: #fff;
}

@media (max-width: 768px) {
  .display-3 {
    font-size: 34px;
  }
}

/* #contact {
  background-image: url(../img/blog-5.jpg);
} */





/* new styles  */

:root {
  --color-primary: #1F1F1F;     /* Hlavní - Hluboký grafit */
  --color-accent: #a693ab;      /* Akcentní - Jasně modrá */
  --color-bg: #FAFAFA;          /* Pozadí - Bíle perlová */
  --color-text: #2C2C2C;        /* Text - Tmavě šedá */
  --color-secondary: #C0C0C0;   /* Doplňková - Stříbrná */
}
:root {
  --bg-primary: #F5F5F5;
  --bg-secondary: #E0E0E0;
  --accent: #4A4A4A;
  --text-heading: #212121;
  --text-body: #424242;
}

 
/* Footer Styles */
.footer {
  background-color: var(--color-primary);
  color: white;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent) 50%, transparent 100%);
}

.footer-brand {
  position: relative;
  padding-left: 15px;
}

.footer-logo {
  max-height: 60px;
}

.footer-title {
  color: var(--color-accent);
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-accent);
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
}

.footer-link:hover {
  color: var(--color-accent);
  transform: translateX(3px);
}

.footer-link .material-icons {
  font-size: 16px;
  margin-right: 8px;
  color: var(--color-accent);
}

.contact-info {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.contact-info .material-icons {
  color: var(--color-accent);
  font-size: 20px;
  margin-right: 10px;
  margin-top: 2px;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 30px 0;
}

.copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-pattern {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.03;
  width: 300px;
  height: 300px;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

@media (max-width: 767px) {
  .footer-title {
    margin-top: 1.5rem;
  }
}

/* footer end  */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.hero-content h1 {
  color: var(--text-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-content h2 {
  color: var(--accent);
  font-weight: 500;
}

.hero-content p {
  color: var(--text-body);
  font-size: 1.1rem;
  line-height: 1.7;
}

.car-showcase {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(74, 74, 74, 0.15);
  transition: transform 0.3s ease;

}

.car-showcase:hover {
  transform: translateY(-5px);
}

.car-showcase img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.car-showcase:hover img {
  transform: scale(1.05);
}

.feature-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(74, 74, 74, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--bg-secondary);
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(74, 74, 74, 0.12);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 24px;
}

.cta-button {
  background: var(--accent);
  color: white;
  border-radius: 50px;
  padding: 12px 30px;
  border: none;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: var(--text-heading);
  color: white;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .hero-content h1 {
      font-size: 2.5rem;
  }
  
  .car-showcase img {
      height: 280px;
  }
  
  .feature-card {
      padding: 1.5rem;
      margin-bottom: 1rem;
  }
}
.catalog-section {
  padding: 80px 0;
  background: white;
}

.offers-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.section-title {
  color: var(--text-heading);
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent);
}
.car-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(74, 74, 74, 0.1);
  transition: all 0.3s ease;
  border: 1px solid var(--bg-secondary);
  height: 100%;
}

.car-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(74, 74, 74, 0.15);
}

.car-image {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.car-card:hover .car-image img {
  transform: scale(1.05);
}
.car-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.car-content {
  padding: 1.5rem;
}

.car-title {
  color: var(--text-heading);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.car-description {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.car-specs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  color: var(--accent);
}

.spec-item .material-icons {
  font-size: 16px;
}

.car-cta {
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}

.car-cta:hover {
  background: var(--text-heading);
  color: white;
  transform: translateY(-1px);
}

.offer-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 15px 35px rgba(74, 74, 74, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--bg-secondary);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(74, 74, 74, 0.12);
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--text-heading));
}

.offer-icon {
  width: 70px;
  height: 70px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 28px;
}

.offer-title {
  color: var(--text-heading);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.offer-description {
  line-height: 1.7;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .catalog-section,
  .offers-section {
      padding: 50px 0;
  }
  
  .car-image {
      height: 200px;
  }
  
  .car-content {
      padding: 1.25rem;
  }
  
  .offer-card {
      padding: 2rem;
      margin-bottom: 1.5rem;
  }
}

.reviews-section {
  padding: 80px 0;
  background: white;
}

.top-cars-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.section-title {
  color: var(--text-heading);
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent);
}

.review-card {
  background: var(--bg-primary);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  border: 1px solid var(--bg-secondary);
  transition: all 0.3s ease;
  position: relative;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(74, 74, 74, 0.1);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  gap: 1rem;
}

.customer-avatar {
  width: 50px;
  height: 50px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
}

.customer-info h5 {
  color: var(--text-heading);
  font-weight: 700;
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.customer-car {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 500;
}

.review-stars {
  color: #FFB800;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.review-text {
  font-style: italic;
  line-height: 1.7;
  font-size: 0.95rem;
  position: relative;
}

.review-text::before {
  content: '"';
  font-size: 3rem;
  color: var(--accent);
  position: absolute;
  top: -15px;
  left: -10px;
  opacity: 0.3;
  font-family: serif;
}

.top-car-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(74, 74, 74, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--bg-secondary);
  height: 100%;
}

.top-car-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(74, 74, 74, 0.12);
}

.top-car-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.top-car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.top-car-card:hover .top-car-image img {
  transform: scale(1.05);
}

.top-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #FFB800, #FF8F00);
  color: white;
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}

.top-car-content {
  padding: 1.5rem;
}

.top-car-title {
  color: var(--text-heading);
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.top-car-description {
  color: var(--text-body);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.top-car-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.top-car-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-body);
}

.top-car-features .material-icons {
  color: var(--accent);
  font-size: 18px;
}

@media (max-width: 768px) {
  .reviews-section,
  .top-cars-section {
      padding: 50px 0;
  }
  
  .review-card {
      padding: 1.5rem;
      margin-bottom: 1.5rem;
  }
  
  .review-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
  }
  
  .top-car-image {
      height: 180px;
  }
  
  .top-car-content {
      padding: 1.25rem;
  }
}

.news-section {
  padding: 80px 0;
  background: white;
}

.section-title {
  color: var(--text-heading);
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent);
}

.news-carousel {
  position: relative;
}

.carousel-item {
  padding: 0 15px;
}

.news-card {
  background: var(--bg-primary);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(74, 74, 74, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--bg-secondary);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(74, 74, 74, 0.12);
}

.news-image {
  position: relative;
  overflow: hidden;
  height: 240px;
  background: linear-gradient(135deg, var(--bg-secondary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-image .material-icons {
  font-size: 4rem;
  color: white;
  opacity: 0.8;
}

.news-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.news-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-title {
  color: var(--text-heading);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  line-height: 1.4;
}

.news-description {
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-size: 0.95rem;
}

.news-button {
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.news-button:hover {
  background: var(--text-heading);
  color: white;
  transform: translateY(-1px);
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: var(--accent);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: all 0.3s ease;
}

.carousel-control-prev {
  left: -25px;
}

.carousel-control-next {
  right: -25px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--text-heading);
  transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 20px;
  height: 20px;
  background-size: 100%;
}

.carousel-indicators {
  bottom: -50px;
  margin-bottom: 0;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 6px;
  background-color: var(--bg-secondary);
  border: none;
  opacity: 1;
  transition: all 0.3s ease;
}

.carousel-indicators button.active {
  background-color: var(--accent);
  transform: scale(1.2);
}

.brands-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.brand-tag {
  background: var(--bg-secondary);
  color: var(--accent);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.brand-tag:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .news-section {
      padding: 50px 0;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
      display: none;
  }
  
  .news-image {
      height: 180px;
  }
  
  .news-content {
      padding: 1.25rem;
  }
  
  .brands-showcase {
      gap: 1rem;
      margin-top: 2rem;
  }
}
.contact-form-section {
  padding: 80px 0;
  background: white;
}

.contact-info-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.section-title {
  color: var(--text-heading);
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent);
}

.form-container {
  background: var(--bg-primary);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 15px 35px rgba(74, 74, 74, 0.08);
  border: 1px solid var(--bg-secondary);
}

.form-subtitle {
  color: var(--text-body);
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.form-placeholder {
  background: white;
  border-radius: 15px;
  padding: 3rem;
  text-align: center;
  border: 2px dashed var(--bg-secondary);
  color: var(--text-body);
  font-size: 1.1rem;
  position: relative;
}

.form-placeholder .material-icons {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

.contact-content {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(74, 74, 74, 0.08);
  border: 1px solid var(--bg-secondary);
  height: 100%;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--bg-primary);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(74, 74, 74, 0.1);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.contact-details h6 {
  color: var(--text-heading);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-details p {
  color: var(--text-body);
  margin: 0;
  font-size: 0.95rem;
}

.contact-details a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.contact-details a:hover {
  color: var(--text-heading);
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(74, 74, 74, 0.1);
  margin: 2rem 0;
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
}

.hours-card {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(74, 74, 74, 0.08);
  border: 1px solid var(--bg-secondary);
}

.hours-title {
  color: var(--text-heading);
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--bg-secondary);
}

.hours-item:last-child {
  border-bottom: none;
}

.day {
  font-weight: 600;
  color: var(--text-heading);
}

.time {
  color: var(--text-body);
  font-weight: 500;
}

.closed {
  color: #dc3545;
  font-weight: 600;
}

@media (max-width: 768px) {
  .contact-form-section,
  .contact-info-section {
      padding: 50px 0;
  }
  
  .form-container {
      padding: 2rem;
  }
  
  .contact-card {
      padding: 1.5rem;
      margin-bottom: 2rem;
  }
  
  .contact-item {
      flex-direction: column;
      text-align: center;
      gap: 0.5rem;
  }
  
  .map-container iframe {
      height: 250px;
  }
}
.section-title {
  color: var(--text-heading);
  font-weight: 700;
}

.timeline-item {
  position: relative;
  padding-left: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
}

.timeline-year {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.2rem;
}
.news-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(74, 74, 74, 0.08);
  border: 1px solid var(--bg-secondary);
  height: 100%;
}

.news-image {
  height: 320px;
  overflow: hidden;
  position: relative;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent);
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.news-content {
  padding: 1.5rem;
}

.news-title {
  color: var(--text-heading);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.4;
}

.news-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--accent);
}

.author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.views {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.news-button {
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.news-button:hover {
  background: var(--text-heading);
  color: white;
}