:root {
    --primary: #0f4c8a;
    --primary-dark: #0a335b;
    --accent: #f4c316;
    --accent-soft: #fff3bf;
    --text: #142033;
    --muted: #61708a;
    --bg: #f4f7fb;
    --white: #ffffff;
    --line: rgba(15, 76, 138, 0.15);
    --shadow: 0 18px 45px rgba(8, 30, 54, 0.12);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(244, 195, 22, 0.10), transparent 18%),
        radial-gradient(circle at top right, rgba(15, 76, 138, 0.08), transparent 20%),
        linear-gradient(180deg, #f9fbff 0%, #f1f5fb 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15, 76, 138, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 96px;
    position: relative;
}

.logo-wrap {
    display: inline-flex;
    align-items: center;
    min-width: 150px;
    flex-shrink: 0;
}

.site-logo,
.footer-logo {
    width: auto;
    max-height: 72px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-weight: 700;
}

.site-nav > a,
.nav-dropdown-toggle {
    position: relative;
    padding: 10px 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-weight: 700;
    color: #111;
}

.site-nav > a:hover,
.nav-dropdown-toggle:hover,
.site-nav > a.is-active {
    color: var(--primary);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 240px;
    background: var(--primary);
    color: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 12px;
    display: none;
    z-index: 1001;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    color: var(--white);
}

.nav-dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.12);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    flex-shrink: 0;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* HERO */
.hero-section {
    padding: 18px 0 0;
}

.hero-slider {
    position: relative;
    min-height: 72vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background-position: center;
    background-size: cover;
    transition: opacity 0.55s ease;
    display: flex;
    align-items: center;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    position: relative;
}

.hero-content {
    width: 100%;
    min-height: 72vh;
    padding: 100px 0 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-copy {
    max-width: 860px;
    color: var(--white);
    text-align: center;
    margin: 0 auto;
}

.hero-kicker,
.eyebrow {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.hero-copy h1 {
    margin: 18px 0 12px;
    font-size: clamp(2.4rem, 5vw, 4.25rem);
    line-height: 1.08;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-copy p {
    margin: 0 auto;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    max-width: 760px;
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 14px 28px;
    border-radius: 999px;
    border: 0;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 12px 24px rgba(15, 76, 138, 0.22);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow);
    gap: 10px;
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.10);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.42);
}

.btn-full {
    width: 100%;
    border-radius: 16px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    backdrop-filter: blur(6px);
}

.slider-arrow.prev {
    left: 18px;
}

.slider-arrow.next {
    right: 18px;
}

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.slider-dot.is-active {
    width: 32px;
    border-radius: 999px;
    background: var(--accent);
}

/* SECTIONS */
.section {
    padding: 88px 0;
}

.section-heading {
    margin-bottom: 38px;
}

.section-heading.centered {
    text-align: center;
}

.section-heading.compact {
    max-width: 860px;
    margin-inline: auto;
}

.eyebrow {
    background: rgba(15, 76, 138, 0.08);
    color: var(--primary);
}

.section-heading h2 {
    margin: 14px 0 10px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
}

.section-heading p {
    margin: 0 auto;
    color: var(--muted);
    max-width: 760px;
    font-size: 1.06rem;
}

.services-grid,
.testimonial-grid,
.footer-grid {
    display: grid;
    gap: 24px;
}

.services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.testimonial-card,
.enquiry-wrap,
.cta-box,
.faq-item {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(15, 76, 138, 0.14);
    box-shadow: var(--shadow);
}

.service-card {
    padding: 28px;
    border-radius: 22px;
}

.service-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(15, 76, 138, 0.12), rgba(244, 195, 22, 0.16));
    color: var(--primary);
    font-size: 1.5rem;
}

.service-icon i {
    line-height: 1;
}

.service-card h3 {
    margin: 18px 0 12px;
    font-size: 1.6rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.service-card li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    color: #233247;
}

.service-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #1e9ae8;
}

.card-link {
    color: var(--primary);
    font-weight: 800;
}

.card-link::before {
    content: '» ';
}

.section-testimonials {
    background: linear-gradient(180deg, rgba(244, 195, 22, 0.14), rgba(255, 255, 255, 0));
}

.testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
    border-radius: 22px;
    padding: 28px;
}

.testimonial-text {
    margin: 0 0 28px;
    color: #384760;
    font-size: 1.08rem;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 14px;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), #2ea5f0);
    box-shadow: 0 10px 22px rgba(15, 76, 138, 0.22);
}

.testimonial-user h3 {
    margin: 0;
    color: #58b2f0;
}

.testimonial-user span {
    color: var(--muted);
}

/* FORM */
.enquiry-wrap {
    border-radius: 28px;
    padding: 44px;
    max-width: 980px;
}

.enquiry-wrap .section-heading {
    margin-bottom: 28px;
}

.flash-message {
    padding: 14px 18px;
    border-radius: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.flash-message.success {
    background: #e9f9ef;
    color: #0f7c34;
    border: 1px solid #b9e4c7;
}

.flash-message.error {
    background: #fff2f2;
    color: #b3261e;
    border: 1px solid #f1b7b3;
}

.enquiry-form {
    display: grid;
    gap: 14px;
}

.form-grid {
    display: grid;
    gap: 14px;
}

.form-grid.two {
    grid-template-columns: 1fr 1fr;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    width: 100%;
    border: 1.5px solid rgba(15, 76, 138, 0.32);
    background: rgba(255, 255, 255, 0.92);
    min-height: 58px;
    border-radius: 14px;
    padding: 14px 18px;
    color: var(--text);
    outline: none;
}

.enquiry-form textarea {
    min-height: 140px;
    resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(15, 76, 138, 0.08);
}

/* CTA */
.section-cta {
    padding-top: 40px;
}

.cta-box {
    border-radius: 28px;
    padding: 56px 32px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.93), rgba(248, 250, 255, 0.93)),
                linear-gradient(135deg, rgba(15, 76, 138, 0.08), rgba(244, 195, 22, 0.12));
}

.cta-note {
    margin: 24px 0 0;
    font-size: 1.2rem;
    font-style: italic;
}

/* FAQ */
.faq-wrap {
    max-width: 1040px;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    border-radius: 18px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    border: 0;
    background: transparent;
    padding: 22px 24px;
    font-weight: 800;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
}

.faq-icon {
    font-size: 1.5rem;
    line-height: 1;
    color: var(--primary);
}

.faq-answer {
    display: none;
    padding: 0 24px 24px;
    color: #40516c;
}

.faq-item.is-open .faq-answer {
    display: block;
}

.faq-item.is-open .faq-icon {
    transform: rotate(45deg);
}

/* FOOTER */
.site-footer {
    margin-top: 70px;
    background: linear-gradient(180deg, #0e457d, #0a335b);
    color: rgba(255, 255, 255, 0.9);
}

.footer-grid {
    grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
    padding: 60px 0 40px;
    align-items: start;
}

.site-footer h3 {
    margin-top: 0;
    margin-bottom: 12px;
    color: var(--white);
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer li {
    margin-bottom: 10px;
}

.site-footer a:hover {
    color: var(--accent);
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.8rem;
    transition: transform 0.2s ease, color 0.2s ease;
}

.footer-social-links a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 16px 0;
    text-align: center;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        width: 100%;
        background: #ffffff;
        border-top: 1px solid rgba(15, 76, 138, 0.08);
        border-bottom: 1px solid rgba(15, 76, 138, 0.08);
        padding: 16px 20px 22px;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        box-shadow: 0 20px 30px rgba(10, 30, 60, 0.08);
        z-index: 9999;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav > a,
    .nav-dropdown,
    .nav-dropdown-toggle,
    .nav-dropdown-menu {
        width: 100%;
    }

    .site-nav > a,
    .nav-dropdown-toggle {
        padding: 14px 0;
    }

    .nav-dropdown {
        position: static;
    }

    .nav-dropdown-menu {
        position: static;
        min-width: 100%;
        margin-top: 6px;
        background: rgba(15, 76, 138, 0.06);
        color: var(--text);
        box-shadow: none;
        border-radius: 12px;
        padding: 8px;
        display: none;
    }

    .nav-dropdown.is-open .nav-dropdown-menu {
        display: block;
    }

    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
        display: none;
    }

    .nav-dropdown-menu a {
        color: var(--text);
        padding: 10px 12px;
    }

    .nav-dropdown-menu a:hover {
        background: rgba(15, 76, 138, 0.08);
    }

    .services-grid,
    .testimonial-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-slider {
        min-height: 640px;
    }

    .hero-content {
        min-height: 640px;
        padding: 88px 0 100px;
    }
}

@media (max-width: 860px) {
    .services-grid,
    .testimonial-grid,
    .footer-grid,
    .form-grid.two {
        grid-template-columns: 1fr;
    }

    .hero-copy h1 {
        text-transform: none;
    }

    .enquiry-wrap {
        padding: 28px 18px;
    }
}

@media (max-width: 640px) {
    .header-inner {
        min-height: 84px;
    }

    .site-logo,
    .footer-logo {
        max-height: 58px;
    }

    .container {
        width: min(100% - 20px, 1180px);
    }

    .hero-slider {
        min-height: 560px;
    }

    .hero-content {
        min-height: 560px;
    }

    .hero-copy p {
        font-size: 1rem;
    }

    .slider-arrow {
        width: 42px;
        height: 42px;
    }

    .section {
        padding: 68px 0;
    }

    .faq-question {
        font-size: 1rem;
        padding: 18px;
    }

    .faq-answer {
        padding: 0 18px 18px;
    }
}