/* Hero Section */
.location-hero-route {
    background: linear-gradient(rgba(0,74,153,0.8), rgba(0,74,153,0.8)), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    color: white !important;
    padding: 80px 20px;
    text-align: center;
    width: 100%;
}

.location-hero-route .location-hero-route-container .location-hero-route-content h1 
{ 
    margin-bottom: 10px; 
    color : white !important;
}

.quote-btn {
    background: var(--orange);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
    transition: transform 0.2s;
}

.locations-service-container {
    width: 100%;
    padding: 20px 40px;
}

.location-hero-route-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.location-hero-route-content {
    width: 40%;
}

.location-hero-route-form {
    width: 40%;
    background: white;
    border-radius: 20px;
    padding: 20px;
}

/* Features Grid */
.location-container 
{ 
    /* max-width: 1100px;  */
    /* margin: auto;  */
    padding: 20px 40px; 
}

.feature-grid-small {
    background: var(--light-bg);
    padding: 30px;
    border-left: 5px solid var(--navy-blue);
    border-radius: 4px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.location-cta-container {
    padding: 20px 40px;
}


.location-hero-route {
    position: relative;
    background: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&q=80&w=2000') no-height center/cover no-repeat;
    padding: 60px 0;
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
}


.location-hero-route-form p.field {
    margin-bottom: 0;
}



.location-hero-route-form input.wpcf7-form-control.wpcf7-submit.has-spinner.fh-btn {
    background: none;
    background: #ff6b00;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Inter';
}

/* Subtle dark overlay to pop the text */
.location-hero-route::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0,51,102,0.9) 0%, rgba(0,51,102,0.4) 100%);
    z-index: 1;
}

.location-hero-route-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Left Content Side */
.location-hero-route-content {
    flex: 1;
    text-align: left;
    color: white;
}

.location-hero-route-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.location-hero-route-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    border-left: 3px solid var(--orange);
    padding-left: 15px;
}

/* Right Form Side - Trendy Glassmorphism */
.location-hero-route-form {
    flex: 0 0 420px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px); /* The "Glass" effect */
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.3);
}

.location-hero-route-form h3 {
    color: var(--navy-blue);
    margin-top: 0;
    font-size: 1.5rem;
    text-align: center;
}

/* Quote Button Styling */
.quote-btn {
    background: var(--orange);
    color: white !important;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px; /* Modern pill shape */
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
}

.quote-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 102, 0, 0.4);
}

/* Responsive fixes */
@media (max-width: 991px) {
    .location-hero-route-container { flex-direction: column; text-align: center; }
    .location-hero-route-content { text-align: center; margin-bottom: 40px; }
    .location-hero-route-content h1 { font-size: 2.5rem; }
    .location-hero-route-form { width: 100%; max-width: 500px; }
}


.location-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    background: var(--light-bg);
    padding: 30px;
    border-left: 5px solid var(--navy-blue);
    border-radius: 4px;
}

/* SEO Content Section */
.location-content-section 
{ 
    background: white; 
    width: 100%;
    /* padding: 60px 0;  */
}

.location-content-section h2 
{ 
    color: var(--navy-blue) !important; 
    border-bottom: 2px solid #eee; 
    padding-bottom: 10px; 
}

/* FAQ Schema Section */
.location-faq-section 
{ 
    background: #fff !important; 
    border-top: 1px solid #ddd !important; 
    /* padding: 40px 0;  */
    width: 100%;
}

.location-faq-item 
{ 
    margin-bottom: 20px; 
}

.location-faq-item h4 
{ 
    color: var(--navy-blue) !important; 
    margin-bottom: 5px; 
}