/*
Theme Name: Black and White Limousines
Theme URI: https://blackandwhitelimousines.com/
Author: Black and White Limousines LLC
Author URI: https://blackandwhitelimousines.com/
Description: A custom single-page theme for Black and White Limousines LLC.
Version: 1.0.0
Text Domain: blackandwhitelimousines
*/

:root {
  --bw-black: #287e7d;
  --bw-charcoal: #1f1f1f;
  --bw-silver: #c0c0c0;
  --bw-gray: #8a8a8a;
  --bw-light-gray: #f2f2f2;
  --bw-white: #ffffff;
  --bw-accent: #d9d9d9;
  --bw-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
  --bw-radius: 16px;
  --bw-transition: 200ms ease;
  --bw-max-width: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  color: var(--bw-charcoal);
  background: var(--bw-white);
  line-height: 1.6;
}

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

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

.container {
  width: min(100% - 2.5rem, var(--bw-max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid var(--bw-light-gray);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.branding {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.branding img {
  width: 52px;
  height: 52px;
}

.branding span {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  Color:#fff;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-nav a {
  padding-bottom: 0.35rem;
  border-bottom: 2px solid transparent;
  transition: border-color var(--bw-transition);
  Color:#fff;
}

.site-nav a:hover,
.site-nav a:focus {
  border-color: #fff;
}
.active { border-bottom: 2px solid #fff!important; }

.hero {
  padding: 6rem 0 4rem;
  background: linear-gradient(135deg, #f6f6f6 0%, #ffffff 45%, #e9e9e9 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
  color: var(--bw-black);
}

.hero p {
  font-size: 1.1rem;
  color: var(--bw-gray);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  border: 1px solid var(--bw-black);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all var(--bw-transition);
  background: var(--bw-black);
  color: var(--bw-white);
}

.button.secondary {
  background: transparent;
  color: var(--bw-black);
}

.button:hover,
.button:focus {
  transform: translateY(-2px);
  box-shadow: var(--bw-shadow);
}

.section {
  padding: 4.5rem 0;
}

.section.alt {
  background: var(--bw-light-gray);
}

.section h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 1rem;
  color: var(--bw-black);
}

.section .section-subtitle {
  color: var(--bw-gray);
  max-width: 720px;
}

.card-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--bw-white);
  border-radius: var(--bw-radius);
  padding: 2rem;
  box-shadow: var(--bw-shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.card h3 {
  margin-top: 0;
  font-size: 1.2rem;
}

.card p {
  color: var(--bw-gray);
}

.booking-form {
  /* margin-top: 2rem;
 background: var(--bw-white);
  padding: 2.5rem;
  border-radius: var(--bw-radius);
 box-shadow: var(--bw-shadow);*/
}

.booking-form fieldset {
  border: none;
  padding: 0;
  margin: 0 0 2rem;
}

.booking-form legend {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.booking-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.booking-form input,
.booking-form select {
  width: auto;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  border: 1px solid #d4d4d4;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 1);
}

.booking-form button {
  margin-top: 1rem;
}

.notice {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.notice.success {
  background: #e8f7ee;
  color: #1f5f38;
}

.notice.error {
  background: #fff0f0;
  color: #8a2222;
}

.testimonial {
  font-style: italic;
}

.contact-card {
  display: grid;
  gap: 1rem;
  background: var(--bw-black);
  color: var(--bw-white);
  padding: 2.5rem;
  border-radius: var(--bw-radius);
}

.contact-card a {
  color: var(--bw-white);
}

/* =========================
   FOOTER (DROP-IN REPLACEMENT)
   ========================= */

.site-footer {
    background: #0f0f0f;
    color: #fff;
    padding: 4rem 0 2rem;
}

/* Grid layout */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

/* Headings */
.site-footer h3,
.site-footer h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

/* Text */
.site-footer p {
    color: #bdbdbd;
    line-height: 1.6;
}

/* Links */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-contact a {
    color: #bbb;
    text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #ffffff;
}

/* Social icons */
.footer-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    background: #1c1c1c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-socials a:hover {
    background: #ffffff;
    color: #0f0f0f;
    transform: translateY(-2px);
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 2.5rem;
    padding-top: 1.25rem;
    text-align: center;
    font-size: 0.875rem;
    color: #aaa;
}


/* Contact section */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
}


/* Hamburger */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}
.glass-box { background-color:#112542; }

.glass-inner {
    padding: 40px 80px;
   /* border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 40px rgba(26, 255, 140, 0.25);*/
    color: #eafff3;
    position: relative;
}

.testimonial-five-slider { 
    display: flex;
    gap: 32px; 
}
.testimonial-item-five { width:50%; }


/* Preloader */
#preloader{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:999999;
}

/* Center Box */
#loader-box{
    text-align:center;
    font-family:Arial, sans-serif;
    font-size:22px;
    font-weight:bold;
}

/* Hide */
#preloader.hide{
    display:none;
}


@media (min-width: 800px) {

.ban-web { display:block!important; }
.ban-mob { display:none; }
}




.select-box {
  position: relative;
  width: 200px;
}

/* Remove default arrow */
.select-box select {
  width: 100%;
  padding: 10px 35px 10px 35px;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Arrow */
.select-box::after {
  content: "";
  position: absolute;

  width: 8px;
  height: 8px;

  border-right: 2px solid #333;
  border-bottom: 2px solid #333;

  transform: rotate(45deg);
  pointer-events: none;
}
.arrow1::after {
  width: 8px;
  height: 8px;

  border-right: 2px solid #333;
  border-bottom: 2px solid #333;

  transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 768px) {
  .site-nav {
    display: none;
  }

  .header-inner {
    flex-direction: column;
    gap: 0.75rem;
  }
.testimonial-five-slider { 
    display: flex;
    gap: 32px;
    flex-direction: column;
}
.testimonial-item-five { width:100%; }
  .hero {
    padding: 4rem 0 3rem;
  }
  .header-inner {
    display: flex;
    align-items: flex-start;
  }
 .ban-web { display:none!important; }
.ban-mob { display:block!important; } 
  
  input[type="text"] {  
    width: 100%;
  }
  
  input[type="date"] {  
    width: 100%;
  }
  
  input[type="time"] {  
    width: 100%;
  }
  
  input[type="text"] {  
    width: 100%;
  }
  
  .hamburger {
    display: block;
    color:#ffffff;
    position: fixed;
    top: 30px;
    right: 25px;
  }

  .nav-menu {
    position: absolute;
    top: 98px;
    left: 0;
    background: rgba(0,0,0,0.95);;
    width: 100%;
    flex-direction: column;
    text-align: left;
    display: none;
  }

  .nav-menu a {
    padding: 15px 10px 15px 22px;
    border-top: 1px solid rgba(255,255,255,0.2);
    color:#ffffff;
  }
  
  .site-nav a{
     gap: 0rem;
}
 
   .site-nav {
     gap: 0rem;
}
 
.site-nav a {
    padding-bottom: 15px;
     border-bottom: 0px solid transparent;
     
    }

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