* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", Arial, sans-serif;
    background-color: #ffffff;
    color: #11152b;
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}


/* HEADER / NAVBAR */

.header {
    width: 100%;
    height: 68px;
    background-color: #11152b;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    width: 100%;
    height: 68px;
    padding: 0 4%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 8px 16px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

.logo img {
    height: 100%;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    object-position: center;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 38px;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    position: relative;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    padding: 26px 0;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #d4af37;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 17px;
    width: 0;
    height: 2px;
    background-color: #d4af37;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
}


/* HERO SLIDER */

.hero-slider {
    position: relative;
    width: 100%;
    height: min(88vh, 900px);
    min-height: 620px;
    overflow: hidden;
    background-color: #11152b;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.75s ease, visibility 0.75s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(17, 21, 43, 0.62) 0%,
        rgba(17, 21, 43, 0.20) 28%,
        rgba(17, 21, 43, 0.05) 55%,
        rgba(17, 21, 43, 0.18) 100%
    );
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 92%;
    max-width: 1200px;
    z-index: 3;
    text-align: center;
}

.slide-content h1 {
    display: block;
    margin: 0;
    padding: 16px 26px;
    font-size: clamp(1.8rem, 4vw, 4rem);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #ffffff;
    background: linear-gradient(90deg, rgba(17, 21, 43, 0.82), rgba(17, 21, 43, 0.60));
    border-top: 3px solid #d4af37;
    border-bottom: 3px solid #d4af37;
    border-radius: 2px;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.45);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
    opacity: 0;
    transform: translateY(-26px) scale(0.97);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.slide.active .slide-content h1 {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    background: rgba(17, 21, 43, 0.55);
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.slider-btn:hover {
    background-color: #d4af37;
    color: #11152b;
    border-color: #d4af37;
    transform: translateY(-50%) scale(1.06);
}

.slider-btn.prev { left: 28px; }
.slider-btn.next { right: 28px; }

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.60);
    cursor: pointer;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.dot.active {
    width: 28px;
    border-radius: 10px;
    background-color: #d4af37;
}


/* SECTION HEADING */

.section-heading {
    text-align: center;
    margin-bottom: 45px;
}

.section-heading span {
    display: block;
    margin-bottom: 8px;
    color: #d4af37;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-heading h2 {
    color: #11152b;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    font-weight: 700;
}


/* PORTFOLIO */

.portfolio {
    width: 100%;
    padding: 90px 6%;
    background-color: #ffffff;
}

.portfolio-grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.portfolio-card {
    min-height: 210px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background-color: #ffffff;
    border: 1px solid rgba(17, 21, 43, 0.10);
    border-radius: 6px;
    box-shadow: 0 12px 35px rgba(17, 21, 43, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-7px);
    border-color: rgba(212, 175, 55, 0.55);
    box-shadow: 0 18px 45px rgba(17, 21, 43, 0.13);
}

.portfolio-card img {
    width: 100%;
    max-width: 200px;
    max-height: 100px;
    object-fit: contain;
}

.portfolio-card-name {
    color: #11152b;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.02em;
}


/* TESTIMONIALS */

.testimonials {
    width: 100%;
    padding: 90px 6%;
    background: linear-gradient(135deg, #11152b 0%, #19153a 55%, #24174a 100%);
}

.testimonials .section-heading h2 { color: #ffffff; }
.testimonials .section-heading span { color: #d4af37; }

.testimonial-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}

.testimonial {
    padding: 30px;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
}

.testimonial p {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    font-weight: 700;
    color: #d4af37;
    font-size: 14px;
}

.testimonial-meta {
    margin-top: 4px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
}


/* LOCATION */

.location {
    width: 100%;
    padding: 90px 6%;
    background-color: #f7f7f9;
}

.map-container {
    width: 100%;
    max-width: 1200px;
    min-height: 400px;
    margin: 0 auto;
    background-color: #e9e9ed;
    border-radius: 6px;
    overflow: hidden;
}


/* VISITOR COUNTER */

.visitor-counter {
    width: 100%;
    padding: 55px 6%;
    text-align: center;
    background: linear-gradient(135deg, #11152b, #351a58);
}

.counter-content span {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.visitor-number {
    color: #d4af37;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: 2px;
}


/* FOOTER */

.footer {
    width: 100%;
    padding-top: 50px;
    background-color: #0b0d1c;
    color: #ffffff;
}

.footer-logo {
    width: 130px;
    display: flex;
    align-items: center;
}

.footer-logo img {
    width: 92px;
    height: 45px;
    object-fit: contain;
    mix-blend-mode: normal;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.social-links a:hover { color: #d4af37; }

.footer-bottom {
    padding: 20px 6%;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.50);
    font-size: 12px;
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 6% 40px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand .footer-logo {
    display: inline-flex;
    margin-bottom: 16px;
}

.footer-tagline {
    margin-bottom: 20px;
    max-width: 240px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-col h4 {
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #d4af37;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
}

.footer-contact-list {
    list-style: none;
}

.footer-contact-list li {
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}


/* INNER PAGE HERO */

.page-hero {
    width: 100%;
    padding: 130px 6% 90px;
    text-align: center;
    color: #ffffff;
    background: linear-gradient(135deg, #11152b 0%, #19153a 55%, #24174a 100%);
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-content span {
    display: block;
    margin-bottom: 10px;
    color: #d4af37;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.page-hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.page-hero-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}


/* ABOUT INTRO */

.about-intro {
    padding: 90px 6%;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-container.single {
    grid-template-columns: 1fr;
    max-width: 800px;
}

.about-label {
    display: block;
    margin-bottom: 10px;
    color: #d4af37;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: #11152b;
    line-height: 1.25;
    margin-bottom: 22px;
}

.about-text h2 strong { color: #d4af37; }

.about-text p {
    margin-bottom: 16px;
    font-size: 15px;
    color: rgba(17, 21, 43, 0.75);
}

.about-highlight {
    padding: 45px 25px;
    text-align: center;
    color: #ffffff;
    background: linear-gradient(135deg, #11152b, #24174a);
    border-radius: 8px;
}

.about-number {
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1;
    color: #d4af37;
    margin-bottom: 10px;
}

.about-number-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}


/* VALUES */

.values-section {
    padding: 90px 6%;
    background-color: #f7f7f9;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.value-card {
    padding: 34px 26px;
    background-color: #ffffff;
    border: 1px solid rgba(17, 21, 43, 0.08);
    border-radius: 6px;
    box-shadow: 0 12px 30px rgba(17, 21, 43, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(17, 21, 43, 0.10);
}

.value-icon {
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #d4af37;
}

.value-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #11152b;
}

.value-card p {
    font-size: 14px;
    color: rgba(17, 21, 43, 0.7);
}


/* SERVICES (division pages) */

.services-section {
    padding: 90px 6%;
    background-color: #ffffff;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.service-block {
    padding: 30px 28px;
    background-color: #f7f7f9;
    border: 1px solid rgba(17, 21, 43, 0.08);
    border-radius: 6px;
}

.service-block h3 {
    margin-bottom: 16px;
    padding-bottom: 12px;
    font-size: 17px;
    font-weight: 700;
    color: #11152b;
    border-bottom: 2px solid #d4af37;
}

.service-block ul { list-style: none; }

.service-block li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 18px;
    font-size: 14px;
    color: rgba(17, 21, 43, 0.75);
}

.service-block li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #d4af37;
}

.service-block p {
    font-size: 14px;
    color: rgba(17, 21, 43, 0.75);
}

.service-block img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 16px;
}


/* CLIENTS */

.clients-section {
    padding: 90px 6%;
    background-color: #f7f7f9;
}

.clients-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.client-item {
    padding: 16px 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #11152b;
    background-color: #ffffff;
    border: 1px solid rgba(17, 21, 43, 0.08);
    border-radius: 6px;
}


/* CTA */

.about-cta {
    padding: 90px 6%;
    text-align: center;
    color: #ffffff;
    background: linear-gradient(135deg, #11152b, #351a58);
}

.about-cta-content { max-width: 640px; margin: 0 auto; }

.about-cta-content span {
    display: block;
    margin-bottom: 10px;
    color: #d4af37;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-cta-content h2 {
    margin-bottom: 16px;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
}

.about-cta-content p {
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.8);
}

.cta-button {
    display: inline-block;
    padding: 14px 34px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #11152b;
    background-color: #d4af37;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #c39c2e;
    transform: translateY(-2px);
}


/* SERVICES HUB */

.services-hub-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.division-card {
    padding: 40px 30px;
    text-align: center;
    background-color: #f7f7f9;
    border: 1px solid rgba(17, 21, 43, 0.08);
    border-radius: 6px;
}

.division-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 20px;
}

.division-card h3 {
    margin-bottom: 12px;
    font-size: 19px;
    font-weight: 700;
    color: #11152b;
}

.division-card p {
    margin-bottom: 22px;
    font-size: 14px;
    color: rgba(17, 21, 43, 0.7);
}


/* CONTACT PAGE */

.contact-section {
    padding: 90px 6%;
}

.contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-list {
    list-style: none;
}

.contact-info-list li {
    margin-bottom: 22px;
}

.contact-info-list .label {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #d4af37;
}

.contact-info-list .value {
    font-size: 16px;
    font-weight: 600;
    color: #11152b;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px 16px;
    font-family: inherit;
    font-size: 14px;
    color: #11152b;
    border: 1px solid rgba(17, 21, 43, 0.15);
    border-radius: 4px;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form button {
    align-self: flex-start;
    border: none;
    cursor: pointer;
}


/* DIVISION PAGE PHOTO GALLERY */

.gallery-strip {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 6% 90px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.gallery-strip img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
}

.reference-grid {
    max-width: 1000px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.reference-card {
    padding: 28px;
    background-color: #ffffff;
    border: 1px solid rgba(17, 21, 43, 0.08);
    border-left: 4px solid #d4af37;
    border-radius: 6px;
}

.reference-card p {
    margin-bottom: 16px;
    font-size: 14px;
    font-style: italic;
    color: rgba(17, 21, 43, 0.75);
}

.reference-name {
    font-weight: 700;
    font-size: 14px;
    color: #11152b;
}

.reference-meta {
    margin-top: 2px;
    font-size: 12px;
    color: rgba(17, 21, 43, 0.55);
}


/* TABLET */

@media (max-width: 900px) {

    .navbar { padding: 0 5%; }
    .nav-links { gap: 25px; }
    .nav-links a { font-size: 14px; }

    .hero-slider {
        height: 72vh;
        min-height: 500px;
    }

    .slide-content {
        width: 86%;
    }

    .slide-content h1 {
        font-size: clamp(2rem, 6vw, 3.6rem);
        padding: 16px 22px;
    }

    .portfolio-grid,
    .testimonial-container {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .about-container { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .services-hub-grid,
    .contact-grid,
    .reference-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* MOBILE */

@media (max-width: 700px) {

    .hero-slider {
        height: auto;
        aspect-ratio: 16 / 9;
        min-height: 0;
        max-height: none;
    }

    .header { height: 62px; }
    .navbar { height: 62px; padding: 0 20px; }

    .logo { height: 44px; padding: 6px 12px; }
    .logo img { max-width: 110px; }

    .menu-toggle { display: flex; }

    .nav-links {
        position: absolute;
        top: 62px;
        left: 0;
        width: 100%;
        padding: 15px 20px 20px;
        background-color: #11152b;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-links.active { display: flex; }
    .nav-links li { width: 100%; }

    .nav-links a {
        width: 100%;
        display: block;
        padding: 15px 5px;
        font-size: 15px;
    }

    .nav-links a::after { bottom: 8px; }

    .slide-overlay {
        background: linear-gradient(
            180deg,
            rgba(17, 21, 43, 0.68) 0%,
            rgba(17, 21, 43, 0.22) 25%,
            rgba(17, 21, 43, 0.08) 55%,
            rgba(17, 21, 43, 0.20) 100%
        );
    }

    .slide-content {
        width: 90%;
    }

    .slide-content h1 {
        font-size: clamp(1.05rem, 5.2vw, 1.6rem);
        line-height: 1.15;
        padding: 10px 14px;
        border-top-width: 2px;
        border-bottom-width: 2px;
        transform: translateY(-16px) scale(0.97);
    }

    .slider-btn { width: 40px; height: 40px; font-size: 17px; }
    .slider-btn.prev { left: 12px; }
    .slider-btn.next { right: 12px; }

    .slider-dots { bottom: 14px; gap: 6px; }
    .dot { width: 7px; height: 7px; }
    .dot.active { width: 22px; }

    .portfolio,
    .testimonials,
    .location {
        padding: 65px 20px;
    }

    .section-heading { margin-bottom: 32px; }
    .section-heading h2 { font-size: 2rem; }

    .page-hero { padding: 100px 20px 60px; }
    .values-grid,
    .services-grid { grid-template-columns: 1fr; }
    .clients-grid { grid-template-columns: 1fr; }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand .footer-logo {
        justify-content: center;
    }

    .footer-tagline {
        margin-left: auto;
        margin-right: auto;
    }

    .social-links { flex-wrap: wrap; justify-content: center; }
    .footer-bottom { padding: 18px 20px; }

}


/* VERY SMALL PHONES */

@media (max-width: 420px) {

    .slide-content { width: 88%; }
    .slide-content h1 { font-size: 1.4rem; padding: 10px 12px; }

}

/* =========================================================
   GLOBAL LOGO FIX
   Transparent logo directly on dark navbar/footer
   ========================================================= */

.logo {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 52px;
    width: auto;

    padding: 0;
    margin: 0;

    background: transparent !important;
    border: 0;
    border-radius: 0;

    overflow: visible;
}

.logo img {
    display: block;

    width: auto;
    height: 42px;

    max-width: 170px;

    object-fit: contain;
    object-position: center;

    background: transparent !important;
}


/* Footer logo */
.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;

    width: auto;
    height: auto;

    padding: 0;
    margin: 0;

    background: transparent !important;
    border: 0;
}

.footer-logo img {
    display: block;

    width: auto;
    height: 52px;

    max-width: 180px;

    object-fit: contain;

    background: transparent !important;
    mix-blend-mode: normal;
}


/* =========================================================
   MSA PAGE HERO
   No image. Clean corporate hero.
   ========================================================= */

.msa-page-hero {
    position: relative;

    min-height: 430px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 100px 6% 90px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(72, 45, 130, 0.35),
            transparent 42%
        ),
        linear-gradient(
            135deg,
            #11152b 0%,
            #171735 55%,
            #24174a 100%
        );
}

.msa-page-hero::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(17, 21, 43, 0.10),
            transparent 50%,
            rgba(212, 175, 55, 0.05)
        );

    pointer-events: none;
}

.msa-page-hero .page-hero-content {
    position: relative;
    z-index: 2;

    max-width: 900px;

    margin: 0 auto;

    text-align: center;
}

.msa-page-hero .page-hero-content span {
    margin-bottom: 14px;

    color: #d4af37;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.msa-page-hero .page-hero-content h1 {
    margin-bottom: 20px;

    color: #ffffff;

    font-size: clamp(2.1rem, 5vw, 4rem);
    line-height: 1.1;

    font-weight: 700;

    letter-spacing: -0.02em;
}

.msa-page-hero .page-hero-content p {
    max-width: 680px;

    margin: 0 auto;

    color: rgba(255, 255, 255, 0.78);

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   MSA ABOUT SECTION
   ========================================================= */

.msa-about {
    padding: 82px 6%;
    background: #ffffff;
}

.msa-about .about-container {
    max-width: 1180px;

    gap: 70px;
}


/* Text width */
.msa-about .about-text {
    max-width: 780px;
}

.msa-about .about-text h2 {
    margin-bottom: 24px;

    font-size: clamp(1.8rem, 3.2vw, 2.7rem);
    line-height: 1.2;
}

.msa-about .about-text p {
    margin-bottom: 17px;

    font-size: 15px;
    line-height: 1.8;
}


/* Experience panel */
.msa-about .about-highlight {
    min-height: 210px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 35px 25px;

    background:
        linear-gradient(
            145deg,
            #11152b,
            #24174a
        );

    border-radius: 8px;

    box-shadow:
        0 18px 45px rgba(17, 21, 43, 0.14);

    border-top: 3px solid #d4af37;
}

.msa-about .about-number {
    margin-bottom: 12px;

    color: #d4af37;

    font-size: clamp(2.8rem, 5vw, 4.2rem);
}

.msa-about .about-number-text {
    max-width: 190px;

    text-align: center;

    font-size: 13px;
    line-height: 1.5;
}


/* =========================================================
   MSA SERVICES
   ========================================================= */

.msa-services {
    padding: 82px 6% 90px;

    background: #f6f6f8;
}

.msa-services .section-heading {
    margin-bottom: 42px;
}

.msa-services .section-heading h2 {
    color: #11152b;
}


/* Six service cards */
.msa-services .services-grid {
    max-width: 1180px;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;
}


/* Card */
.msa-services .service-block {
    display: flex;
    flex-direction: column;

    padding: 0;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid rgba(17, 21, 43, 0.08);
    border-radius: 8px;

    box-shadow:
        0 10px 30px rgba(17, 21, 43, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.msa-services .service-block:hover {
    transform: translateY(-4px);

    box-shadow:
        0 18px 38px rgba(17, 21, 43, 0.11);
}


/* Service image */
.msa-services .service-block > img {
    width: 100%;
    height: 175px;

    margin: 0;

    object-fit: cover;
    object-position: center;

    border-radius: 0;
}


/* Text area */
.msa-services .service-block-content {
    flex: 1;

    padding: 23px 23px 25px;
}


/* Service title */
.msa-services .service-block h3 {
    margin: 0 0 17px;

    padding-bottom: 12px;

    color: #11152b;

    font-size: 16px;
    line-height: 1.35;

    font-weight: 700;

    border-bottom: 2px solid #d4af37;
}


/* Service list */
.msa-services .service-block ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.msa-services .service-block li {
    position: relative;

    margin-bottom: 9px;
    padding-left: 16px;

    color: rgba(17, 21, 43, 0.72);

    font-size: 13px;
    line-height: 1.55;
}

.msa-services .service-block li:last-child {
    margin-bottom: 0;
}

.msa-services .service-block li::before {
    content: "";

    position: absolute;

    top: 0.65em;
    left: 0;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #d4af37;
}


/* =========================================================
   MSA CTA
   ========================================================= */

.msa-cta {
    padding: 78px 6%;
}

.msa-cta .about-cta-content {
    max-width: 680px;
}

.msa-cta .about-cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
}


/* =========================================================
   MOBILE MSA
   ========================================================= */

@media (max-width: 900px) {

    .msa-page-hero {
        min-height: 380px;

        padding: 85px 5% 75px;
    }

    .msa-about {
        padding: 70px 5%;
    }

    .msa-about .about-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .msa-about .about-highlight {
        width: 100%;
        max-width: 420px;

        min-height: 180px;

        margin: 0 auto;
    }

    .msa-services {
        padding: 70px 5% 75px;
    }

    .msa-services .services-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 20px;
    }

    .msa-services .service-block > img {
        height: 160px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 700px) {

    /* Navbar */
    .logo {
        height: 44px;
        padding: 0;
    }

    .logo img {
        height: 36px;
        max-width: 145px;
    }

    .footer-logo img {
        height: 46px;
        max-width: 165px;
    }


    /* Hero */
    .msa-page-hero {
        min-height: 320px;

        padding: 72px 20px 65px;
    }

    .msa-page-hero .page-hero-content span {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .msa-page-hero .page-hero-content h1 {
        margin-bottom: 15px;

        font-size: clamp(1.8rem, 8vw, 2.5rem);
        line-height: 1.12;
    }

    .msa-page-hero .page-hero-content p {
        font-size: 13px;
        line-height: 1.65;
    }


    /* About */
    .msa-about {
        padding: 58px 20px;
    }

    .msa-about .about-text h2 {
        font-size: 1.85rem;
    }

    .msa-about .about-text p {
        font-size: 14px;
        line-height: 1.75;
    }

    .msa-about .about-highlight {
        min-height: 155px;

        padding: 28px 20px;
    }

    .msa-about .about-number {
        font-size: 3rem;
    }


    /* Services */
    .msa-services {
        padding: 58px 20px 65px;
    }

    .msa-services .section-heading {
        margin-bottom: 28px;
    }

    .msa-services .section-heading h2 {
        font-size: 1.9rem;
    }

    .msa-services .services-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .msa-services .service-block {
        border-radius: 7px;
    }

    .msa-services .service-block > img {
        height: 145px;
    }

    .msa-services .service-block-content {
        padding: 20px 19px 22px;
    }

    .msa-services .service-block h3 {
        margin-bottom: 14px;

        font-size: 15px;
    }

    .msa-services .service-block li {
        margin-bottom: 8px;

        font-size: 13px;
        line-height: 1.5;
    }


    /* CTA */
    .msa-cta {
        padding: 62px 20px;
    }

    .msa-cta .about-cta-content h2 {
        font-size: 2rem;
    }

    .msa-cta .about-cta-content p {
        font-size: 14px;
        line-height: 1.7;
    }

}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 420px) {

    .msa-page-hero {
        min-height: 300px;
        padding: 65px 18px 58px;
    }

    .msa-page-hero .page-hero-content h1 {
        font-size: 1.75rem;
    }

    .msa-about,
    .msa-services {
        padding-left: 18px;
        padding-right: 18px;
    }

    .msa-services .service-block > img {
        height: 135px;
    }

}
/* =========================================================
   GLOBAL LOGO VISIBILITY
   Subtle backing, NOT a white rectangle
   ========================================================= */

.logo {
    background: transparent !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
}

.logo-visibility {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 5px 9px;

    background: rgba(255, 255, 255, 0.075);

    border: 1px solid rgba(255, 255, 255, 0.16);

    border-radius: 6px;

    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.12);

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.logo-visibility img {
    display: block;

    width: auto;
    height: 40px;

    max-width: 165px;

    object-fit: contain;

    background: transparent !important;
}


/* Footer logo */

.footer-logo {
    background: transparent !important;
    padding: 0 !important;
    border: 0 !important;
}

.footer-logo-visibility {
    padding: 6px 10px;
}

.footer-logo-visibility img {
    height: 46px;
    max-width: 175px;
}


/* =========================================================
   SGA HERO
   No giant image
   ========================================================= */

.sga-page-hero {
    position: relative;

    min-height: 410px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 90px 6% 80px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 78% 20%,
            rgba(85, 52, 145, 0.32),
            transparent 42%
        ),
        linear-gradient(
            135deg,
            #11152b 0%,
            #171735 55%,
            #24174a 100%
        );
}

.sga-page-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            115deg,
            transparent 0%,
            rgba(212, 175, 55, 0.045) 50%,
            transparent 100%
        );

    pointer-events: none;
}

.sga-page-hero .page-hero-content {
    position: relative;
    z-index: 2;

    max-width: 850px;

    text-align: center;
}

.sga-page-hero .page-hero-content span {
    display: block;

    margin-bottom: 14px;

    color: #d4af37;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.sga-page-hero .page-hero-content h1 {
    margin-bottom: 18px;

    color: #ffffff;

    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.1;

    font-weight: 700;
}

.sga-page-hero .page-hero-content p {
    max-width: 680px;

    margin: 0 auto;

    color: rgba(255,255,255,0.76);

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   REMOVE THE OLD GIANT DIVISION BANNER / GALLERY
   ========================================================= */

.division-banner,
.gallery-strip {
    display: none !important;
}


/* =========================================================
   SGA ABOUT
   ========================================================= */

.sga-about {
    padding: 78px 6%;
    background: #ffffff;
}

.sga-about .about-container {
    max-width: 1180px;
    gap: 65px;
}

.sga-about .about-text {
    max-width: 780px;
}

.sga-about .about-text p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 17px;
}

.sga-about .about-highlight {
    min-height: 200px;

    border-top: 3px solid #d4af37;

    background:
        linear-gradient(
            145deg,
            #11152b,
            #25184b
        );

    border-radius: 8px;

    box-shadow:
        0 18px 45px rgba(17,21,43,0.13);
}


/* =========================================================
   SERVICES
   ========================================================= */

.sga-services {
    padding: 78px 6% 85px;

    background: #f6f6f8;
}

.sga-services .section-heading {
    margin-bottom: 40px;
}

.sga-services .services-grid {
    max-width: 1180px;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;
}


/* Card */

.sga-services .service-block {
    display: flex;
    flex-direction: column;

    overflow: hidden;

    padding: 0;

    background: #ffffff;

    border: 1px solid rgba(17,21,43,0.08);

    border-radius: 8px;

    box-shadow:
        0 10px 30px rgba(17,21,43,0.055);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.sga-services .service-block:hover {
    transform: translateY(-4px);

    box-shadow:
        0 18px 38px rgba(17,21,43,0.11);
}


/* =========================================================
   IMPORTANT:
   EVERY SERVICE IMAGE HAS THE SAME BOX
   ========================================================= */

.sga-services .service-image {
    width: 100%;
    height: 190px;

    overflow: hidden;

    background: #e9e9ee;
}

.sga-services .service-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    border-radius: 0;

    transition: transform 0.35s ease;
}

.sga-services .service-block:hover .service-image img {
    transform: scale(1.035);
}


/* Content */

.sga-services .service-block-content {
    flex: 1;

    padding: 22px 22px 24px;
}

.sga-services .service-block h3 {
    margin: 0 0 16px;

    padding-bottom: 12px;

    color: #11152b;

    font-size: 16px;
    line-height: 1.35;

    border-bottom: 2px solid #d4af37;
}

.sga-services .service-block ul {
    list-style: none;

    margin: 0;
    padding: 0;
}

.sga-services .service-block li {
    position: relative;

    margin-bottom: 8px;
    padding-left: 15px;

    color: rgba(17,21,43,0.72);

    font-size: 13px;
    line-height: 1.55;
}

.sga-services .service-block li:last-child {
    margin-bottom: 0;
}

.sga-services .service-block li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0.68em;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #d4af37;
}

.sga-services .service-block p {
    margin: 0;

    color: rgba(17,21,43,0.72);

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   TRUSTED BY
   ========================================================= */

.sga-clients {
    padding: 78px 6% 82px;

    background: #ffffff;
}

.sga-clients .section-heading {
    max-width: 720px;

    margin-left: auto;
    margin-right: auto;

    margin-bottom: 38px;

    text-align: center;
}

.sga-clients .clients-grid {
    max-width: 1050px;

    margin: 0 auto 48px;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 12px;
}

.sga-clients .client-item {
    min-height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 14px;

    text-align: center;

    color: #11152b;

    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;

    background: #f7f7f9;

    border: 1px solid rgba(17,21,43,0.07);

    border-radius: 6px;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}

.sga-clients .client-item:hover {
    background: #f1eff7;

    border-color: rgba(212,175,55,0.45);
}


/* References */

.sga-clients .reference-grid {
    max-width: 1050px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}

.sga-clients .reference-card {
    padding: 23px;

    background: #f8f8fa;

    border-left: 3px solid #d4af37;

    border-radius: 6px;
}

.sga-clients .reference-card p {
    margin-bottom: 17px;

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   CTA
   ========================================================= */

.sga-cta {
    padding: 72px 6%;
}


/* =========================================================
   GLOBAL PROFESSIONAL FOOTER
   Use this same footer styling on MSA, SGA, Hayyatt,
   About, Services and Contact pages.
   ========================================================= */

.footer {
    background: #11152b;

    color: #ffffff;
}

.footer-top {
    max-width: 1180px;

    margin: 0 auto;

    padding: 55px 6% 45px;

    display: grid;

    grid-template-columns:
        minmax(2fr, 2fr)
        repeat(3, minmax(0, 1fr));

    gap: 42px;
}

.footer-col {
    min-width: 0;
}

.footer-col h4 {
    margin: 0 0 17px;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.4px;
}

.footer-tagline {
    max-width: 280px;

    margin: 16px 0 20px;

    color: rgba(255,255,255,0.64);

    font-size: 12px;
    line-height: 1.7;
}

.footer-links,
.footer-contact-list {
    list-style: none;

    margin: 0;
    padding: 0;
}

.footer-links li,
.footer-contact-list li {
    margin-bottom: 9px;

    color: rgba(255,255,255,0.62);

    font-size: 12px;
    line-height: 1.5;
}

.footer-links a {
    color: rgba(255,255,255,0.68);

    text-decoration: none;

    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #d4af37;
}

.footer-contact-list li {
    overflow-wrap: anywhere;
}

.social-links {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}

.social-links a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 28px;
    min-height: 28px;

    padding: 5px 9px;

    color: rgba(255,255,255,0.72);

    font-size: 10px;

    text-decoration: none;

    background: rgba(255,255,255,0.055);

    border: 1px solid rgba(255,255,255,0.09);

    border-radius: 4px;
}

.footer-bottom {
    padding: 17px 6%;

    text-align: center;

    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
    margin: 0;

    color: rgba(255,255,255,0.45);

    font-size: 10px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .sga-services .services-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .sga-clients .clients-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .footer-top {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 35px 28px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    /* Logo */
    .logo-visibility {
        padding: 4px 7px;
    }

    .logo-visibility img {
        height: 34px;
        max-width: 140px;
    }


    .footer-logo-visibility img {
        height: 40px;
        max-width: 155px;
    }


    /* Hero */
    .sga-page-hero {
        min-height: 315px;

        padding: 68px 20px 58px;
    }

    .sga-page-hero .page-hero-content h1 {
        font-size: clamp(1.8rem, 8vw, 2.45rem);
    }

    .sga-page-hero .page-hero-content p {
        font-size: 13px;
        line-height: 1.65;
    }


    /* About */
    .sga-about {
        padding: 58px 20px;
    }

    .sga-about .about-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sga-about .about-text p {
        font-size: 14px;
        line-height: 1.75;
    }

    .sga-about .about-highlight {
        min-height: 150px;

        max-width: 400px;

        margin: 0 auto;

        width: 100%;
    }


    /* Services */
    .sga-services {
        padding: 58px 20px 65px;
    }

    .sga-services .services-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .sga-services .service-image {
        height: 150px;
    }

    .sga-services .service-block-content {
        padding: 19px 18px 21px;
    }

    .sga-services .service-block h3 {
        font-size: 15px;
    }


    /* Trusted By */
    .sga-clients {
        padding: 58px 20px 65px;
    }

    .sga-clients .clients-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 9px;

        margin-bottom: 35px;
    }

    .sga-clients .client-item {
        min-height: 67px;

        padding: 11px 8px;

        font-size: 10.5px;
    }


    /* References */
    .sga-clients .reference-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .sga-clients .reference-card {
        padding: 19px;
    }


    /* CTA */
    .sga-cta {
        padding: 58px 20px;
    }


    /* =====================================================
       MOBILE FOOTER
       TWO COLUMNS SIDE-BY-SIDE
       ===================================================== */

    .footer-top {
        max-width: none;

        padding: 42px 20px 32px;

        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 30px 22px;

        text-align: left;
    }


    /* Brand spans full width */
    .footer-brand {
        grid-column: 1 / -1;

        padding-bottom: 4px;
    }

    .footer-tagline {
        max-width: 360px;

        margin-top: 13px;
        margin-bottom: 17px;
    }


    .footer-col h4 {
        margin-bottom: 13px;

        font-size: 12px;
    }

    .footer-links li,
    .footer-contact-list li {
        margin-bottom: 8px;

        font-size: 11px;
    }


    /* Keep social buttons compact */
    .social-links {
        justify-content: flex-start;

        gap: 6px;
    }

    .social-links a {
        min-height: 26px;

        padding: 4px 7px;

        font-size: 9px;
    }


    /* Copyright */
    .footer-bottom {
        padding: 15px 20px;
    }

    .footer-bottom p {
        font-size: 9px;
        line-height: 1.5;
    }

}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 420px) {

    .sga-page-hero {
        min-height: 295px;

        padding: 62px 18px 52px;
    }

    .sga-page-hero .page-hero-content h1 {
        font-size: 1.7rem;
    }

    .sga-services,
    .sga-about,
    .sga-clients {
        padding-left: 18px;
        padding-right: 18px;
    }

    .sga-services .service-image {
        height: 140px;
    }

    .sga-clients .client-item {
        min-height: 64px;

        font-size: 10px;
    }

    .footer-top {
        padding-left: 18px;
        padding-right: 18px;

        gap: 27px 16px;
    }

}

/* =========================================
   HAYYATT LOGISTIC PAGE
========================================= */

.division-hero {
    background:
        linear-gradient(
            135deg,
            rgba(17, 21, 43, 0.98),
            rgba(48, 35, 82, 0.96)
        );
}

.hayyatt-focus {
    background: #f7f7fa;
}

.hayyatt-grid {
    align-items: stretch;
}

.image-service-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.image-service-card .service-image {
    width: 100%;
    height: 210px;
    overflow: hidden;
}

.image-service-card .service-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.service-card-content {
    padding: 28px 24px 30px;
}

.service-card-content h3 {
    margin-bottom: 12px;
}

.service-card-content p {
    margin: 0;
    line-height: 1.7;
}


/* =========================================
   LOGO VISIBILITY
   Subtle backing, not a white box
========================================= */

.logo-visibility {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.16);
}

.logo-visibility img {
    display: block;
    max-width: 100%;
}


/* =========================================
   FOOTER
========================================= */

.footer {
    background: #11152b;
    color: #ffffff;
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 55px 6% 42px;

    display: grid;
    grid-template-columns:
        minmax(220px, 1.4fr)
        minmax(140px, 0.8fr)
        minmax(180px, 1fr)
        minmax(190px, 1fr);

    gap: 38px;
}

.footer-col h4 {
    color: #d4af37;
    margin-bottom: 18px;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.footer-brand {
    min-width: 0;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 10px;
    margin-bottom: 15px;
}

.footer-logo img {
    width: auto;
    max-width: 175px;
    max-height: 65px;
    object-fit: contain;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links,
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact-list li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-contact-list li {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.6;
    text-decoration: none;
}

.footer-links a:hover {
    color: #d4af37;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.social-links a {
    color: #ffffff;
    font-size: 12px;
    text-decoration: none;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 5px;
}

.social-links a:hover {
    border-color: #d4af37;
    color: #d4af37;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 17px 20px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .image-service-card .service-image {
        height: 155px;
    }

    .service-card-content {
        padding: 22px 20px 24px;
    }

    .footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 22px;
        padding: 38px 6% 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-logo img {
        max-width: 155px;
        max-height: 55px;
    }

    .footer-tagline {
        max-width: 100%;
    }

    .footer-col h4 {
        margin-bottom: 13px;
    }

    .footer-links li,
    .footer-contact-list li {
        margin-bottom: 8px;
    }

    .footer-links a,
    .footer-contact-list li {
        font-size: 12px;
    }

}

@media (max-width: 480px) {

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px;
        padding-left: 5%;
        padding-right: 5%;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .social-links {
        gap: 6px;
    }

    .social-links a {
        padding: 6px 8px;
        font-size: 11px;
    }

}
/* =========================================================
   FINAL RESPONSIVE DESIGN SYSTEM
   MSGA ADVANCE WEBSITE
========================================================= */


/* =========================================================
   MAIN LOGO
========================================================= */

.logo {
    display: flex;
    align-items: center;
    justify-content: center;

    width: auto;
    min-width: 150px;
    height: 68px;

    padding: 6px 10px;

    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;

    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.logo img {
    display: block;

    width: auto;
    max-width: 185px;
    height: auto;
    max-height: 58px;

    object-fit: contain;
}


/* =========================================================
   DIVISION CARDS
========================================================= */

.services-hub-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 24px;

    align-items: stretch;
}

.division-card {
    display: flex;
    flex-direction: column;
    align-items: center;

    height: 100%;

    padding: 26px 22px 24px;

    text-align: center;

    background: #ffffff;

    border: 1px solid rgba(17, 21, 43, 0.08);
    border-radius: 12px;

    box-shadow: 0 8px 24px rgba(17, 21, 43, 0.08);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.division-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(17, 21, 43, 0.13);
}


/* Logo inside division cards */

.division-card > img {
    width: 100%;
    height: 72px;

    margin-bottom: 18px;

    object-fit: contain;
}


/* Card headings */

.division-card h3 {
    width: 100%;

    margin: 0 0 12px;

    font-size: 17px;
    line-height: 1.35;
}


/* Card descriptions */

.division-card p {
    width: 100%;

    margin: 0 0 20px;

    color: #555b6e;

    font-size: 13px;
    line-height: 1.65;

    flex-grow: 1;
}


/* Buttons */

.division-card .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 40px;

    padding: 9px 16px;

    font-size: 12px;

    white-space: nowrap;
}


/* =========================================================
   VALUES
========================================================= */

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 20px;

    align-items: stretch;
}

.value-card {
    height: 100%;

    padding: 24px 20px;

    border-radius: 12px;

    background: #ffffff;
    border: 1px solid rgba(17, 21, 43, 0.08);

    box-shadow: 0 7px 22px rgba(17, 21, 43, 0.07);
}

.value-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 12.5px;
    line-height: 1.65;
    color: #555b6e;
}


/* =========================================================
   CTA SECTION
========================================================= */

.about-cta {
    padding: 58px 6%;
}

.about-cta-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.about-cta-content span {
    font-size: 13px;
}

.about-cta-content h2 {
    margin: 10px 0 12px;

    font-size: clamp(28px, 4vw, 42px);
}

.about-cta-content p {
    max-width: 600px;
    margin: 0 auto 22px;

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonial-container {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 18px;

    align-items: stretch;
}

.testimonial {
    display: flex;
    flex-direction: column;

    padding: 22px 20px;

    background: #ffffff;

    border: 1px solid rgba(17, 21, 43, 0.08);
    border-radius: 10px;

    box-shadow: 0 7px 20px rgba(17, 21, 43, 0.07);
}

.testimonial p {
    margin: 0 0 16px;

    font-size: 12.5px;
    line-height: 1.65;

    color: #555b6e;

    flex-grow: 1;
}

.testimonial-author {
    font-size: 13px;
    font-weight: 700;
}

.testimonial-meta {
    margin-top: 4px;

    font-size: 10.5px;

    color: #888d9b;
}


/* =========================================================
   LOCATION + VISITOR COUNTER
========================================================= */

.location-visitor-wrapper {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 2fr 1fr;

    gap: 24px;

    align-items: stretch;
}

.location-box,
.visitor-box {
    border-radius: 12px;
    overflow: hidden;

    border: 1px solid rgba(17, 21, 43, 0.08);
    box-shadow: 0 8px 24px rgba(17, 21, 43, 0.08);
}

.location-box {
    min-height: 300px;
}

.location-box iframe {
    width: 100%;
    height: 100%;

    min-height: 300px;

    border: 0;
    display: block;
}

.visitor-box {
    min-height: 300px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            #11152b,
            #2d2350
        );

    color: #ffffff;

    padding: 30px;
}

.visitor-box .visitor-label {
    display: block;

    margin-bottom: 12px;

    color: #d4af37;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.visitor-box .visitor-number {
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1;

    font-weight: 700;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #11152b;

    color: #ffffff;
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;

    padding: 42px 6% 32px;

    display: grid;

    grid-template-columns:
        minmax(200px, 1.35fr)
        minmax(130px, 0.8fr)
        minmax(170px, 1fr)
        minmax(190px, 1fr);

    gap: 30px;
}

.footer-logo {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 7px 10px;

    margin-bottom: 13px;

    background: rgba(255, 255, 255, 0.07);

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 8px;

    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
}

.footer-logo img {
    width: auto;

    max-width: 170px;
    max-height: 60px;

    object-fit: contain;

    display: block;
}

.footer-tagline {
    max-width: 260px;

    margin: 0;

    color: rgba(255, 255, 255, 0.65);

    font-size: 12px;
    line-height: 1.65;
}

.footer-col h4 {
    margin: 0 0 14px;

    color: #d4af37;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 0.3px;
}

.footer-links,
.footer-contact-list {
    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-links li,
.footer-contact-list li {
    margin-bottom: 7px;
}

.footer-links a,
.footer-contact-list li {
    color: rgba(255, 255, 255, 0.66);

    font-size: 11.5px;
    line-height: 1.5;

    text-decoration: none;
}

.footer-links a:hover {
    color: #d4af37;
}

.social-links {
    display: flex;
    flex-wrap: wrap;

    gap: 6px;

    margin-top: 14px;
}

.social-links a {
    padding: 6px 8px;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 5px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 10.5px;
    text-decoration: none;
}

.social-links a:hover {
    color: #d4af37;
    border-color: rgba(212, 175, 55, 0.55);
}

.footer-bottom {
    padding: 14px 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.09);

    text-align: center;
}

.footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.45);

    font-size: 10px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .services-hub-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-hub-grid .division-card:last-child {
        grid-column: 1 / -1;
        max-width: 48%;
        width: 100%;
        justify-self: center;
    }

    .values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testimonial-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    /* Main logo */

    .logo {
        min-width: 118px;
        height: 52px;

        padding: 4px 7px;
    }

    .logo img {
        max-width: 135px;
        max-height: 44px;
    }


    /* Division cards */

    .services-hub-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 10px;
    }

    .services-hub-grid .division-card:last-child {
        grid-column: 1 / -1;

        max-width: none;
    }

    .division-card {
        min-width: 0;

        padding: 16px 10px 15px;

        border-radius: 9px;

        box-shadow: 0 5px 15px rgba(17, 21, 43, 0.07);
    }

    .division-card > img {
        height: 48px;

        margin-bottom: 10px;
    }

    .division-card h3 {
        margin-bottom: 7px;

        font-size: 12px;
        line-height: 1.3;
    }

    .division-card p {
        margin-bottom: 12px;

        font-size: 9.5px;
        line-height: 1.45;
    }

    .division-card .cta-button {
        min-height: 31px;

        padding: 6px 9px;

        font-size: 9px;

        border-radius: 4px;
    }


    /* Values */

    .values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 10px;
    }

    .value-card {
        padding: 15px 12px;

        border-radius: 9px;
    }

    .value-icon {
        font-size: 10px;
    }

    .value-card h3 {
        margin-bottom: 6px;

        font-size: 13px;
    }

    .value-card p {
        font-size: 9.5px;
        line-height: 1.45;
    }


    /* Testimonials */

    .testimonial-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 10px;
    }

    .testimonial {
        min-width: 0;

        padding: 14px 11px;

        border-radius: 8px;
    }

    .testimonial p {
        margin-bottom: 10px;

        font-size: 9.5px;
        line-height: 1.45;
    }

    .testimonial-author {
        font-size: 10.5px;
    }

    .testimonial-meta {
        font-size: 8px;
    }


    /* CTA */

    .about-cta {
        padding: 38px 6%;
    }

    .about-cta-content span {
        font-size: 10px;
    }

    .about-cta-content h2 {
        margin: 7px 0 8px;

        font-size: 25px;
        line-height: 1.15;
    }

    .about-cta-content p {
        margin-bottom: 17px;

        font-size: 10.5px;
        line-height: 1.5;
    }

    .about-cta-content .cta-button {
        min-height: 36px;

        padding: 8px 14px;

        font-size: 10px;
    }


    /* Location + visitor */

    .location-visitor-wrapper {
        grid-template-columns: 1.6fr 1fr;

        gap: 10px;
    }

    .location-box,
    .visitor-box {
        min-height: 180px;

        border-radius: 9px;
    }

    .location-box iframe {
        min-height: 180px;
    }

    .visitor-box {
        padding: 12px;
    }

    .visitor-box .visitor-label {
        margin-bottom: 7px;

        font-size: 8px;
    }

    .visitor-box .visitor-number {
        font-size: 25px;
    }


    /* Footer */

    .footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 22px 14px;

        padding: 30px 5% 24px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-logo {
        padding: 5px 8px;

        margin-bottom: 9px;
    }

    .footer-logo img {
        max-width: 135px;
        max-height: 48px;
    }

    .footer-tagline {
        max-width: 100%;

        font-size: 10px;
        line-height: 1.5;
    }

    .footer-col h4 {
        margin-bottom: 10px;

        font-size: 11px;
    }

    .footer-links li,
    .footer-contact-list li {
        margin-bottom: 5px;
    }

    .footer-links a,
    .footer-contact-list li {
        font-size: 9px;
        line-height: 1.4;
    }

    .social-links {
        margin-top: 9px;

        gap: 4px;
    }

    .social-links a {
        padding: 5px 6px;

        font-size: 8.5px;
    }

    .footer-bottom {
        padding: 11px 12px;
    }

    .footer-bottom p {
        font-size: 8px;
    }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .division-card {
        padding-left: 8px;
        padding-right: 8px;
    }

    .division-card p {
        font-size: 8.8px;
    }

    .testimonial p {
        font-size: 9px;
    }

    .footer-links a,
    .footer-contact-list li {
        font-size: 8.5px;
    }

}

/* ---------- GLOBAL ---------- */

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

body {
    overflow-x: hidden;
}


/* ---------- MAIN HEADER LOGO ---------- */

.logo {
    min-width: 150px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 5px 10px;

    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;

    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.logo img {
    width: auto;
    max-width: 185px;
    max-height: 58px;
    object-fit: contain;
}


/* ---------- COMPANY / DIVISION LOGOS ---------- */

.logo-visibility {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 7px 12px;

    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 7px;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
}

.logo-visibility img {
    max-width: 150px;
    max-height: 55px;
    object-fit: contain;
}


/* ---------- PAGE HERO ---------- */
/* Smaller than the homepage slider because these pages
   contain only a small amount of introductory text. */

.page-hero {
    min-height: auto !important;
    height: auto !important;
    padding: 72px 6% 62px;
}

.page-hero h1 {
    margin-bottom: 12px;
}

.page-hero p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}


/* ---------- ABOUT / SERVICES DIVISION CARDS ---------- */

.services-hub-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.division-card {
    height: 100%;
    min-height: 0;

    display: flex;
    flex-direction: column;

    padding: 20px;
    border-radius: 12px;
}

.division-card p {
    flex: 1;
}

.division-card .btn,
.division-card a {
    margin-top: auto;
}


/* ---------- VALUES ---------- */

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.values-grid > * {
    min-width: 0;
}


/* ---------- TESTIMONIALS ---------- */

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.testimonial-container > * {
    min-width: 0;
}


/* ---------- LOCATION + VISITOR ---------- */

.location-visitor-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 18px;
    align-items: stretch;
}

.location-visitor-wrapper > * {
    min-width: 0;
}


/* ---------- SECTION BACKGROUNDS ---------- */
/* Prevent purple showing through between cards. */

.services-section,
.divisions-section,
.values-section,
.testimonials-section {
    background: #f7f7fa;
}

.services-hub-grid,
.values-grid,
.testimonial-container {
    width: 100%;
}


/* ---------- CTA ---------- */

.cta-section {
    padding: 48px 6%;
}

.cta-section h2 {
    margin-bottom: 8px;
}

.cta-section p {
    margin-bottom: 18px;
}


/* ---------- FOOTER ---------- */

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 24px;

    padding: 38px 6% 32px;
}

.footer-brand {
    min-width: 0;
}

.footer-top > * {
    min-width: 0;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 7px 12px;

    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 7px;
}

.footer-logo img {
    max-width: 150px;
    max-height: 55px;
    object-fit: contain;
}

.footer-bottom {
    padding: 14px 6%;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .services-hub-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-hub-grid .division-card:last-child {
        grid-column: 1 / -1;
    }

    .values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testimonial-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .location-visitor-wrapper {
        grid-template-columns: 1.6fr 1fr;
    }

    .footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    /* Header */

    .logo {
        min-width: 118px;
        height: 52px;
        padding: 4px 7px;
    }

    .logo img {
        max-width: 135px;
        max-height: 44px;
    }

    .logo-visibility {
        padding: 5px 8px;
    }

    .logo-visibility img {
        max-width: 105px;
        max-height: 42px;
    }


    /* Page hero */

    .page-hero {
        padding: 50px 6% 42px;
    }

    .page-hero h1 {
        font-size: clamp(28px, 8vw, 40px);
    }

    .page-hero p {
        font-size: 14px;
        line-height: 1.55;
    }


    /* Division cards
       Two cards beside each other on mobile.
       Third card gets the full row. */

    .services-hub-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .services-hub-grid .division-card:last-child {
        grid-column: 1 / -1;
    }

    .division-card {
        padding: 13px 10px;
        border-radius: 9px;
    }

    .division-card h3 {
        font-size: 14px;
        line-height: 1.25;
    }

    .division-card p {
        font-size: 11.5px;
        line-height: 1.45;
    }

    .division-card a,
    .division-card .btn {
        font-size: 11px;
        padding: 7px 9px;
    }


    /* Values */

    .values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .values-grid > * {
        padding: 13px 10px;
    }


    /* Testimonials */

    .testimonial-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .testimonial-container > * {
        padding: 12px 10px;
    }

    .testimonial-container p {
        font-size: 11px;
        line-height: 1.45;
    }


    /* Location + visitor stay side-by-side */

    .location-visitor-wrapper {
        grid-template-columns: 1.55fr 1fr;
        gap: 10px;
    }

    .location-visitor-wrapper > * {
        padding: 12px 10px;
    }


    /* CTA */

    .cta-section {
        padding: 30px 6%;
    }

    .cta-section h2 {
        font-size: 22px;
        line-height: 1.2;
    }

    .cta-section p {
        font-size: 13px;
        line-height: 1.45;
    }


    /* Footer */

    .footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px 12px;
        padding: 28px 6% 24px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-top h3 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .footer-top p,
    .footer-top li,
    .footer-top a {
        font-size: 11px;
        line-height: 1.45;
    }

    .footer-logo img {
        max-width: 125px;
        max-height: 45px;
    }

    .footer-bottom {
        padding: 12px 6%;
        font-size: 10px;
    }
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .services-hub-grid {
        gap: 8px;
    }

    .division-card {
        padding: 11px 8px;
    }

    .division-card h3 {
        font-size: 13px;
    }

    .division-card p {
        font-size: 11px;
    }

    .location-visitor-wrapper {
        grid-template-columns: 1.45fr 1fr;
        gap: 8px;
    }

    .footer-top {
        gap: 12px 8px;
    }
}
 /* =========================================================
    LOCATION SECTION
    ========================================================= */

.location {
    width: 100%;
}


/* ---------- MAP HEADING ---------- */

.location .section-heading {
    width: calc(66.666% - 10px);
    text-align: center;
    margin: 0 0 18px 0;
}

.location .section-heading span {
    display: block;
    margin-bottom: 5px;
}

.location .section-heading h2 {
    margin: 0;
}


/* ---------- MAP + VISITOR ROW ---------- */

.location-visitor-wrapper {
    width: 100%;
    display: grid;

    grid-template-columns: 2fr 1fr;

    gap: 20px;
    align-items: stretch;
}


/* ---------- MAP ---------- */

.location-box {
    width: 100%;
    min-height: 300px;

    overflow: hidden;

    border-radius: 14px;
    background: #ffffff;

    border: 1px solid rgba(17, 21, 43, 0.08);

    box-shadow: 0 8px 25px rgba(17, 21, 43, 0.08);
}

.location-box iframe {
    display: block;

    width: 100%;
    height: 300px;

    border: 0;
}


/* ---------- VISITOR ---------- */

.visitor-box {
    min-height: 300px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    border-radius: 14px;
}

.visitor-box > div {
    width: 100%;
}

.visitor-label {
    display: block;
    margin-bottom: 10px;
}

.visitor-number {
    line-height: 1;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .location .section-heading {
        width: calc(66.666% - 7px);
        margin-bottom: 14px;
    }

    .location-visitor-wrapper {
        grid-template-columns: 1.7fr 1fr;
        gap: 14px;
    }

    .location-box,
    .visitor-box {
        min-height: 260px;
    }

    .location-box iframe {
        height: 260px;
    }
}


/* =========================================================
   MOBILE
   KEEP MAP + VISITOR SIDE-BY-SIDE
   ========================================================= */

@media (max-width: 600px) {

    .location .section-heading {
        /* Heading occupies exactly the map's column width */
        width: calc(60.5% - 4px);

        text-align: center;

        margin: 0 0 10px 0;
    }

    .location .section-heading span {
        font-size: 10px;
        margin-bottom: 3px;
    }

    .location .section-heading h2 {
        font-size: 19px;
        line-height: 1.15;
    }


    .location-visitor-wrapper {
        display: grid;

        /* Map is wider, visitor stays beside it */
        grid-template-columns: 1.55fr 1fr;

        gap: 8px;

        align-items: stretch;
    }


    .location-box {
        min-height: 190px;
        border-radius: 10px;
    }

    .location-box iframe {
        width: 100%;
        height: 190px;
        min-height: 190px;
    }


    .visitor-box {
        min-height: 190px;

        border-radius: 10px;

        padding: 10px 6px;
    }

    .visitor-label {
        font-size: 10px;
        line-height: 1.3;
        margin-bottom: 7px;
    }

    .visitor-number {
        font-size: 23px;
    }
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .location .section-heading {
        width: calc(59% - 3px);
    }

    .location-visitor-wrapper {
        grid-template-columns: 1.45fr 1fr;
        gap: 6px;
    }

    .location-box,
    .visitor-box {
        min-height: 170px;
    }

    .location-box iframe {
        height: 170px;
        min-height: 170px;
    }

    .visitor-number {
        font-size: 20px;
    }
}
/* =========================================================
   INDEX PAGE - OUR DIVISIONS
   ========================================================= */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.portfolio-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    min-height: 260px;
    padding: 28px 22px;
    text-decoration: none;
    box-sizing: border-box;
}

.portfolio-card img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    display: block;
}

.portfolio-card-name {
    margin: 20px 0 0;
    text-align: center;
}


/* =========================================================
   INDEX PAGE - TESTIMONIALS
   ========================================================= */

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.testimonial {
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.testimonial p {
    flex: 1;
}

.testimonial-author {
    margin-top: 20px;
}

.testimonial-meta {
    margin-top: 5px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    /* -------------------------
       Our Divisions
       ------------------------- */

    .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .portfolio-card {
        min-height: 220px;
        padding: 20px 12px;
    }

    .portfolio-card img {
        height: 115px;
    }

    .portfolio-card-name {
        font-size: 15px;
        line-height: 1.3;
        margin-top: 12px;
    }

    /* Hayyatt stays a NORMAL third card.
       It does NOT span both columns. */


    /* -------------------------
       Testimonials
       ------------------------- */

    .testimonial-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .testimonial {
        padding: 18px 14px;
    }

    .testimonial p {
        font-size: 13px;
        line-height: 1.55;
    }

    .testimonial-author {
        font-size: 14px;
        margin-top: 15px;
    }

    .testimonial-meta {
        font-size: 12px;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

    .portfolio-grid {
        gap: 10px;
    }

    .portfolio-card {
        min-height: 200px;
        padding: 16px 8px;
    }

    .portfolio-card img {
        height: 100px;
    }

    .portfolio-card-name {
        font-size: 13px;
    }

    .testimonial-container {
        gap: 10px;
    }

    .testimonial {
        padding: 15px 11px;
    }

    .testimonial p {
        font-size: 12px;
        line-height: 1.5;
    }

    .testimonial-author {
        font-size: 13px;
    }

    .testimonial-meta {
        font-size: 11px;
    }
}
.footer {
    padding-top: 0;
}

@media (max-width: 700px) {
    .msa-services .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 700px) {
    .sga-services .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sga-clients .reference-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
/* =========================================================
   HAYYATT LOGISTIC - MOBILE SERVICE CARDS
   ========================================================= */

@media (max-width: 768px) {

    .hayyatt-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .hayyatt-grid .service-block {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .hayyatt-grid .service-image {
        width: 100%;
        height: 130px;
        overflow: hidden;
    }

    .hayyatt-grid .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .hayyatt-grid .service-card-content {
        padding: 15px 12px;
    }

    .hayyatt-grid .service-card-content h3 {
        font-size: 15px;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .hayyatt-grid .service-card-content p {
        font-size: 12px;
        line-height: 1.5;
    }
}


/* Smaller phones */

@media (max-width: 480px) {

    .hayyatt-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .hayyatt-grid .service-image {
        height: 105px;
    }

    .hayyatt-grid .service-card-content {
        padding: 12px 9px;
    }

    .hayyatt-grid .service-card-content h3 {
        font-size: 13px;
    }

    .hayyatt-grid .service-card-content p {
        font-size: 11px;
        line-height: 1.45;
    }
}