/* Consolidated Styles for Location Pages */

.page-header h1 {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-header p {
    color: #ffffff !important;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .header-contact {
        padding-left: 60px;
    }
}

.local-content-section p {
    text-align: justify;
    margin-bottom: 22px;
    line-height: 1.8;
    color: #444444; /* Darker, more readable text */
}

.local-content-section h2, 
.local-content-section h3, 
.local-content-section h4 {
    color: #004182; /* Branded Blue for all headings */
    margin-bottom: 20px;
}

/* FAQ Section Styles */
.faq-section .card {
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-section .card-header {
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 15px 20px;
}

.faq-section .card-header:hover {
    background: #f0f4f8;
}

.faq-section .card-header h5 {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 600;
    color: #004182; /* Branded Blue for FAQ questions */
}

.faq-section .card-body {
    padding: 20px;
    background: #fafafa;
    line-height: 1.7;
    color: #555555; /* Slightly lighter than main text but still readable */
}

/* Highlight and Info Boxes */
.highlight-box, .info-card, .feature-card, .service-icon-box, .service-card, .quality-card, .feature-box, .service-box-2, .special-service, .info-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    height: 100%;
    transition: all 0.3s;
    margin-bottom: 20px;
}

.highlight-box:hover, .info-card:hover, .feature-card:hover, .service-icon-box:hover, .service-card:hover, .quality-card:hover, .feature-box:hover, .service-box-2:hover, .special-service:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

/* Specific Variations */
.highlight-box {
    border-left: 5px solid #004182;
    background: #f8f9fa;
}

.info-card {
    background: #f4f8fb;
    border: 1px solid #d1e1ed;
}

.service-card, .feature-box, .service-box-2, .special-service {
    border-top: 5px solid #004182;
}

.service-icon-box {
    border-bottom: 3px solid #004182;
}

.quality-card {
    border-left: 5px solid #004182;
}

.highlight-bar {
    background: #004182;
    color: #fff;
    padding: 15px 25px;
    border-radius: 5px;
    margin-bottom: 25px;
    border-left: 5px solid #e31e24;
    display: block;
}

/* Pille and Badges */
.info-pill, .trust-badge, .badge-success {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 14px;
}

.info-pill {
    background: #fff5f5;
    color: #e31e24;
    border: 1px solid #ffcccc;
}

.trust-badge, .badge-success {
    background: #e9f5ff;
    color: #004182;
}

/* Step Items */
.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.step-number {
    background: #004182;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-weight: bold;
}

/* Lists with Icons */
.list-style-2, .check-list, .feature-list, .icon-list, .service-list {
    margin-top: 20px;
    padding-left: 0;
    list-style: none;
}

.list-style-2 li, .check-list li, .feature-list li, .icon-list li, .service-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
    color: #444444; /* Consistent list text color */
}

.list-style-2 li:before, .check-list li:before, .feature-list li:before, .icon-list li:before, .service-list li:before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #004182;
}

.service-list i {
    color: #004182;
    margin-right: 10px;
}

.icon-list i {
    color: #e31e24;
    margin-right: 12px;
}

/* General Layout helpers */
.bg-grey {
    background: #f9f9f9;
}

.rounded {
    border-radius: 10px !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important;
}

/* Enquiry Form Styles for Location Pages - Premium UI */
.location-form-container {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 65, 130, 0.05);
}

.location-form-container h3 {
    color: #1a237e;
    font-size: 26px;
    margin-bottom: 25px;
    font-weight: 800;
    text-align: center;
    letter-spacing: -0.5px;
}

.location-form-container .form-group {
    margin-bottom: 18px;
}

.location-form-container label {
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 6px;
    display: block;
    font-size: 13px;
    margin-left: 4px;
}

.location-form-container .form-control {
    border: 2px solid #edf2f7;
    border-radius: 12px;
    padding: 12px 16px;
    height: auto;
    font-size: 14px;
    background: #fcfdfe;
    transition: all 0.3s ease;
}

.location-form-container .form-control:focus {
    border-color: #ff9800;
    background: #fff;
    box-shadow: 0 10px 20px rgba(255, 152, 0, 0.1);
    outline: none;
}

.location-form-container .btn-main {
    margin-top: 15px;
    padding: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 15px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff9800, #ff5722);
    border: none;
    box-shadow: 0 10px 20px rgba(255, 152, 0, 0.2);
    transition: all 0.3s ease;
}

.location-form-container .btn-main:hover {
    background: linear-gradient(135deg, #e68900, #ff4500);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 152, 0, 0.3);
}

.location-form-container .error {
    font-size: 11px;
    margin-top: 3px;
    display: block;
    font-weight: 500;
}

@media (max-width: 991px) {
    .faq-section .col-lg-5 {
        margin-top: 40px;
    }
}

