:root {
    --navy-950: #0A1220;
    --navy-900: #0F1D38;
    --navy-800: #16305C;
    --navy-700: #1F3F78;
    --navy-600: #2D55A4;

    --gold-700: #8A6A30;
    --gold-600: #A67C3D;
    --gold-500: #B68B43;
    --gold-400: #CBA35F;
    --gold-300: #DDBE83;
    --gold-100: #F3E7CE;

    --cream: #FAF7F1;
    --cream-dim: #F1ECE0;
    --paper: #FFFFFF;
    --ink: #1C2230;
    --ink-soft: #4B5262;
    --ink-faint: #8891A0;
    --line: #E4DECE;

    --shadow-sm: 0 1px 3px rgba(10, 18, 32, 0.08);
    --shadow-md: 0 8px 24px rgba(10, 18, 32, 0.12);
    --shadow-lg: 0 20px 50px rgba(10, 18, 32, 0.22);

    --radius: 4px;
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--cream);
    font-family: "Manrope", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    color: var(--ink);
}

h1, h2, h3, h4 {
    font-family: "Fraunces", Georgia, serif;
    color: var(--navy-900);
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 0.5em;
}

p {
    color: var(--ink-soft);
}

hr {
    height: 1px;
    background-color: var(--line);
    border: none;
    margin: 0 auto;
    max-width: 1180px;
}

a {
    color: var(--navy-700);
}

a:hover {
    color: var(--gold-600);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    font-family: "Manrope", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-600);
    margin-bottom: 0.9em;
}

.eyebrow::before {
    content: "";
    display: block;
    width: 26px;
    height: 1px;
    background: var(--gold-500);
}

.eyebrow-center {
    justify-content: center;
    width: 100%;
}

/* ============================== Header ============================== */

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--navy-950);
    border-bottom: 1px solid rgba(203, 163, 95, 0.25);
}

#head-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

#branding {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

header img {
    width: 200px;
    height: 68px;
    display: block;
    object-fit: contain;
}

.nav-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    gap: 2.4rem;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 6px 0;
    position: relative;
}

.nav-links a strong {
    font-weight: 600;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -4px;
    height: 2px;
    background: var(--gold-500);
    transition: right 0.25s ease;
}

.nav-links a:hover {
    color: var(--gold-300);
}

.nav-links a:hover::after {
    right: 0;
}

.nav-links .active {
    color: var(--gold-400);
}

.nav-links .active::after {
    right: 0;
    background: var(--gold-400);
}

.nav-cta {
    background: var(--gold-500);
    color: var(--navy-950) !important;
    padding: 10px 20px !important;
    border-radius: 2px;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--gold-400);
    color: var(--navy-950) !important;
}

/* ============================== Hero / Slider ============================== */

.slider-container {
    position: relative;
    width: 100%;
    height: 560px;
    margin: 0;
    overflow: hidden;
}

.slider-container::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 18, 32, 0.55) 0%,
        rgba(10, 18, 32, 0.25) 38%,
        rgba(10, 18, 32, 0.75) 100%
    );
    pointer-events: none;
}

.slider {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform 0.8s ease-in-out;
    margin: 0;
    padding: 0;
}

.slide {
    min-width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-copy {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    left: 0;
    right: 0;
}

.hero-copy .eyebrow {
    color: var(--gold-300);
}

.hero-copy h1 {
    color: var(--paper);
    font-size: clamp(2.1rem, 4.2vw, 3.4rem);
    max-width: 14ch;
    margin-bottom: 0.35em;
}

.hero-copy p {
    color: var(--cream-dim);
    max-width: 46ch;
    font-size: 1.05rem;
    margin-bottom: 1.6em;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 26px;
    border-radius: 2px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold-500);
    color: var(--navy-950);
}

.btn-gold:hover {
    background: var(--gold-400);
    color: var(--navy-950);
}

.btn-ghost {
    background: transparent;
    color: var(--paper);
    border-color: rgba(250, 247, 241, 0.55);
}

.btn-ghost:hover {
    border-color: var(--paper);
    color: var(--paper);
}

.prev,
.next {
    position: absolute;
    z-index: 3;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: 1px solid rgba(250, 247, 241, 0.4);
    border-radius: 50%;
    background-color: rgba(10, 18, 32, 0.35);
    color: var(--cream);
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.prev {
    left: 24px;
}

.next {
    right: 24px;
}

.prev:hover,
.next:hover {
    background-color: rgba(10, 18, 32, 0.7);
    border-color: var(--gold-400);
}

/* ============================== Home content ============================== */

.home-content {
    color: var(--ink);
}

#welcome {
    text-align: center;
    max-width: 760px;
    margin: 72px auto 48px;
    padding: 0 24px;
}

#welcome h4 {
    font-size: 1.7rem;
}

#welcome p {
    margin-top: 20px;
    font-size: 1.02rem;
}

#top-msg {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 1180px;
    margin: 0 auto 90px;
    padding: 0 32px;
    align-items: stretch;
}

#services-short,
#coverage {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 34px 36px;
    box-shadow: var(--shadow-sm);
}

#services-short h2,
#coverage h2 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

#services-short ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

#services-short li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--ink-soft);
}

#services-short li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--gold-600);
    font-size: 0.8rem;
    margin-top: 4px;
}

#coverage ul {
    list-style: none;
    padding: 0;
    margin: 6px 0 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

#coverage li {
    position: relative;
    padding-left: 26px;
}

#coverage li::before {
    content: "";
    position: absolute;
    left: 3px;
    top: -4px;
    bottom: -4px;
    width: 1px;
    background: var(--gold-400);
}

#coverage li::after {
    content: "";
    position: absolute;
    left: 0;
    top: -4px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-500);
}

.coverage-name {
    display: block;
    font-family: "Fraunces", serif;
    font-size: 1.15rem;
    color: var(--navy-900);
    font-weight: 600;
}

.coverage-tag {
    display: inline-block;
    margin-top: 4px;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ink-faint);
}

/* ============================== FAQ ============================== */

#faq {
    max-width: 860px;
    margin: 0 auto 100px;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
}

#faq h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 6px;
}

#queries {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#faq details {
    width: 100%;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 4px 22px;
    overflow: hidden;
}

#faq details[open],
#faq details.is-open {
    border-color: var(--gold-400);
    box-shadow: var(--shadow-sm);
}

#faq summary {
    cursor: pointer;
    font-family: "Fraunces", serif;
    font-weight: 600;
    font-size: 1.02rem;
    color: var(--navy-900);
    text-align: left;
    width: 100%;
    padding: 18px 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

#faq summary::-webkit-details-marker {
    display: none;
}

#faq summary::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.8rem;
    color: var(--gold-600);
    flex-shrink: 0;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

#faq details.is-open summary::after {
    transform: rotate(180deg);
}

#faq details[open]:not(.is-open) summary::after {
    transform: rotate(180deg);
}

.faq-content {
    padding-bottom: 20px;
}

#faq p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.96rem;
}

@media (prefers-reduced-motion: reduce) {
    #faq summary::after {
        transition: none;
    }
}

/* ============================== About page ============================== */

.page-banner {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.page-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,18,32,0.72) 0%, rgba(10,18,32,0.5) 100%);
}

.page-banner-copy {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    left: 0;
    right: 0;
}

.page-banner-copy .eyebrow {
    color: var(--gold-300);
}

.page-banner-copy h1 {
    color: var(--paper);
    font-size: clamp(1.9rem, 3.6vw, 2.6rem);
    margin: 0;
}

.about-content {
    color: var(--ink);
}

#about {
    text-align: center;
    max-width: 720px;
    margin: 64px auto 20px;
    padding: 0 24px;
}

#about p {
    font-size: 1.02rem;
    margin-top: 18px;
}

#group-heading {
    text-align: center;
    max-width: none;
    margin: 90px auto 40px;
    border: none;
    padding: 0;
}

#group-heading::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: var(--gold-500);
    margin: 16px auto 0;
}

.child-company {
    max-width: 1180px;
    margin: 0 auto 28px;
    padding: 44px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    background: var(--paper);
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.child-company img {
    width: 160px;
    height: 160px;
    object-fit: contain;
}

.child-company h3 {
    color: var(--navy-800);
    font-size: 1.3rem;
    margin-top: 12px;
}

#comp01, #comp02 {
    box-shadow: var(--shadow-sm);
}

#comp01 {
    border-left: 3px solid var(--gold-500);
}

#comp02 {
    border-right: 3px solid var(--gold-500);
}

.name-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 200px;
}

.name-logo a {
    text-decoration: none;
}

.name-logo a:hover {
    color: var(--gold-600);
}

.service {
    flex: 1;
    min-width: 280px;
}

.service p {
    font-size: 0.98rem;
}

/* ============================== Footer ============================== */

footer {
    background-color: var(--navy-950);
    padding: 64px 32px 24px;
    color: var(--cream-dim);
    margin-top: 40px;
}

footer h3 {
    color: var(--paper);
    font-size: 1.5rem;
    text-align: left;
}

footer h4 {
    color: var(--gold-400);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    text-align: left;
    margin-bottom: 14px;
}

#foundation {
    max-width: 1180px;
    margin: 36px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(203, 163, 95, 0.18);
}

footer > h3 {
    max-width: 1180px;
    margin: 0 auto;
}

#left-foot p {
    margin: 0;
}

#left-foot a {
    color: var(--cream-dim);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

#left-foot a:hover {
    color: var(--gold-400);
}

#right-foot ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#right-foot li {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    max-width: 280px;
    font-size: 0.92rem;
    border-bottom: 1px dashed rgba(203, 163, 95, 0.2);
    padding-bottom: 8px;
}

#right-foot span {
    color: var(--gold-300);
}

.fa-mobile, .fa-house {
    color: var(--gold-400);
}

#tm {
    max-width: 1180px;
    margin: 40px auto 0;
    padding-top: 20px;
    text-align: left;
    font-size: 0.82rem;
    color: var(--ink-faint);
}

/* ============================== Responsive ============================== */

@media (max-width: 860px) {
    #head-content {
        flex-wrap: wrap;
        padding: 14px 20px;
    }

    header img {
        width: 160px;
        height: 54px;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        gap: 1.6rem;
        padding-bottom: 10px;
    }

    .slider-container {
        height: 440px;
    }

    #top-msg {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .slider-container {
        height: 380px;
    }

    .hero-copy p {
        display: none;
    }

    .child-company {
        padding: 28px 22px;
        text-align: center;
    }

    #comp01, #comp02 {
        border-left: none;
        border-right: none;
        border-top: 3px solid var(--gold-500);
    }

    #foundation {
        flex-direction: column;
        gap: 32px;
    }
}
