/* Basic reset & variables */
:root {
  --accent: #c88a3a; /* warm gold-ish from screenshot guess */
  --second: #dba253;
  --dark: #111;
  --muted: #666;
  --wrap: 1100px;
  font-family: "Open Sans", Arial, sans-serif;
}

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

a {
  text-decoration: none;
}

.theme-btn {
  background-color: var(--accent);
  padding: 15px 50px;
  color: #fff;
  border: none;
  border-radius: 5px;
  transition: all 0.5s ease;
}
.theme-btn:hover {
  color: #f1f1f1;
  background-color: var(--second);
}
body {
  margin: 0;
  color: #222;
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 40px 20px;
}
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--dark);
}
.main__menu {
  margin: 0;
  padding: 0;
}
.main__menu ul {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0px;
  padding: 10px 0px;
}
.main__menu ul li a {
  color: var(--dark);
  font-size: 18px;
}
.menu-item {
  font-weight: bold;
}
.menu-toggle {
  display: none;
  border: none;
  outline: none;
  background-color: var(--accent);
  color: #fff;
  border-radius: 4px;
  padding: 10px 15px;
}

/* Hero */
.hero {
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 80px 0;
  position: relative;
  height: 60vh;
}
.hero-inner {
  display: flex;
  gap: 40px;
  position: relative;
}
.hero-left {
  flex: 1;
  max-width: 60%;
  display: flex;
  flex-direction: column;
}
.hero-left h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 48px;
  margin: 0 0 20px;
}
.hero-right {
  position: relative;
}
.hero-sub {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  font-size: 24px;
}

/* Booking Form Section */
.content-body {
  min-height: 80vh;
}

/* .header-booking-form {
  position: absolute;
  top: 0;
  right: 0;
} */

.booking-form-section {
  background-color: transparent;
  padding: 20px;
  position: relative;
}

.booking-form-section {
  margin-top: -50px;
}

.booking-form-section .booking-wrapper {
  max-width: 100%;
}

.booking-form-section .booking-form-section-wrap {
  width: 100%;
  min-width: 100%;
}

.booking-form-section-wrap,
.header-booking-form {
  background-color: white;
  color: #111;
  border-radius: 5px;
  display: flex;
  justify-content: center;
}

.booking-form input {
  width: 100%;
  padding: 10px;
  border: 1px solid #dedede;
  border-radius: 5px;
  outline: none;
}

/* About & Services */
.section-header h2 {
  font-size: 32px;
  font-weight: bold;
}
.service-card h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}
.service-card p {
  font-size: 16px;
}
.about-section {
  background: #fff;
  width: 80%;
}

.about-section p {
  font-size: 20px;
}
.service-card {
  background: #fffcf8;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 6px;
  width: 45%;
}

.mockup {
  width: 100%;
}

/* Mockup */
.mockup {
  padding: 60px 0;
}
.mockup-inner {
  display: flex;
  gap: 40px;
  align-items: center;
}
.mockup-right img {
  max-width: 240px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Footer */
.site-footer {
  background: #111;
  color: #fff;
  padding: 40px 0 20px;
}
.footer-widgets {
}
.site-info {
  font-size: 12px;
}

.footer-menu {
  list-style: none;
  padding: 0px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.site-footer a,
.footer-menu a {
  color: #fff;
}

.wp-block-heading {
  margin-bottom: 20px;
}

/* Contact Form Style */
/* ——— EliteRide Contact Form Styling ——— */

.eliteride-contact-wrapper {
  margin: 0;
  font-family: "Inter", sans-serif;
}

.eliteride-form-title {
  font-size: 26px;
  font-weight: 600;
  color: #000;
  font-family: "Montserrat", sans-serif;
}
label {
  width: 100%;
}
/* Input + textarea style */
.eliteride-contact-wrapper input[type="text"],
.eliteride-contact-wrapper input[type="email"],
.eliteride-contact-wrapper textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  margin-bottom: 15px;
  outline: none;
  transition: 0.2s;
  font-family: "Inter", sans-serif;
  background: #fff;
}

/* Focus effect */
.eliteride-contact-wrapper input:focus,
.eliteride-contact-wrapper textarea:focus {
  border-color: #b2b2b2;
}

.eliteride-submit-wrap input[type="submit"] {
  width: 100% !important;
}

/* Textarea height */
.eliteride-contact-wrapper textarea {
  min-height: 110px;
  resize: vertical;
}

/* Submit button */
.eliteride-submit-wrap input[type="submit"] {
  background: var(--accent);
  color: #fff;
  width: 160px;
  padding: 12px 0;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: 0.25s;
  font-family: "Montserrat", sans-serif;
}

/* Hover button */
.eliteride-submit-wrap input[type="submit"]:hover {
  background: var(--accent);
}

/* Remove default CF7 spam styling */
.wpcf7-not-valid-tip {
  color: var(--accent);
  font-size: 13px;
  margin-top: -10px;
  margin-bottom: 10px;
}

.wpcf7 form .wpcf7-response-output {
  border: none;
  padding: 10px 0;
  font-size: 14px;
}

/* Booking Box Wrapper */
.booking-form-section .booking-wrapper {
  box-shadow: none;
}
.booking-wrapper {
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 400px;
  font-family: "Inter", sans-serif;
}

/* Tabs */
.booking-tabs p {
  display: flex;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 20px;
}

.booking-tabs p .tab {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
  color: #777;
}

.booking-tabs p .tab.active {
  color: #000;
  border-bottom: 2px solid #dba253;
}

/* Inputs */
.booking-form input,
.booking-form textarea,
.booking-form select {
  width: 100%;
  padding: 12px 14px;
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  color: #333;
  margin-bottom: 15px;
  box-sizing: border-box;
}

.booking-form textarea {
  height: 80px;
  resize: none;
}

/* Two column layout */
.two-cols {
  display: flex;
  gap: 10px;
}

.wpcf7-spinner {
  display: none !important;
}

/* Submit Button */
.booking-form input[type="submit"] {
  background: #dba253;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none !important;
  cursor: pointer;
  padding: 14px;
  border-radius: 6px;
  transition: 0.3s;
}

.booking-form input[type="submit"]:hover {
  background: #c89047;
}

/* Hidden fields for "By the Hour" */
.hidden {
  display: none;
}

/* Responsive */
@media (max-width: 990px) {
  .hero-inner {
    flex-direction: column;
  }
  .hero-left {
    max-width: 100%;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .menu-toggle {
    display: block;
  }
  .primary-navigation {
    display: none;
  }
  .service-card {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .hero-right {
    width: 100%;
  }
  .wrap {
    padding: 20px;
  }
}

/* Wrapper */
.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

/* Logo */
.logo a {
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  color: #000;
}

/* Desktop Menu */
.main-nav .nav-menu {
  display: flex;
  gap: 35px;
  list-style: none;
  margin-bottom: 0;
}

.main-nav .nav-menu a {
  color: #000;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #fff;
  display: block;
  transition: 0.3s;
}

/* Mobile Menu Hidden Initially */
@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: none;
    z-index: 100;
	  border-top: 1px solid #f2f2f2;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav .nav-menu {
    flex-direction: column;
    gap: 18px;
  }

  .main-nav .nav-menu a {
    font-size: 18px;
    padding: 8px 0;
  }
}

/* Hamburger Animation on open */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
