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

body {
  font-family: "Avenir", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  color: #333;
}
.dropdown-content .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
/* Top Bar */
.top-bar {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1001;
}

.top-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

.logo-img {
  height: 40px;
  width: auto;
}

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

.phone-link {
  color: #333;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
}

.phone-link:hover {
  color: #e60f04;
}

.btn-reservation {
  background: #71c146;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-reservation:hover {
  background: #5fa037;
}

/* Navigation Bar */
.navbar {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 60px;
  width: 100%;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #e60f04;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: fixed;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  width: 1000px;
  max-width: 90vw;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid #eee;
  overflow: hidden;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-main-section .dropdown-main-link {
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  color: #333 !important;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.3s ease;
  border-bottom: none;
}

.dropdown-main-section .dropdown-main-link:hover {
  color: #e60f04 !important;
}

.dropdown-main-section .dropdown-sub-link {
  font-size: 1rem;
  color: #666 !important;
  text-decoration: none;
  transition: color 0.3s ease;
  border-bottom: none;
}

.dropdown-main-section .dropdown-sub-link:hover {
  color: #e60f04 !important;
}

.dropdown-content {
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.dropdown-section {
  flex: 1;
  padding: 25px 30px;
  border-right: 1px solid #e0e0e0;
  background: white;
  display: flex;
  flex-direction: column;
}

.dropdown-section:last-child {
  border-right: none;
}

.dropdown-main-section {
  justify-content: flex-start;
  align-items: flex-start;
}

.dropdown-section h4 {
  color: #e60f04;
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0 0 15px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0f0f0;
  text-align: left;
}

.dropdown-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-section ul li {
  margin-bottom: 8px;
}

.dropdown-section ul li a {
  color: #555 !important;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 6px 8px;
  border-radius: 6px;
  display: block;
  transition: all 0.2s ease;
  text-align: left;
}

.dropdown-section ul li a:hover {
  background: #f8f9fa;
  color: #e60f04 !important;
  padding-left: 12px;
}

/* Multiple sections in one column */
.dropdown-section h4:not(:first-child) {
  margin-top: 20px;
}

.btn-call {
  background: #71c146;
  color: white !important;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-call:hover {
  background: #5fa037;
}

/* Hero Section */
.hero {
  color: #333;
  padding: 120px 0 80px;
  position: relative;
  display: flex;
  align-items: center;
  background: #f8f9fa;
}

.hero-content {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: stretch;
}

.hero-component {
  display: flex;
  flex-direction: column;
}

.hero-component-1 {
  /* Form and phone component */
}

.hero-component-2 {
  /* Features/benefits component */
}

.hero-component-3 {
  /* Promotional banner component */
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero Component 1: Form and Phone */
.hero-form-phone {
  background: url("/assets/images/hero-main.webp") center/cover no-repeat;
  color: white;
  padding: 25px 80px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.hero-form-phone-content {
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-form-section {
  background: white;
  padding: 30px;
  color: #333;
  border-radius: 12px 12px 0 0;
}

.hero-phone-section-wrapper {
  background: white;
  padding: 20px 30px;
  color: #333;
}

.hero-phone-card {
  background: white;
  padding: 30px;
  color: #333;
  border-radius: 0 0 12px 12px;
}

.hero-form-section h3 {
  font-size: 2.2rem;
  margin-bottom: 8px;
  color: #333;
  font-weight: 900;
  line-height: 1.2;
  text-align: left;
}

.title-underlines {
  display: flex;
  gap: 4px;
  margin-bottom: 30px;
}

.mr-1 {
  margin-right: 4px;
}

.h-1 {
  height: 4px;
}

.w-8 {
  width: 32px;
}

.bg-ewp-ui-bg-brand-accent-one {
  background-color: #e60f04;
}

.bg-yellow {
  background-color: #ffc107;
}

@media (min-width: 768px) {
  .m\:h-1\.5 {
    height: 6px;
  }

  .m\:w-12 {
    width: 48px;
  }
}

.hero-form-section .form-group {
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-form-section .input-wrapper {
  flex: 1.5;
  position: relative;
  min-width: 0;
}

.hero-form-section input {
  width: 100%;
  border: none !important;
  border-radius: 0 !important;
  font-size: 1rem;
  background: transparent !important;
  transition: all 0.3s ease;
  box-shadow: none !important;
}

.hero-form-section input:focus {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  transform: none !important;
  background: transparent !important;
}

.hero-form-section input::placeholder {
  color: transparent;
}

.hero-form-section .floating-label {
  position: absolute;
  left: 10px;
  top: 28px;
  font-size: 0.9rem;
  color: #999;
  pointer-events: none;
  transition: all 0.3s ease;
  transform-origin: left top;
}

.hero-form-section input:focus + .floating-label,
.hero-form-section input:not(:placeholder-shown) + .floating-label {
  transform: translateY(-24px) scale(0.8);
  color: #666;
  font-weight: 500;
}

.hero-form-section .btn {
  flex: 1;
  min-width: 160px;
  margin-top: 0;
  padding: 18px 12px;
  font-size: 0.9rem;
  font-weight: bold;
  border-radius: 25px;
  transition: all 0.3s ease;
  white-space: nowrap;
  background: #71c146;
  color: white;
  border: none;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-form-section .btn:hover {
  background: #5fa037;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(113, 193, 70, 0.3);
}

.hero-phone-divider {
  margin: 25px 0;
  text-align: center;
  position: relative;
}

.hero-phone-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #ddd;
}

.hero-phone-divider span {
  background: rgba(255, 255, 255, 0.98);
  padding: 0 15px;
  color: #666;
  font-size: 0.9rem;
}

.hero-phone-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.hero-phone-text {
  flex: 1;
}

.hero-phone-section h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #333;
  line-height: 1.4;
  font-weight: 600;
  text-align: left;
}

.hero-phone-section .phone-note {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0;
  font-style: italic;
  text-align: left;
}

.hero-phone-section .phone-number {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-phone-section .phone-icon {
  width: 32px;
  height: 32px;
  background: #71c146;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-phone-section .phone-icon svg {
  width: 16px;
  height: 16px;
  fill: white;
}

/* Hero Component 2: Features */
.hero-features {
  background: #f8f9fa;
  color: #333;
  padding: 25px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-features-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  max-width: 1000px;
  width: 100%;
}

.hero-feature-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: left;
  flex: 1;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.hero-feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 0;
  flex-shrink: 0;
  color: #333;
}

.hero-feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-feature-content h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1px;
  font-weight: 700;
  text-align: left;
}

.hero-feature-content p {
  color: #666;
  font-size: 0.85rem;
  line-height: 1.3;
  margin: 0;
  text-align: left;
}

/* Hero Component 3: Promotional Banner */
.hero-promo {
  background: #f8f9fa;
  width: 100%;
  min-height: 250px;
  padding: 0px 80px;
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.promo-left {
  flex: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.promo-right {
  flex: 1;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 30px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
}

.promo-right-content {
  text-align: left;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.promo-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: flex-start;
}

.promo-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.promo-text {
  flex-grow: 1;
}

.promo-right h4 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.promo-right p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 20px;
}

.promo-link {
  background: #71c146;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 25px;
  display: inline-block;
  width: fit-content;
  transition: background-color 0.3s ease;
}

.promo-link:hover {
  background: #5da839;
  text-decoration: none;
}

.reservation-link {
  color: #e60f04;
  text-decoration: none;
  font-weight: 600;
}

.reservation-link:hover {
  text-decoration: underline;
}

.promo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 6px;
}

.hero-promo-placeholder {
  text-align: center;
  color: #666;
  padding: 40px 20px;
}

.hero-promo-placeholder h4 {
  font-size: 1.3rem;
  color: #e60f04;
  margin-bottom: 10px;
}

.hero-promo-placeholder p {
  font-size: 1rem;
  color: #999;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: #71c146;
  color: white;
}

.btn-primary:hover {
  background: #5fa037;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #e60f04;
}

/* CTA Section */
.cta-section {
  position: relative;
  min-height: 500px;
  background: linear-gradient(
      135deg,
      rgba(26, 32, 44, 0.85) 0%,
      rgba(45, 55, 72, 0.85) 50%,
      rgba(74, 85, 104, 0.85) 100%
    ),
    url("https://images.unsplash.com/photo-1612544148747-f82f236d8ed1?q=80&w=1475&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  padding: 80px;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(230, 15, 4, 0.15) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 71, 87, 0.15) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.cta-overlay {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-content {
  text-align: center;
  color: white;
  max-width: 1000px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  background: linear-gradient(135deg, #e60f04, #ff4757);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #e2e8f0;
  font-weight: 400;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.2);
  padding: 15px 25px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.cta-icon {
  font-size: 1.5rem;
}

.cta-phone {
  margin: 40px 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.phone-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  color: #333;
  padding: 25px 50px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 500px;
  border: 2px solid rgba(230, 15, 4, 0.3);
}

.phone-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.3);
  border-color: rgba(230, 15, 4, 0.6);
}

.phone-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e60f04, #c50e03);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.phone-icon svg {
  width: 30px;
  height: 30px;
}

.phone-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.phone-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

.phone-number {
  font-size: 2rem;
  font-weight: 700;
  color: #e60f04;
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone-number:hover {
  color: #c50e03;
}

.phone-availability {
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
}

.cta-guarantee {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-top: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Why Choose Us */
.why-choose-us {
  padding: 80px;
}

.why-choose-us h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #333;
}

.seo-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  padding: 25px;
  background: linear-gradient(135deg, #e60f04, #c50e03);
  border-radius: 15px;
  color: white;
}

.seo-intro p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.seo-intro strong {
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.service-areas {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 15px;
}

.service-areas h3 {
  color: #e60f04;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.area-tag {
  background: #e60f04;
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.area-tag:hover {
  background: #c50e03;
  transform: translateY(-2px);
}

.feature {
  text-align: center;
  padding: 30px 20px;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #333;
}

.feature p {
  color: #666;
}

/* Quote Form */
.quote-form {
  padding: 80px;
  background: #f8f9fa;
}

.quote-form h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #333;
}

.quote-form-content {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e60f04;
}

.form-group textarea {
  resize: vertical;
}

/* Contact Section */
.contact {
  padding: 80px;
}

.contact h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #333;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.contact-item {
  text-align: center;
  padding: 30px;
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.contact-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}

.contact-item p {
  color: #666;
  margin-bottom: 5px;
}

.contact-item a {
  color: #e60f04;
  text-decoration: none;
  font-weight: bold;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 80px;
  border-top: 1px solid #333;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 50px;
}

.footer-section h3 {
  margin-bottom: 25px;
  color: #ffe066;
  font-size: 1.3rem;
  font-weight: 700;
  border-bottom: 2px solid #ffe066;
  padding-bottom: 10px;
}

.footer-section ul {
  list-style: none;
}

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

.footer-section ul li a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.95rem;
}

.footer-section ul li a:hover {
  color: #ffe066;
}

.footer-section p {
  margin-bottom: 12px;
  line-height: 1.6;
  color: #ffffff;
}

.footer-section p a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section p a:hover {
  color: #ffe066;
}

.footer-section p strong a {
  color: #ffe066;
  font-size: 1.2rem;
}

.footer-section p strong a:hover {
  color: #ffd700;
}

.footer-keywords {
  background: transparent;
  padding: 10px 0;
  margin: 20px 0;
  text-align: left;
}

.footer-keywords h4 {
  display: none;
}

.keywords-list {
  display: block;
  line-height: 1.2;
}

.keyword-tag {
  display: inline;
  background: transparent;
  color: #666666;
  padding: 0;
  border-radius: 0;
  font-size: 0.7rem;
  font-weight: 300;
  opacity: 1;
  transition: none;
}

.keyword-tag:hover {
  background: transparent;
  transform: none;
}

.keyword-tag:after {
  content: ", ";
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
  text-align: center;
  color: #cccccc;
}

.footer-bottom a {
  color: #ffe066;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: #ffd700;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .nav-menu {
    gap: 30px;
  }

  .nav-menu a {
    font-size: 0.9rem;
  }
}

/* Mobile Navigation Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 6px;
  width: 36px;
  height: 36px;
  justify-content: center;
  align-items: center;
}

.mobile-phone-icon {
  display: none;
}

.mobile-location-icon {
  display: none;
}

.mobile-menu-toggle span {
  width: 20px;
  height: 3px;
  background: #333;
  margin: 2px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
  transform-origin: center;
}

@media (max-width: 768px) {
  .top-bar-container {
    height: 70px;
    padding: 0 15px;
  }

  .logo-img {
    height: 40px;
  }

  .top-bar-actions {
    gap: 4px;
  }

  .phone-link {
    font-size: 0.8rem;
    display: none;
  }

  .btn-reservation {
    display: none;
  }

  .mobile-phone-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    color: #333;
    width: 36px;
    height: 36px;
    text-decoration: none;
    transition: color 0.3s;
  }

  .mobile-phone-icon:hover {
    color: #e60f04;
  }

  .mobile-phone-icon svg {
    width: 20px;
    height: 20px;
  }

  .mobile-location-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    color: #333;
    width: 36px;
    height: 36px;
    text-decoration: none;
    transition: color 0.3s;
  }

  .mobile-location-icon:hover {
    color: #e60f04;
  }

  .mobile-location-icon svg {
    width: 20px;
    height: 20px;
  }

  /* Mobile navbar styles */
  .navbar {
    top: 70px;
    position: fixed;
    left: -100%;
    width: 80%;
    height: calc(100vh - 70px);
    background: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
  }

  .navbar.mobile-open {
    left: 0;
  }

  .nav-container {
    height: auto;
    padding: 20px 15px;
    flex-direction: column;
  }

  .nav-menu {
    flex-direction: column;
    gap: 0;
    width: 100%;
    align-items: stretch;
    margin: 0;
    padding: 0;
  }

  .nav-menu li {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #eee;
    margin: 0;
    padding: 0;
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu a {
    font-size: 1rem;
    display: block;
    padding: 15px 20px;
    width: 100%;
    box-sizing: border-box;
  }

  /* Hide dropdown arrows on mobile */
  .dropdown-arrow {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  /* Mobile dropdown styles */
  .dropdown {
    position: static;
  }

  .dropdown-menu {
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    box-shadow: none;
    border-radius: 0;
    border: none;
    opacity: 1 !important;
    visibility: visible !important;
    background: #f8f9fa;
    margin: 0;
    padding: 0;
    display: none;
    border-top: 1px solid #ddd;
  }

  .dropdown.active .dropdown-menu {
    display: block !important;
  }

  /* Disable hover on mobile */
  .dropdown:hover .dropdown-menu {
    display: none !important;
  }

  .dropdown-content {
    flex-direction: column;
  }

  /* Show only essential pare-brise services on mobile */
  .dropdown-section.dropdown-main-section {
    display: none;
  }

  .dropdown-section:not(:first-of-type) {
    display: none;
  }

  .dropdown-section {
    border-right: none;
    border-bottom: none;
    padding: 15px 20px;
    margin-bottom: 0;
  }

  .dropdown-section h4 {
    display: none;
  }

  .dropdown-section ul li {
    display: none;
  }

  .dropdown-section ul li:nth-child(1),
  .dropdown-section ul li:nth-child(2),
  .dropdown-section ul li:nth-child(3) {
    display: block;
  }

  .dropdown-section ul li a {
    padding: 12px 0;
    font-size: 1rem;
    display: block;
    border-bottom: 1px solid #eee;
  }

  .dropdown-section ul li:last-child a {
    border-bottom: none;
  }

  .hero {
    padding: 70px 0 40px;
  }

  .hero-content {
    max-width: 100%;
    gap: 20px;
  }

  /* Mobile responsiveness for first section */
  .hero-form-phone {
    padding: 20px 15px;
    min-height: auto;
  }

  .hero-form-phone-content {
    max-width: 100%;
  }

  .hero-form-section h3 {
    font-size: 1.8rem;
    text-align: center;
  }

  .hero-form-section {
    padding: 20px;
    border-radius: 8px 8px 0 0;
  }

  .hero-phone-card {
    padding: 20px;
    border-radius: 0 0 8px 8px;
  }

  .hero-phone-section {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .hero-phone-text h4 {
    text-align: center;
    font-size: 1rem;
  }

  .hero-phone-text .phone-note {
    text-align: center;
  }

  .hero-form-section .form-group {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .hero-form-section .input-wrapper {
    flex: none;
  }

  .hero-form-section .btn {
    flex: none;
    min-width: auto;
    font-size: 1rem;
    padding: 16px 20px;
  }

  .hero-form-section .floating-label {
    top: 24px;
  }

  /* Mobile features section */
  .hero-features {
    padding: 40px 20px;
  }

  .hero-features-container {
    flex-direction: column;
    gap: 30px;
  }

  .hero-feature-item {
    margin-bottom: 0;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .hero-feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0;
  }

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

  .hero-promo {
    min-height: 200px;
    flex-direction: column;
    padding: 40px 20px;
    gap: 20px;
  }

  .promo-left,
  .promo-right {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .top-bar-container {
    height: 60px;
    padding: 0 10px;
  }

  .logo-img {
    height: 30px;
  }

  .btn-reservation {
    padding: 5px 10px;
    font-size: 0.7rem;
  }

  .navbar {
    top: 45px;
  }

  .hero {
    padding: 60px 0 40px;
  }

  .hero-promo {
    padding: 20px 10px;
    min-height: auto;
    flex-direction: column;
  }

  .promo-left,
  .promo-right {
    width: 100%;
  }
}

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

  .hero p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

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

  .services h2,
  .why-choose-us h2,
  .quote-form h2,
  .contact h2 {
    font-size: 2rem;
  }

  .title-underlines {
    justify-content: center;
  }
}

/* Hero Postal Code Custom Select */
.custom-select-wrapper {
  position: relative;
}

.custom-select {
  position: relative;
  width: 100%;
}

.select-display {
  position: relative;
  display: flex;
  align-items: center;
  background: white;
  border: 2px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.select-display:hover {
  border-color: #e60f04;
}

.select-display.open {
  border-color: #e60f04;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

#heroPostalCodeInput {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  background: transparent;
  cursor: pointer;
  text-align: left !important;
  direction: ltr;
  width: 100%;
}

#heroPostalCodeInput::placeholder {
  color: #999;
}

.select-arrow {
  padding: 15px 20px;
  color: #666;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.select-display.open .select-arrow {
  transform: rotate(180deg);
}

.select-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 2px solid #e60f04;
  border-top: none;
  border-radius: 0 0 8px 8px;
  max-height: 250px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}

.select-options.open {
  display: block;
}

.option-group {
  border-bottom: 1px solid #eee;
}

.option-group:last-child {
  border-bottom: none;
}

.option-group-label {
  padding: 10px 15px;
  background: #f8f9fa;
  font-weight: 600;
  color: #333;
  font-size: 14px;
  border-bottom: 1px solid #eee;
}

.option {
  padding: 12px 20px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: none; /* Hidden by default, shown by search */
}

.option.visible {
  display: block;
}

.option:hover {
  background: #f8f9fa;
}

.option.highlighted {
  background: #e60f04;
  color: white;
}

.option.selected {
  background: #e60f04;
  color: white;
  font-weight: 500;
}

/* Show all options initially */
.select-options:not(.searching) .option {
  display: block;
}

/* Hide group labels when no options are visible in that group */
.option-group:not(:has(.option.visible)) .option-group-label {
  display: none;
}

.option-group:not(:has(.option.visible)) {
  display: none;
}

/* Scrollbar styling */
.select-options::-webkit-scrollbar {
  width: 6px;
}

.select-options::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.select-options::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.select-options::-webkit-scrollbar-thumb:hover {
  background: #999;
}

/* Reviews Section */
.reviews {
  padding: 0 80px 80px 80px;
  background: #f8f9fa;
  margin-top: 0;
}

.reviews-header {
  text-align: center;
  margin-bottom: 60px;
}

.reviews-header h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 700;
}

.reviews-rating {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.overall-rating {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 30px;
}

.overall-rating .stars {
  display: flex;
  gap: 2px;
}

.overall-rating .star {
  color: #ffd700;
  font-size: 1.5rem;
}

.rating-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
}

.review-count {
  color: #666;
  font-size: 0.9rem;
}

.reviews-slider-container {
  position: relative;
  margin-bottom: 50px;
  overflow: hidden;
}

.reviews-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 300%;
}

.reviews-page {
  flex: 0 0 33.333%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.reviews-page.active {
  opacity: 1;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 0 20px;
}

/* Special styling for the third page with only 2 reviews */
.reviews-page:last-child .reviews-grid {
  grid-template-columns: 1fr 1fr;
  max-width: 66.666%;
  margin: 0 auto;
  padding: 0 40px;
}

.review-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #e60f04;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
}

.reviewer-details h4 {
  margin: 0 0 5px 0;
  font-size: 1rem;
  color: #333;
  font-weight: 600;
}

.review-stars {
  display: flex;
  gap: 1px;
}

.review-stars .star {
  color: #ffd700;
  font-size: 0.9rem;
}

.review-date {
  color: #999;
  font-size: 0.85rem;
}

.review-content {
  line-height: 1.6;
}

.review-content p {
  margin: 0;
  color: #555;
  font-style: italic;
  font-size: 0.95rem;
}

.reviews-footer {
  text-align: center;
}

.google-reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: #333;
  text-decoration: none;
  padding: 15px 25px;
  border-radius: 8px;
  font-weight: 500;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.google-reviews-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  color: #333;
}

.google-logo {
  width: 20px;
  height: 20px;
}

/* Slider Controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.slider-btn {
  background: #e60f04;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: #c50e03;
  transform: scale(1.1);
}

.slider-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #e60f04;
  transform: scale(1.2);
}

.dot:hover {
  background: #e60f04;
}

/* Mobile responsiveness for reviews */
@media (max-width: 768px) {
  .cta-section,
  .why-choose-us,
  .quote-form,
  .contact,
  .reviews {
    padding: 50px 20px;
  }

  footer {
    padding: 50px 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }

  .footer-keywords {
    padding: 20px;
    margin: 30px 0;
  }

  .keywords-list {
    gap: 8px;
  }

  .keyword-tag {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-subtitle {
    font-size: 1.1rem;
  }

  .cta-features {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
  }

  .cta-feature {
    padding: 12px 20px;
  }

  .phone-container {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px 30px;
  }

  .phone-number {
    font-size: 1.5rem;
  }

  .cta-guarantee {
    font-size: 1rem;
  }

  .seo-intro {
    padding: 20px;
    margin-bottom: 30px;
  }

  .seo-intro p {
    font-size: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }

  .service-areas {
    padding: 20px;
    margin-top: 30px;
  }

  .areas-list {
    gap: 8px;
  }

  .area-tag {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .reviews-header h2 {
    font-size: 2rem;
  }

  .overall-rating {
    flex-direction: column;
    gap: 10px;
    padding: 15px 20px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }

  .reviews-page:last-child .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    padding: 0 10px;
  }

  .slider-controls {
    gap: 20px;
  }

  .slider-btn {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .review-card {
    padding: 20px;
  }

  .reviewer-info {
    gap: 10px;
  }

  .reviewer-avatar {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .review-header {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  /* Mobile slider improvements */
  .reviews-page-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .slider-controls {
    margin-top: 30px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .slider-dots {
    gap: 8px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
}
