:root {
    --navy: #163a34;
    --navy-dark: #0d1715;
    --navy-mid: #2b574f;
    --gold: #c59a4a;
    --gold-light: #e4c37a;
    --gold-dark: #8f6e2f;
    --white: #ffffff;
    --off-white: #f6f7f4;
    --light-gray: #eef2ef;
    --text-dark: #162220;
    --text-muted: #5c6a65;
    --border: #dce5e0;
    --shadow: 0 10px 32px rgba(13, 23, 21, 0.10);
    --shadow-lg: 0 18px 54px rgba(13, 23, 21, 0.16);
    --radius: 12px;
    --radius-lg: 22px;
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Roboto, Arial, sans-serif;
    color: var(--text-dark);
    background: linear-gradient(180deg, #f8faf8 0%, #f3f5f4 100%);
    line-height: 1.7;
    font-size: 16px;
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle at top left, rgba(197, 154, 74, 0.06), transparent 28%),
        radial-gradient(circle at bottom right, rgba(22, 58, 52, 0.04), transparent 24%);
    pointer-events: none;
    z-index: -1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: var(--navy);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    color: var(--gold);
}

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

.container {
    width: min(1140px, calc(100% - 2rem));
    margin: 0 auto;
}

.section {
    padding: 90px 0;
    position: relative;
}

.section-alt {
    background: #f5f7f6;
}

.page-hero {
    padding: 88px 0 72px;
    background: linear-gradient(135deg, rgba(22, 58, 52, 0.97), rgba(13, 23, 21, 0.97));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(229, 195, 122, 0.22), transparent 58%);
    pointer-events: none;
}

.page-hero-content {
    max-width: 760px;
}

.page-hero h1 {
    font-size: clamp(2rem, 3.3vw, 3rem);
    color: var(--white);
    margin-bottom: 14px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.02rem;
}

.section-label {
    display: block;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 28px;
}

.section-heading h2 {
    font-size: clamp(1.6rem, 2.3vw, 2.2rem);
    margin-bottom: 10px;
}

.section-heading p {
    color: var(--text-muted);
    font-size: 1rem;
}

.info-list {
    list-style: none;
    display: grid;
    gap: 10px;
    margin: 12px 0 16px;
}

.info-list li {
    padding: 10px 12px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-dark);
}

.topbar {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(185, 145, 74, 0.18);
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.topbar a {
    color: rgba(255, 255, 255, 0.72);
}

.topbar span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(13, 23, 21, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
    border-bottom: 1px solid rgba(229, 195, 122, 0.16);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, var(--navy-dark), var(--navy));
    border: 1px solid rgba(185, 145, 74, 0.7);
    color: var(--gold-light);
    font-weight: 800;
    letter-spacing: 0.08em;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.1;
}

.brand-tagline {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 999px;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.08);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-cta {
    background: linear-gradient(135deg, #cda35c, #e0c47a);
    color: var(--navy-dark) !important;
    font-weight: 700;
    padding: 9px 16px !important;
    margin-left: 8px;
    box-shadow: 0 7px 18px rgba(185, 145, 74, 0.16);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 4px 0;
}

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    min-height: 92vh;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
    transform: scale(1.03);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(16, 24, 32, 0.82) 0%, rgba(16, 24, 32, 0.48) 45%, rgba(16, 24, 32, 0.25) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    color: var(--white);
    padding: 7rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 4.2vw, 3.7rem);
    color: var(--white);
    margin-bottom: 16px;
}

.hero-content p {
    font-size: 1.04rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 620px;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.btn-gold,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: var(--transition);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), #d8b56a);
    color: var(--navy-dark);
    box-shadow: 0 8px 20px rgba(197, 154, 74, 0.16);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(185, 145, 74, 0.25);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
    cursor: pointer;
    font-size: 1.2rem;
}

.hero-prev {
    left: 1.2rem;
}

.hero-next {
    right: 1.2rem;
}

.hero-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.hero-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
}

.hero-dot.active {
    background: var(--gold-light);
}

.slide-counter {
    position: absolute;
    bottom: 24px;
    right: 2rem;
    z-index: 2;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    letter-spacing: 0.12em;
}

.stats-bar {
    background: linear-gradient(135deg, var(--navy-dark), #14232a);
    color: var(--white);
    padding: 28px 0;
    border-top: 1px solid rgba(229, 195, 122, 0.16);
    border-bottom: 1px solid rgba(229, 195, 122, 0.16);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stat-item {
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
}

.stat-item strong {
    display: block;
    font-size: 1.15rem;
    color: var(--gold-light);
    margin-bottom: 6px;
}

.stat-item span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.about-section {
    padding: 90px 0 70px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-image-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(185, 145, 74, 0.16);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 52px rgba(16, 24, 32, 0.18);
}

.about-image-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 14px;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.pill {
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--off-white);
    color: var(--navy);
    border: 1px solid var(--border);
    font-size: 0.9rem;
    font-weight: 600;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(13, 23, 21, 0.14);
}

.service-card h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.service-card p {
    color: var(--text-muted);
}

.leadership-section {
    padding-top: 70px;
}

.leadership-card {
    background: linear-gradient(130deg, #f9fdfb 0%, var(--white) 100%);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
}

.leadership-card p {
    color: var(--text-muted);
    margin-top: 8px;
}

.leaders {
    display: grid;
    gap: 14px;
}

.leaders>div {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.leaders>div:last-child {
    border-bottom: 0;
}

.credibility-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 24px;
}

.credibility-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.map-card iframe {
    width: 100%;
    height: 240px;
    border: 0;
    border-radius: 12px;
    margin: 12px 0 10px;
    background: #e9f0eb;
}

.text-link {
    color: var(--navy);
    font-weight: 700;
}

.steps-list {
    padding-left: 1.1rem;
    display: grid;
    gap: 8px;
    color: var(--text-muted);
    margin-top: 8px;
}

.steps-list li {
    line-height: 1.6;
}

.enquiry-card {
    background: linear-gradient(135deg, var(--white), #f7fcf9);
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 30px;
    box-shadow: var(--shadow);
}

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

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.enquiry-form label {
    display: grid;
    gap: 8px;
    font-weight: 600;
    color: var(--navy);
}

.enquiry-form input,
.enquiry-form textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
    font: inherit;
    color: var(--text-dark);
    background: var(--white);
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
    outline: 2px solid rgba(185, 145, 74, 0.25);
    border-color: var(--gold);
}

.form-feedback {
    min-height: 1.2rem;
    color: var(--navy-mid);
    font-weight: 600;
}

.footer {
    background: linear-gradient(135deg, var(--navy-dark), #14232a 70%);
    color: rgba(255, 255, 255, 0.78);
    padding: 60px 0 24px;
    border-top: 1px solid rgba(229, 195, 122, 0.16);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.footer h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.footer p {
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 24px;
    padding-top: 16px;
    color: rgba(255, 255, 255, 0.64);
}

@media (max-width: 900px) {
    .nav-links {
        position: absolute;
        top: 72px;
        right: 1rem;
        background: rgba(16, 24, 32, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        padding: 12px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        min-width: 180px;
    }

    .nav-links.open {
        display: flex;
    }

    .menu-toggle {
        display: inline-block;
    }

    .stats-grid,
    .about-grid,
    .service-grid,
    .leadership-card,
    .credibility-grid,
    .form-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 5rem 0;
    }
}

@media (max-width: 640px) {
    .hero-slider {
        min-height: 84vh;
    }

    .hero-content h1 {
        font-size: 2.1rem;
    }

    .hero-arrow {
        display: none;
    }

    .hero-content {
        padding: 4rem 0;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .topbar-inner {
        justify-content: center;
    }
}