﻿/* style.css (All Styles Combined - All Units to Pixels, Focus on Spacing) */

/* --- Meyer Truck Variables --- */
:root {
    --primary-blue: #000066;
    --light-grey-bg: #f0f2f5;
    --hero-text-bg: rgba(240, 242, 245, 0.95);
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #555555;
    --accent-red: #982c2c;
    --border-light: #dddddd;
    --mobile-nav-highlight: #C8102E;

    /* Font Families */
    --font-heading: 'Anton', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --font-button: 'Lato', sans-serif;

    /* Layout Max-width & Padding for Header/Footer */
    --header-footer-max-width: 1170px;
    --header-footer-padding: 20px;
    /* Side padding inside header/footer .container */

    /* Layout Padding for MAIN CONTENT SECTIONS - Desktop */
    --site-padding-desktop: 150px;
    /* Main side gutters for content */
    /* Spacing between major sections */
    --section-vertical-padding-desktop: 80px;
    /* e.g., padding-top/bottom for sections */
    --section-gap-desktop: 50px;
    /* e.g., gap in grids */

    /* Tablet and Mobile fixed paddings */
    --site-padding-tablet: 40px;
    --section-vertical-padding-tablet: 60px;
    --section-gap-tablet: 30px;

    --site-padding-mobile: 15px;
    --section-vertical-padding-mobile: 40px;
    --section-gap-mobile: 20px;
}

/* -------------------------------------------------------------------------- */
/* 1. Global Resets & Defaults - (No Change)
/* -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

nav.footer-nav ul li {
    margin: 30px;
}

.cta-content {
    padding: 20px 0px 0 80px;
    WIDTH: 572PX;
}

.cta-content h3 {
    /* Assuming font, color, and other basic h3 styles are already defined or inherited */
    position: relative;
    /* Allows absolute positioning for the ::after element */
    display: inline-block;
    /* Makes the h3 only as wide as its text content */
    padding-bottom: 8px;
    /* Space between the text and the underline */
    margin-bottom: 20px;
    /* Space below the underline before the next element */
}

.cta-content h3::after {
    content: "";
    /* Required for pseudo-elements */
    position: absolute;
    left: 0;
    /* Align underline to the left of the text */
    bottom: 0;
    /* Place underline at the bottom of the h3's padding box */
    width: 70%;
    /* Makes the underline 70% of the width of "REACH OUT" - adjust as needed */
    height: 5px;
    /* Thickness of the underline - adjust as needed */
    background-color: #000066;
    /* Your primary blue color */
    top: 41px;
}

.welcome-text h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 110px;
    height: 5px;
    background-color: #000066;
    top: 47px;
}

.cta-content p {
    margin-top: 35px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
}

.welcome-text {
    width: 455px;
    margin-top: 0px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border: 0;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--primary-blue);
    outline: 0;
}

a:focus {
    outline: thin dotted;
}

a:hover {
    text-decoration: none;
    outline: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}

pre {
    white-space: pre-wrap;
}

small {
    font-size: 80%;
}

svg:not(:root) {
    overflow: hidden;
}

.clear {
    clear: both;
}

/* -------------------------------------------------------------------------- */
/* 2. Typography - (No Change from previous pixel version)
/* -------------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    margin: 0 0 32px 0;
    padding: 0;
    line-height: 1.1;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--primary-blue);
}

h1.hero-title {
    font-family: var(--font-heading);
    color: var(--primary-blue);
    font-size: 72px;
    line-height: 1.0;
    margin-bottom: 18px;
    text-transform: uppercase;
    text-align: left !important;
}

h2 {
    font-size: 36px;
    line-height: 1.1;
    position: relative;
}

h1 {
    font-size: 48px;
}

h3 {
    font-size: 32px;
    line-height: 1.1;
}

p {
    font-family: var(--font-body);
    font-size: 16px;
    margin: 0 0 0px 0;
    color: var(--primary-red);
}

p.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 36px;
    margin: 0 0 0px 0;
    color: var(--primary-blue);
}

.bold {
    font-weight: 700;
}

.section-subtitle-accent {
    font-family: var(--font-heading);
    color: var(--accent-red);
    text-transform: uppercase;
    margin-bottom: 8px;
    font-size: 20px;
    letter-spacing: 1px;
    line-height: 1.2;
}

p.section-subtitle-accent {}

/* -------------------------------------------------------------------------- */
/* 3. Layout & Helper Classes
/* -------------------------------------------------------------------------- */
.container:not(.container.cf):not(.container.cf *) {
    /* For Header & Footer content constraint */
    max-width: var(--header-footer-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--header-footer-padding);
    padding-right: var(--header-footer-padding);
}

.hero .container,
.welcome-grid,
.cta-map-grid {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Padding for main content sections (applied to the .container WITHIN these sections) */
.hero>.container,
.welcome-section>.container,
.cta-map-section>.container {
    padding-left: 0;
    padding-right: 0;
    max-width: none;
    /* margin-left: auto; */
    /* margin-right: auto; */
}

/* --- Meyer Buttons - (No Change from previous pixel version) --- */
.buttontwo {
    font-family: var(--font-button);
    font-weight: 700;
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 2px;
    text-transform: capitalize;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    text-align: center;
    font-size: 14px;
    letter-spacing: 1px;
}

.buttontwo-header-contact {
    background-color: var(--white);
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    padding: 8px 30px;
    font-size: 13px;
}

.buttontwo-header-contact:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.buttontwo-hero {
    background-color: transparent;
    color: var(--accent-red);
    padding: 16px 25px;
    font-size: 14px;
    border: none;
    box-shadow: none;
    max-width: 476px;
    width: 100%;
    text-align: left;
    background: white;
    text-align: center;
    text-align: left;
}

.buttontwo-hero:hover {
    background-color: var(--accent-red);
    color: var(--white);
    border-color: var(--accent-red);
}

.buttontwo-outline {
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 10px 25px;
    font-size: 14px;
}

.buttontwo-outline:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* -------------------------------------------------------------------------- */
/* 4. Loader - (No Change)
/* -------------------------------------------------------------------------- */
.se-pre-con {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #fff url('../images/loader.gif') center no-repeat;
}

/* -------------------------------------------------------------------------- */
/* 5. Header & Logo
/* -------------------------------------------------------------------------- */
header {
    background-color: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

a.menu-toggle {
    color: white;
}

.header-top-bar {
    padding-top: 6px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-top-bar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.top-bar-contact-details {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-contact-details span,
.top-bar-contact-details a {
    font-family: var(--font-body);
    color: var(--white);
    font-size: 13px;
}

.top-bar-contact-details i {
    margin-right: 5px;
}

.top-bar-contact-details .header-email-icon {
    font-size: 16px;
}

.header-main {}

.container.header-main-content {
    /* This is a .container */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
    padding: 15px !important;
}

.logo.meyer-logo {
    font-family: var(--font-heading);
    font-size: 15px;
    line-height: 1.1;
    text-transform: uppercase;
    text-align: left;
    color: var(--white);
}

.logo.meyer-logo img {
    width: 158px;
}

.logo.meyer-logo .logo-amp {
    font-size: 12px;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-body);
}

/* -------------------------------------------------------------------------- */
/* 6. Contact Information (Non-header) - (No Change)
/* -------------------------------------------------------------------------- */
.contactsnip {
    font-family: var(--font-body);
    font-size: 14px;
}

.contactsnip a {
    color: #555;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

.contactsnip a:hover {
    color: #007bff;
}

.contactsnip i {
    font-size: 18px;
}

/* -------------------------------------------------------------------------- */
/* 7. Primary & Mobile Navigation
/* -------------------------------------------------------------------------- */
nav.primary.main-navigation {
    margin: 0 20px;
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

nav.primary.main-navigation ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 0;
}

nav.primary.main-navigation ul li a {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    font-size: 15px;
    padding: 5px 0;
    transition: color 0.3s ease;
    display: block;
    font-family: "Roboto Condensed", sans-serif !important;
    font-weight: 400;
}

nav.primary.main-navigation ul li a:hover,
nav.primary.main-navigation ul li a.active {
    color: rgba(255, 255, 255, 0.7);
    background: none;
}

nav.primary.main-navigation ul li a i.fa-home {
    font-size: 19px;
}

nav.primary ul li li a {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.4;
    padding: 10px 15px;
    color: var(--white);
    background: #181818;
    display: block;
    text-align: center;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: none;
}

nav.primary ul li li:last-child a {
    border-bottom: none;
}

nav.primary ul li li a:hover {
    background: #848484;
    color: var(--white);
}

nav.primary ul ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #181818;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    min-width: 230px;
    z-index: 1000;
}

nav.primary ul ul ul {
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 230px;
}

nav.primary ul li:hover>ul {
    display: block;
}

nav.primary ul ul li {
    display: block;
    width: 100%;
    position: relative;
    margin: 0;
}

#menu-buttontwotwo {
    display: none;
}

nav.mobile {
    display: none;
}

/* -------------------------------------------------------------------------- */
/* 8. Main Content Sections (Focus on Vertical Spacing)
/* -------------------------------------------------------------------------- */
.hero,
.welcome-section,
.cta-map-section {
    width: 100%;
    /* padding-top: var(--section-vertical-padding-desktop); */
    padding-bottom: var(--section-vertical-padding-desktop);
}

.hero {
    /* Hero might have different specific padding */
    /* padding-top: 100px; */
    /* Example: More top padding for hero */
    padding-bottom: 0;
    /* Example: More bottom padding for hero */
    min-height: auto;
    /* Was 65vh, let content dictate or set fixed px */
    /* min-height: 600px; /* Example fixed height */
    position: relative;
}

.hero:after {
    content: '';
    height: 44px;
    position: absolute;
    right: 0;
    bottom: -20px;
    max-width: 1304px;
    background: #000066;
    width: 100%;
}

.hero-content-wrapper {
    background-image: linear-gradient(rgb(255 255 255 / 80%),
            rgb(255 255 255 / 80%)), url('/siteart/hero.jpeg');
    /* Replace with your background photo */
    padding: 100px 70px 80px;
    /* Was 30px 40px, made square for simplicity */
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-left: auto;
    margin-right: auto;
    background-size: cover
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: var(--section-gap-desktop);
    align-items: center;
    /* margin-top: -35px; */
    background: url('/siteart/bgarea.png');
    /* z-index: -1; */
    position: relative;
    background-size: cover;
}

.welcome-image img {
    border-radius: 5px;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
    transform: scaleX(-1);
    margin-top: -35px;
}

.welcome-buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.cta-map-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--section-gap-desktop);
    align-items: flex-start;
}

.cta-content h3 {
    margin-bottom: 4px;
}

.map-area-wrapper {
    display: flex;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    background-color: var(--white);
    gap: 2px;
    min-height: 380px;
    /* Increased min-height */
}

.map-contact-details-strip {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 25px 20px;
    /* Increased vertical padding */
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    flex-basis: 200px;
    flex-shrink: 0;
    position: relative;
}

.contact-detail-item {
    margin-bottom: 20px;
    /* Increased space */
    /* position: relative; */
}

.contact-detail-item:after {
    content: '';
    border: 1px solid white;
    width: 100%;
    position: absolute;
    display: block;
    left: 0;
    margin-top: 25px;
}

.contact-detail-item:last-child {
    margin-bottom: 0;
}

.contact-detail-item:last-child:after {
    content: none;
}

.map-contact-details-strip i {
    font-size: 28px;
    margin-bottom: 10px;
    display: block;
    COLOR: WHITE;
}

.map-contact-details-strip p {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--white);
    margin-bottom: 0;
    line-height: 1.3;
}

.map-embed-area {
    flex-grow: 1;
    position: relative;
}

.map-embed-area iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 410px;
    /* Match wrapper */
    max-width: 820px;
    width: 100%;
}

/* -------------------------------------------------------------------------- */
/* 9. Slider Specific - (No Change)
/* -------------------------------------------------------------------------- */
.slider {
    overflow: hidden;
}

.slider div {}

.slider img {
    width: 100%;
}

img[data-lazy] {
    background-color: #eee;
}

/* -------------------------------------------------------------------------- */
/* 10. Footer
/* -------------------------------------------------------------------------- */
footer {
    font-family: var(--font-body);
    background-color: var(--primary-blue);
    color: var(--white);
    font-size: 14px;
}

.footer-top {
    padding-top: max(10vw, 80px);
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    max-width: 1100px;
    margin: 0 auto;
}

.footer-top-content {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    text-align: left;
}

.footer-top-content span,
.footer-top-content a {
    color: var(--white);
    font-size: 14px;
}

.footer-top-content i {
    margin-right: 8px;
}

.footer-email-link {
    display: inline-flex;
    align-items: center;
}

.footer-bottom {
    padding-top: 30px;
    padding-bottom: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.footer-nav ul li a {
    font-family: var(--font-button);
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    font-size: 16px;
    transition: color 0.3s ease;
    font-family: "Roboto Condensed", sans-serif !important;
    font-weight: 400;
}

.footer-nav ul li a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.footer-nav ul li a i.fa-home {
    font-size: 18px;
}

.footer-logo.meyer-logo {
    font-family: var(--font-heading);
    font-size: 13px;
    line-height: 1.1;
    text-transform: uppercase;
    text-align: center;
    color: var(--white);
}

.footer-logo.meyer-logo img {
    width: 170px;
}

.footer-logo.meyer-logo .footer-logo-amp {
    font-family: var(--font-body);
    font-size: 19px;
    display: block;
    margin: 2px 0;
    font-weight: normal;
}

.copyright {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #000044;
}

.copyright p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-size: 13px;
}

/* -------------------------------------------------------------------------- */
/* 11. Utility & Active States - (No Change)
/* -------------------------------------------------------------------------- */
nav.primary.main-navigation ul li a.active {
    color: rgba(255, 255, 255, 0.7);
}

/* -------------------------------------------------------------------------- */
/* 12. Media Queries (Adjusting vertical and side paddings)
/* -------------------------------------------------------------------------- */
@media screen and (max-width: 992px) {

    .hero,
    .welcome-section,
    .cta-map-section {
        padding-top: var(--section-vertical-padding-tablet);
        padding-bottom: var(--section-vertical-padding-tablet);
        padding-top: 0;
    }

    .hero {
        padding-top: 0;
        padding-bottom: 0;
    }

    /* Specific hero padding for tablet */
    .hero>.container,
    .welcome-section>.container,
    .cta-map-section>.container {
        padding-left: 0;
        padding-right: 0;
    }

    .container.welcome-grid {
        padding-bottom: 70px;
    }

    .header-top-bar>.container,
    .header-main>.container,
    .footer-top>.container,
    .footer-bottom>.container,
    .copyright>.container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .container.footer-top-content {
        justify-content: center;
    }

    h1.hero-title {
        font-size: 40px;
        text-align: center !important;
    }

    h2 {
        font-size: 32px;
        position: relative;
    }

    .welcome-text h2::after,
    .cta-content h3::after {
        /* Move to the right by 50% of the container width */
        /*  Or specify a width like: 100px;  This is CRUCIAL! */
        /* Offset to the left by 50% of its own width */
        position: absolute;
        /* Crucial: Positions relative to the .container */
        left: 50%;
        /* Position the left edge at the center */
        transform: translateX(-50%);
        /* Shift back to the left by its own width/2 */
        /* --- Add your styling for the pseudo-element here --- */
    }

    h3 {
        font-size: 28px;
    }

    .section-subtitle-accent {
        font-size: 16px;
    }

    .welcome-grid,
    .cta-map-grid {
        gap: var(--section-gap-tablet);
        grid-template-columns: 1fr;
    }

    .map-area-wrapper {
        flex-direction: column;
        min-height: auto;
    }

    /* Allow height to adjust */
    .map-contact-details-strip {
        flex-basis: auto;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        padding: 15px;
        display: flex;
        flex-direction: column;
    }

    .contact-detail-item {
        margin-bottom: 10px;
        /* flex: 1 1 150px; */
        height: unset !important;
        padding:
            12px 0;
    }

    .contact-detail-item:after {
        display: none;
    }

    .map-embed-area iframe {
        height: 300px;
        min-height: 300px;
    }

    .hero-content-wrapper {
        text-align: center;
        padding: 30px;
    }

    .welcome-image {
        order: -1;
        margin: 0 auto 20px auto;
        max-width: 450px;
    }

    .welcome-text,
    .cta-content {
        text-align: center;
        margin: 0 auto;
        padding-left: 0;
        width: 100%;
        padding: 0 20px;
    }

    .welcome-text {
        margin: 0 auto;
    }

    .welcome-text p {
        margin: 0 30px;
    }

    .welcome-buttons {
        justify-content: center;
    }

    .header-main-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .logo.meyer-logo {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
        margin-right: 0;
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    nav.primary.main-navigation {
        order: 2;
        width: 100%;
        justify-content: center;
        margin: 0;
    }

    nav.primary.main-navigation ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .header-main-content .buttontwo-header-contact {
        order: 3;
        margin: 10px auto 0 auto;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-nav ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        flex-direction: column;
    }

    .footer-logo.meyer-logo {
        margin-top: 15px;
    }
}

@media screen and (max-width: 760px) {

    .hero,
    .welcome-section,
    .cta-map-section {
        padding-top: var(--section-vertical-padding-mobile);
        padding-bottom: var(--section-vertical-padding-mobile);
    }

    .hero,
    .welcome-section,
    .cta-map-section {
        padding-top: 0;
    }

    section.welcome-section {
        margin-top: 0 !important;
        padding-top: 0;
        padding-bottom: 15px;
    }

    .hero {
        padding-top: 0;
        padding-bottom: 0;
    }

    /* Specific hero padding for mobile */
    .hero>.container,
    .welcome-section>.container,
    .cta-map-section>.container {
        padding-left: 0;
        padding-right: 0;
    }

    .container.cta-map-grid {}

    .header-top-bar>.container,
    .header-main>.container,
    .footer-top>.container,
    .footer-bottom>.container,
    .copyright>.container {
        padding-left: var(--site-padding-mobile);
        padding-right: var(--site-padding-mobile);
    }

    nav.primary.main-navigation,
    .header-main-content .buttontwo-header-contact {
        display: none !important;
    }

    #menu-buttontwotwo {
        display: block;
        font-size: 24px;
        line-height: normal;
        z-index: 1002;
        background: transparent;
        padding: 0;
        text-align: right;
        margin-left: auto;
    }

    #menu-buttontwotwo a.menu-toggle {
        font-family: var(--font-body);
        color: var(--white);
        text-decoration: none;
        padding: 5px;
        font-weight: normal;
        display: inline-block;
    }

    nav.mobile {
        display: block;
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100%;
        background: #2a2a2a;
        z-index: 1001;
        overflow-y: auto;
        transition: left 0.3s ease-in-out;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    }

    nav.mobile.open {
        left: 0;
    }

    nav.mobile .mobile_top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        margin: 0;
        color: #ccc;
        font-size: 18px;
        font-weight: 700;
        font-family: var(--font-body);
        border-bottom: 1px solid #444;
    }

    nav.mobile .mobile_top .mobile-menu-title {
        color: #f0f0f0;
    }

    nav.mobile .mobile_top a.menu-toggle {
        font-family: Arial, sans-serif;
        padding: 5px 10px;
        font-size: 28px;
        font-weight: bold;
        line-height: 1;
        background: transparent;
        color: #ccc;
        text-decoration: none;
    }

    nav.mobile .mobile_top a.menu-toggle:hover {
        color: #fff;
    }

    nav.mobile ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    nav.mobile ul li {
        border-bottom: 1px solid #383838;
        position: relative;
    }

    nav.mobile ul li:first-child {
        border-top: 1px solid #383838;
    }

    nav.mobile ul li a {
        font-family: var(--font-body);
        font-weight: 400;
        display: block;
        font-size: 16px;
        padding: 14px 20px;
        color: #bbb;
        text-decoration: none;
        border-left: 4px transparent solid;
        text-shadow: none;
        transition: background 0.2s ease, color 0.2s ease, border-left-color 0.2s ease;
    }

    nav.mobile ul li a.active,
    nav.mobile ul li a:hover {
        background: rgba(0, 0, 0, 0.2);
        color: #fff;
        border-left: 4px var(--mobile-nav-highlight) solid;
    }

    nav.mobile ul li a i.fa-home {
        margin-right: 8px;
        width: 20px;
        text-align: center;
    }

    nav.mobile ul li ul.dpdwn-list {
        display: none;
        background: #222;
    }

    nav.mobile ul li ul.dpdwn-list.open {
        display: block;
    }

    nav.mobile ul li ul.dpdwn-list li {
        border-top: 1px solid #333;
        border-bottom: none;
    }

    nav.mobile ul li ul.dpdwn-list li a {
        font-family: var(--font-body);
        font-weight: 400;
        padding-left: 35px;
        font-size: 15px;
        color: #aaa;
    }

    nav.mobile ul li ul.dpdwn-list li a.active,
    nav.mobile ul li ul.dpdwn-list li a:hover {
        background: rgba(0, 0, 0, 0.3);
        color: #fff;
        border-left-color: var(--mobile-nav-highlight);
    }

    nav.mobile ul li .click {
        position: absolute;
        display: block;
        cursor: pointer;
        z-index: 10;
        top: 0;
        right: 0;
        height: 100%;
        padding: 0 20px;
        color: #888;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.2s ease;
    }

    nav.mobile ul li .click.fa-chevron-up {
        transform: rotate(180deg);
    }

    nav.mobile ul li .click:hover {
        color: #fff;
    }

    .nav-footer {
        font-family: var(--font-body);
        color: #666;
        position: relative;
        text-align: center;
        font-size: 13px;
        line-height: 1.4;
        padding: 20px 15px;
        border-top: 1px solid #444;
    }

    nav.mobile ul li a i.fa.round-icon {
        width: 25px;
        height: 25px;
        padding: 0;
        line-height: 25px;
        margin: 0 10px 0 0;
        text-align: center;
        background: #292929;
        border-radius: 50%;
        text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
        display: inline-block;
        vertical-align: middle;
    }

    h1.hero-title {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 26px;
    }

    .section-subtitle-accent {
        font-size: 16px;
    }

    .hero-content-wrapper {
        padding: 20px;
    }

    .buttontwo {
        padding: 8px 15px;
        font-size: 13px;
    }

    .buttontwo-hero {
        padding: 10px 20px;
    }

    .map-contact-details-strip {
        padding: 10px;
        display: flex;
        flex-direction: column;
    }

    .map-contact-details-strip i {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .map-contact-details-strip p {
        font-size: 13px;
    }

    .welcome-grid,
    .cta-map-grid {
        gap: var(--section-gap-mobile);
    }
}

@media screen and (max-width: 480px) {

    .hero,
    .welcome-section,
    .cta-map-section {
        padding-top: calc(var(--section-vertical-padding-mobile) * 0.8);
        padding-bottom: calc(var(--section-vertical-padding-mobile) * 0.8);
    }

    .hero {
        padding-top: 0;
        padding-bottom: 0;
    }

    .hero>.container,
    .welcome-section>.container,
    .cta-map-section>.container {
        padding-left: 0;
        padding-right: 0;
    }

    .header-top-bar>.container,
    .header-main>.container,
    .footer-top>.container,
    .footer-bottom>.container,
    .copyright>.container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .footer-top-content {
        flex-direction: column;
        gap: 10px;
    }

    h1.hero-title {
        font-size: 28px;
    }

    .section-subtitle-accent {
        font-size: 14px;
    }

    .welcome-grid,
    .cta-map-grid {
        gap: calc(var(--section-gap-mobile) * 0.8);
    }

    .hero-content-wrapper {
        padding: 20px;
    }
}

.about-us-content {
    /*  This is where you'll put the styling that applies only to the "About Us" content. */
    /*  Remember to add this to your main style.css file! */
    padding: 6vw 0;
    /* Example: Add padding around the content */
    /* Example, if you have a background color for the section */
    /* background-color: #f9f9f9; */
    max-width: 960px;
    /* Example: Set a maximum width for the content */
    margin: 0 auto;
    /* Centers the content horizontally */
    padding-left: 20px;
    /* Example: Add left side padding */
    padding-right: 20px;
    /* Example: Add right side padding */
    max-width: 1110px !important;
    width: 100%;
}

/* Styling for headings within the about-us-content */
.about-us-content h1 {
    font-size: 3rem;
    /* Larger heading */
    margin-bottom: 20px;
    text-align: center;
    /* Center the main heading */
    text-align: left;
}

.about-us-content h2 {
    font-size: 2rem;
    /* Slightly smaller headings */
    margin-top: 30px;
    /* Spacing from preceding content */
    margin-bottom: 10px;
}

/*  Styling for paragraphs */
.about-us-content p {
    font-size: 1.1rem;
    /* Slightly larger font size */
    line-height: 1.7;
    /* Better readability */
    margin-bottom: 20px;
}

/* Styling for lists (e.g., values) */
.about-us-content ul {
    margin-left: 20px;
    /* Indent the list */
    margin-bottom: 20px;
}

.about-us-content li {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* Styling for links within the content (if needed) */
.about-us-content a {
    color: var(--primary-blue);
    /* Use your primary color */
    text-decoration: underline;
    /* or other link styles */
}

/* Image Styling (Assuming the image is in the markup, you may need to adjust the image path) */
.about-us-content .about-us-image {
    float: right;
    width: 30%;
    /* Adjust as needed */
    margin-left: 20px;
    border-radius: 5px;
    /* Match other image styles or add a shadow */
    margin-bottom: 20px;
    /* Space after the image */
}

/* Clearfix to handle image floats */
.about-us-content::after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive adjustments - important for smaller screens */
@media (max-width: 768px) {
    .about-us-content {
        padding: 20px;
        /* More compact padding on smaller screens */
        padding-left: 15px;
        padding-right: 15px;
    }

    .about-us-content h1 {
        font-size: 2.5rem;
        text-align: center;
    }

    .about-us-content h2 {
        font-size: 1.75rem;
        margin-top: 20px;
    }

    .about-us-content p,
    .about-us-content li {
        font-size: 1rem;
    }

    .about-us-content .about-us-image {
        float: none;
        /* Stack image on small screens */
        width: 100%;
        margin: 0 0 20px 0;
        /* Full width, no margin on the right */
    }
}

.contact-form label {
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
    display: flex !important;
    flex-direction: column;
}

.contact-us-section .container {
    padding: var(--site-padding-desktop);
    max-width: 1440px !important;
    margin: 0 auto;
}

/* Contact Us Page Specific Styles */
.contact-us-section {
    padding: var(--section-vertical-padding-desktop) 0;
    /* Adjust top/bottom padding */
}

.contact-us-section .container {
    /* Add padding to container to handle the content and remove the extra spacing from the header and footer*/
    padding: var(--site-padding-desktop);
    max-width: 1200px;
    margin: 0 auto;
}

.contact-us-section h1 {
    text-align: center;
    margin-bottom: 30px;
}

.contact-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info,
.contact-form {
    padding: 30px;
    border-radius: 5px;
    background-color: var(--light-grey-bg);
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info p,
.contact-info ul li {
    margin-bottom: 10px;
    font-size: 1rem;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info ul li {
    margin-bottom: 15px;
}

.contact-info i {
    margin-right: 8px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-size: 1rem;
}

input.submit-buttontwo {
    width: 100%;
    background: #000066;
    color: white;
    border-radius: 0 !important;
    cursor: pointer;
}

.contact-form textarea {
    resize: vertical;
    /* Allow vertical resizing */
    min-height: 150px;
}

.contact-form buttontwo {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #000044;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-us-grid {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .contact-us-section .container {
        padding: var(--site-padding-tablet);
    }
}

@media (max-width: 480px) {
    .contact-us-section .container {
        padding: var(--site-padding-mobile);
    }

    .contact-info,
    .contact-form {
        padding: 20px;
    }
}

.contact-us-section p {
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: center;
}

/*  Contact Info Styles  */
.contact-info-boxes {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-box {
    background-color: var(--white);
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info-box i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    min-width: 30px;
    text-align: center;
}

.contact-info-box p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
}

.contact-info-box a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.contact-info-box a:hover {
    text-decoration: underline;
}

.contact-info-boxes * {
    text-align: left !important;
}

.contact-info p {
    margin-bottom: 0 !important;
}

.contact-us-section p {
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 30px;
}

.CaptchaPanel {
    DISPLAY: FLEX;
    FLEX-DIRECTION: COLUMN;
    JUSTIFY-CONTENT: CENTER;
    ALIGN-ITEMS: CENTER;
}



@media screen and (min-width: 761px) {

    #menu-buttontwo {
        display: none;
    }
}