* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.header {
    position: fixed;
    width: 100%;
    height: 100px;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 800;
    font-size: 1.6rem;
    color: #020024;
    padding-left: 5px;
    text-decoration: none;
}
.logo-img {
    height: 75px !important;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.header-elements {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.header-elements a {
    text-decoration: none;
    color: #1a2a3a;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.header-elements a:hover {
    color: #1e3c72;
}

.nav-quote-btn {
    background: #1e3c72;
    color: white !important;
    padding: 10px 24px;
    border-radius: 50px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #020024;
    cursor: pointer;
    z-index: 1001;
}

@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }

    .header-elements {
        position: fixed;
        top: 100px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 40px 0;
        gap: 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(15px);
        border-bottom: 2px solid #1e3c72;
    }

    .header-elements.active {
        transform: translateY(0);
    }

    .header-elements a {
        font-size: 1.1rem;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .nav-quote-btn {
        width: 80% !important;
        margin: 10px auto 0 auto !important;
        display: block !important;
        box-sizing: border-box;
    }

    .header-elements {
        padding-bottom: 40px;
    }

    .logo {
        font-size: 1rem;
        gap: 8px;
    }
    
    .logo span {
        max-width: 150px;
        line-height: 1.1;
    }
}

@media (max-width: 480px) {
    .logo span {
        font-size: 1.1rem;
        max-width: 160px;
        letter-spacing: -0.3px;
    }
}



@media (max-width: 768px) {
    .header {
        height: 80px;
    }
    .logo {
        font-size: 1.35rem;
        gap: 10px;
    }
    
    .logo-img {
        height: 60px !important;
    }
    .header-elements {
        top: 80px;
    }
}

.hero-section {
    margin-top: 100px;
    min-height: 80vh;
    width: 100%;
    background: linear-gradient(270deg, #1e3c72 0%, #020024 100%);
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-section.has-image {
    background-image: linear-gradient(270deg, rgba(30, 60, 114, 0.75) 0%, rgba(2, 0, 36, 0.9) 100%), url('https://source.unsplash.com/1600x900/?moving,removals,van,team,uk');
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
}

@media (max-width: 768px) {
    .hero-section {
        margin-top: 80px;
        padding: 60px 5%;
        min-height: 60vh;
    }
}

.hero-text {
    color: white;
    font-size: clamp(2rem, 8vw, 4.5rem);
    line-height: 1.1;
    font-weight: 300;
    margin: 0 0 1.5rem 0;
}

.hero-subtext {
    color: white;
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.4em);
    margin: 0 0 1.5rem 0;
}

.hero-trustline {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 500;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item i {
    color: #4facfe;
    /* Light accent color for icons */
}

@media (max-width: 768px) {
    .hero-trustline {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .trust-item {
        padding: 6px 14px;
        font-size: 0.85rem;
    }
}

.hero-button {
    text-decoration: none;
    width: fit-content;
    padding: 0 2.5rem;
    min-height: 55px;
    background-color: #1e3c72;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: white;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.hero-button:hover {
    background-color: #020024;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.works-section {
    width: 100%;
    min-height: 60vh;
    background-color: #EFEDE8;
    padding: 100px 5%;
}

@media (max-width: 768px) {
    .works-section {
        padding: 50px 5%;
        min-height: auto;
    }
}

.works-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: black;
    margin-bottom: 3rem;
}

.works-title h1 {
    font-size: clamp(2rem, 8vw, 2.5rem);
    margin: 0;
    text-align: center;
}

@media (max-width: 768px) {
    .works-title {
        margin-bottom: 2rem;
    }
}

.works-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 2%;
    gap: 2rem;
    text-align: center;
}

@media (max-width: 992px) {
    .works-steps {
        grid-template-columns: 1fr;
    }
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-icon-container {
    width: 80px;
    height: 80px;
    background: #f0f4f8;
    color: #1e3c72;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .works-steps {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 10px 0;
        position: relative;
    }

    /* Vertical Timeline Line */
    .works-steps::before {
        content: '';
        position: absolute;
        top: 24px;
        bottom: 24px;
        left: 24px;
        width: 2px;
        transform: translateX(-50%);
        background-color: #cbd5e1;
        z-index: 1;
    }

    .step {
        display: grid;
        grid-template-columns: 48px 1fr;
        grid-template-rows: auto auto auto;
        grid-template-areas:
            "icon step-num"
            "icon title"
            "icon desc";
        column-gap: 20px;
        row-gap: 4px;
        text-align: left;
        align-items: start;
        position: relative;
        z-index: 2;
    }

    .step-icon-container {
        grid-area: icon;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        font-size: 1.1rem;
        margin-bottom: 0;
        background: #1e3c72;
        color: white;
        border: 4px solid #EFEDE8;
        /* Cuts timeline cleanly */
    }

    .step h4:nth-of-type(1) {
        grid-area: step-num;
        font-size: 0.8rem;
        color: #1e3c72;
        text-transform: uppercase;
        margin: 0;
        padding-top: 4px;
        letter-spacing: 0.5px;
    }

    .step h4:nth-of-type(2) {
        grid-area: title;
        font-size: 1.1rem;
        color: #020024;
        margin: 0;
        padding-bottom: 2px;
    }

    .step p {
        grid-area: desc;
        font-size: 1rem;
        max-width: 100%;
        line-height: 1.5;
        color: #64748b;
        margin: 0;
    }
}


.step p {
    color: gray;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
}

.service-section {
    margin: 0 auto;
    width: 90%;
    max-width: 1200px;
    padding: 100px 0;
    min-height: 70vh;
}

@media (max-width: 768px) {
    .service-section {
        width: 95%;
        padding: 60px 0;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.service-title {
    font-size: 1.3em;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.service-title a {
    font-size: 1rem;
    color: #1e3c72;
    font-weight: 600;
}

.service-title a:hover {
    color: #020024;
}

.service-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 25px;
    padding-bottom: 30px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(30, 60, 114, 0.5) rgba(0, 0, 0, 0.05);
}

.service-grid::-webkit-scrollbar {
    height: 8px;
}

.service-grid::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.service-grid::-webkit-scrollbar-thumb {
    background: rgba(30, 60, 114, 0.5);
    border-radius: 10px;
}

.service-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(30, 60, 114, 0.8);
}

@media (max-width: 768px) {
    .service-grid {
        gap: 20px;
        padding-bottom: 20px;
        scrollbar-width: none;
    }

    .service-grid::-webkit-scrollbar {
        display: none;
    }

    .service-element {
        flex: 0 0 85vw !important;
    }
}

.service-element {
    flex: 0 0 320px;
    scroll-snap-align: start;
    position: relative;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.service-element:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(30, 60, 114, 0.2);
}

.service-element img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-element:hover img {
    transform: scale(1.1);
}

.service-icon-box {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3c72 0%, #020024 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5rem;
    color: white;
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(2, 0, 36, 0.9) 0%, rgba(2, 0, 36, 0.2) 70%, transparent 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.service-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.service-overlay p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.4;
    margin: 0;
}

.service-quote-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: white;
    color: #020024;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    width: fit-content;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-quote-btn:hover {
    background: #1e3c72;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.why-section {
    background-color: #ffffff;
    padding: 100px 5%;
    width: 100%;
}

.why-title {
    text-align: center;
    margin-bottom: 4rem;
}

.why-title h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
    color: #020024;
    margin-bottom: 1rem;
    font-weight: 600;
}

.why-title p {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    background: #f8fafc;
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 60, 114, 0.1);
}

.why-card i {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 1.5rem;
}

.why-card h3 {
    font-size: 1.3rem;
    color: #020024;
    margin-bottom: 1rem;
    font-weight: 700;
}

.why-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 1100px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-section {
        display: none !important;
    }

    .why-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .why-grid::-webkit-scrollbar {
        display: none;
    }

    .why-card {
        padding: 1.5rem 1rem;
        flex: 0 0 280px;
        scroll-snap-align: start;
        word-wrap: break-word;
    }

    .why-card i {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .why-card h3 {
        font-size: 1.05rem;
        margin-bottom: 0.6rem;
    }

    .why-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

.review-section {
    background: #ffffff;
    min-height: 72vh;
    padding: 8% 0;
}

.review-title h1 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    text-align: center;
    color: #020024;
    font-weight: 300;
    margin-bottom: 3rem;
}

.review-grid {
    margin-left: auto;
    margin-right: auto;
    width: 95%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (min-width: 1200px) {
    .review-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .review-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .review-grid::-webkit-scrollbar {
        display: none;
    }

    .review-element {
        flex: 0 0 85vw;
        max-width: 350px;
        scroll-snap-align: start;
    }
}

.testimonial-container {
    padding: 8% 4% 10% 4%;
    background-color: #ffffff;
    min-height: 80vh;
}

.review-element {
    background: linear-gradient(135deg, #1e3c72 0%, #020024 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-element:hover {
    transform: scale(1.03);
    /* Clean 'pop' effect */
}

.review-quote {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1;
    font-family: serif;
    margin-bottom: -1rem;
}

.review-element p {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    flex: 1;
    /* Pushes the author to the bottom */
}

.review-author {
    color: #1a2a3a;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: auto;
    background: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

/* Call to Action Section */
.cta-section {
    width: 100%;
    padding: 100px 5%;
    background: linear-gradient(135deg, #1e3c72 0%, #020024 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.lll-hero {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: grid;
    place-items: center;
    color: #ffffff;
    text-align: center;
    margin-top: 100px;
    background-image: url("https://images.unsplash.com/photo-1600585154526-990dced4db0d?w=1600&q=80");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .lll-hero {
        margin-top: 80px;
    }
}

.lll-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.lll-hero__content {
    position: relative;
    padding: 0 5%;
    max-width: 900px;
}

.lll-hero__title {
    margin: 0 0 12px 0;
    font-weight: 600;
    font-size: clamp(2rem, 6vw, 3.2rem);
    line-height: 1.1;
}

.lll-hero__subtitle {
    margin: 0 0 28px 0;
    font-weight: 400;
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    opacity: 0.95;
}

.lll-hero__why-mobile {
    display: none;
}

@media (max-width: 768px) {
    .lll-hero__why-mobile {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 1fr;
        gap: 12px;
        margin: 20px 0 25px 0;
        width: 100%;
    }

    .lll-why-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        padding: 12px 10px;
        color: white;
        font-size: 0.9rem;
        font-weight: 500;
        min-height: 60px;
        /* Ensure touch target size */
    }

    .lll-why-item i {
        color: #4facfe;
        font-size: 1.1rem;
    }
}

.lll-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 16px 36px;
    border-radius: 50px;
    background: #1e3c72;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.2px;
    transition: transform .2s ease, background-color .2s ease;
}

.lll-hero__cta:hover {
    transform: translateY(-3px);
    background: #2a5298;
}

.lll-hero__cta:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(30, 60, 114, 0.35);
}

@media (max-width: 992px) {
    .lll-hero {
        min-height: 70vh;
    }
}

@media (max-width: 640px) {
    .lll-hero {
        min-height: auto;
        padding: 100px 0;
    }

    .lll-hero__content {
        padding: 0 6%;
    }

    .lll-hero__title {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
    }

    .lll-hero__subtitle {
        font-size: 1rem;
    }

    .lll-hero__cta {
        padding: 16px 28px;
        font-size: 1.05rem;
    }
}

.cta-content {
    max-width: 800px;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: #cbd5e1;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn.primary-btn {
    background: #ffffff;
    color: #020024;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-btn.primary-btn:hover {
    background: #e2e8f0;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.cta-btn.secondary-btn {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-btn.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 5%;
    }

    .cta-buttons {
        gap: 1rem;
        flex-direction: column;
    }
}

.footer-section {
    background-color: #020024;
    width: 100%;
    min-height: 200px;
}

/* Footer Styles (Minimalist Reference) */
.footer {
    background: linear-gradient(135deg, #1e3c72 0%, #020024 100%);
    color: #ffffff;
    padding: 80px 4% 30px 4%;
}

.footer-container-minimal {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-col-min {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-col-min h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

/* White accent underline */
.footer-col-min h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background-color: #ffffff;
    /* Changed from Neon Green to White */
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
    color: #f0f0f0;
}

.footer-contact-item i {
    font-size: 1.2rem;
    color: #ffffff;
    /* Changed from Neon Green to White */
}

.footer-contact-item a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-contact-item a:hover {
    opacity: 0.8;
}

/* Vertical Divider */
.footer-divider {
    width: 1px;
    height: 120px;
    background-color: rgba(255, 255, 255, 0.1);
    align-self: center;
}

.social-icons-minimal {
    display: flex;
    gap: 20px;
}

.social-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-circle:hover {
    transform: scale(1.15);
    /* Just the 'pop' effect */
}

.footer-bottom-centered {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom-centered p {
    font-size: 0.9rem;
    color: #888;
}

@media (max-width: 768px) {
    .footer-container-minimal {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        text-align: center;
    }

    .footer-col-min {
        width: 100%;
    }

    .footer-divider {
        display: none;
    }

    .footer {
        padding: 60px 5% 30px 5%;
    }
}

.sub-hero {
    margin-top: 100px;
    min-height: 35vh;
    width: 100%;
    background: linear-gradient(270deg, #1e3c72 0%, #020024 100%);
    padding: 60px 4%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

@media (max-width: 768px) {
    .sub-hero {
        margin-top: 80px;
        padding: 40px 4%;
        min-height: 25vh;
    }
}

.sub-hero h1 {
    color: white;
    font-weight: 300;
    font-size: clamp(2rem, 8vw, 2.8rem);
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.sub-hero p {
    color: white;
    font-weight: 300;
    font-size: clamp(0.95rem, 4vw, 1.2rem);
    margin: 0;
    opacity: 0.9;
}

.service-booking {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    max-width: 1200px;
    padding: 5% 0;
    min-height: 70vh;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding-right: 1rem;
}

.service-list-title h1 {
    font-size: 2.5rem;
    color: #444;
    margin-bottom: 2rem;
    font-weight: 300;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: #fdfdfd;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    border: 1px solid #f0f0f0;
    cursor: pointer;
}

.service-item:hover,
.service-item.selected {
    transform: translateX(5px);
    border-color: #1e3c72;
    background: #f4f8ff;
}

.service-item.selected .booking-icon-container {
    background: #1e3c72;
    color: white;
}

.service-item-content {
    flex: 1;
}

.service-item-content h4:first-of-type {
    color: #1e3c72;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1px;
    margin: 0;
}

.service-item-content h4:last-of-type {
    font-size: 1rem;
    margin: 2px 0 0 0;
    color: #333;
}

.service-item-content p {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.booking-icon-container {
    width: 45px;
    height: 45px;
    background: #f0f4f8;
    color: #1e3c72;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.service-item:hover .booking-icon-container {
    background: #1e3c72;
    color: white;
}

.detail-icon-box {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1e3c72 0%, #020024 100%);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 8rem;
    color: white;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

/* Service Detail Page Styles */
.service-detail-section {
    padding: 100px 5%;
    background-color: #ffffff;
}

@media (max-width: 768px) {
    .service-detail-section {
        padding: 60px 5%;
    }
}

.service-detail-section.alt-bg {
    background-color: #fbfbfb;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.service-row.reverse {
    grid-template-columns: 0.9fr 1.1fr;
    direction: ltr;
}

.service-row.reverse .service-image-col {
    order: 2;
}

.service-image-col {
    position: relative;
}

.service-main-img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.service-badge {
    color: #1e3c72;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.service-header {
    font-size: clamp(2rem, 8vw, 3rem);
    color: #020024;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-description {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}

.service-feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #333;
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.service-feature-list li i {
    color: #1e3c72;
    font-size: 1.2rem;
}

.service-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 1.2rem 2.2rem;
    background: linear-gradient(135deg, #1e3c72 0%, #020024 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(2, 0, 36, 0.15);
}

.service-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(2, 0, 36, 0.25);
    background: linear-gradient(135deg, #2a5298 0%, #020024 100%);
}

@media (max-width: 968px) {

    .service-row,
    .service-row.reverse {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .service-row.reverse .service-image-col {
        order: 0;
    }

    .service-feature-list li {
        justify-content: center;
    }

    .service-header {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
    }

    .detail-icon-box {
        font-size: 5rem;
        border-radius: 20px;
    }

    .service-badge {
        font-size: 0.75rem;
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }

    .service-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

.inline-service-img {
    margin: 50px 0;
    text-align: center;
    width: 100%;
}

.inline-service-img img {
    width: 100%;
    max-width: 700px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .inline-service-img {
        margin: 35px 0;
    }

    .inline-service-img img {
        aspect-ratio: 4 / 3;
    }
}

/* Booking Form Styles */
.booking-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.booking-form-title {
    margin-bottom: 2rem;
}

.booking-form-title h2 {
    font-size: 2rem;
    color: #020024;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.booking-form-title p {
    color: #666;
    font-size: 1rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3c72;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(30, 60, 114, 0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #1e3c72 0%, #020024 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(2, 0, 36, 0.2);
}

.submit-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .service-booking {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 40px 0;
    }

    .service-list-title h1 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
        text-align: center;
    }

    .service-list {
        padding-right: 0;
        gap: 0.8rem;
    }

    .service-item {
        padding: 0.8rem 1rem;
        border-radius: 10px;
    }

    .service-item-content h4:last-of-type {
        font-size: 0.95rem;
    }

    .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .booking-form {
        padding: 1.5rem;
        border-radius: 15px;
    }
}

/* About Page Styles */
.about-container {
    max-width: 1200px;
    margin: 100px auto 80px auto;
    padding: 0 4%;
}

@media (max-width: 768px) {
    .about-container {
        margin: 80px auto 40px auto;
    }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    .about-content {
        margin-bottom: 40px;
    }
}

.about-text h2.section-title {
    font-size: clamp(2rem, 8vw, 3rem);
    color: #020024;
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.1;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.about-image img.premium-image {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 100px;
}

@media (max-width: 1100px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.value-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card i {
    font-size: 3rem;
    color: #1e3c72;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #020024;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

.about-mission {
    text-align: center;
    background: #f9f9f9;
    padding: 60px 5%;
    border-radius: 30px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .about-mission {
        padding: 40px 6%;
    }
}

.about-mission h2.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    color: #020024;
    margin-bottom: 1.5rem;
}

.about-mission p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        margin-bottom: 50px;
    }

    .about-text {
        order: 2;
    }

    .about-image {
        order: 1;
    }
}

/* Ethos and Coverage Styles */
.ethos-section {
    margin-bottom: 100px;
}

.ethos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.ethos-item {
    display: flex;
    gap: 25px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.ethos-item:hover {
    transform: translateY(-5px);
}

.ethos-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e3c72;
    opacity: 0.15;
    line-height: 1;
}

.ethos-text-content h3 {
    font-size: 1.3rem;
    color: #1a2a3a;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.ethos-text-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.coverage-section {
    margin-bottom: 100px;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    padding: 80px 4%;
    border-radius: 40px;
}

.coverage-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.coverage-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.coverage-list li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.coverage-list li i {
    color: #1e3c72;
    font-size: 1.2rem;
}

.coverage-map-placeholder {
    height: 350px;
    background: #020024;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 30px 60px rgba(2, 0, 36, 0.15);
}

.pulse-icon {
    font-size: 4rem;
    color: white;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

.coverage-map-placeholder p {
    color: #a0a0a0;
    font-size: 1rem;
    font-weight: 500;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 968px) {
    .ethos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .coverage-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .coverage-list {
        display: inline-block;
        text-align: left;
    }

    .coverage-list li {
        justify-content: flex-start;
        align-items: flex-start;
    }

    .coverage-list li i {
        margin-top: 4px;
    }

    .ethos-item {
        padding: 1.5rem;
    }

    .coverage-section {
        padding: 40px 4%;
    }
}

/* Contact Page Styles */
.contact-page-container {
    max-width: 1200px;
    margin: 100px auto 80px auto;
    padding: 0 4%;
}

@media (max-width: 768px) {
    .contact-page-container {
        margin: 80px auto 40px auto;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    align-items: flex-start;
}

.contact-info-panel h2.section-title {
    font-size: 2.5rem;
    color: #020024;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 3rem;
}

.contact-method-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-method-item {
    display: flex;
    gap: 20px;
    align-items: center;
    /* Better alignment for multi-line text */
}

.method-icon {
    width: 60px;
    height: 60px;
    background: #020024;
    color: white;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0;
}

.method-icon a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.method-icon:hover {
    transform: translateY(-5px);
    background: #1e3c72;
    box-shadow: 0 10px 20px rgba(30, 60, 114, 0.2);
}

.method-details p {
    color: #666;
    margin: 0;
    line-height: 1.5;
    font-size: 1.1rem;
    font-weight: 500;
}

.method-details a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.method-details a:hover {
    color: #1e3c72;
}

.contact-social-section h3 {
    font-size: 1.2rem;
    color: #1a2a3a;
    margin-bottom: 1.5rem;
}

.contact-form-panel .booking-form {
    padding: 3rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.contact-map-section {
    width: 100%;
    margin-top: 100px;
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-info-panel {
        text-align: center;
    }

    .contact-method-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-social-section .social-icons-minimal {
        justify-content: center !important;
    }
}

/* Blog Page Styles */
.blog-container {
    max-width: 1200px;
    margin: 100px auto 80px auto;
    padding: 0 5%;
}

@media (max-width: 768px) {
    .blog-container {
        margin: 80px auto 40px auto;
    }
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 1100px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.blog-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 100, 0.1);
}

.blog-image {
    width: 100%;
    height: 240px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
}

@media (max-width: 768px) {
    .blog-content {
        padding: 1.5rem;
    }
}

.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-meta i {
    color: #1e3c72;
}

.blog-content h3 {
    font-size: 1.5rem;
    color: #020024;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.sticky-actions-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.sticky-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn {
    background-color: #25D366;
}

.call-btn {
    background-color: #1e3c72;
}

.sticky-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .sticky-actions-container {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .sticky-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

.blog-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-read-more {
    text-decoration: none;
    color: #1e3c72;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: #020024;
}

@media (max-width: 480px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.widget-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 3rem;
    padding: 0 5%;
}

#mjq-widget {
    width: 100%;
    max-width: 600px;
    /* Optional: adds a limit to the widget width if it stretches too far */
}

/* Home Service Areas Preview */
.home-areas-preview {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
    background: #f8fafc;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.home-areas-title {
    color: #020024;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

.home-areas-subtitle {
    text-align: center;
    color: #475569;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.home-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.home-area-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.home-area-media iframe {
    width: 100%;
    height: 220px;
    border: 0;
    display: block;
}

.home-area-content {
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.home-area-name {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #020024;
    font-weight: 600;
}

.home-area-name i {
    color: #1e3c72;
}

.home-area-btn {
    background: #1e3c72;
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.home-area-btn:hover {
    background: #2a5298;
    transform: translateY(-2px);
}