:root {
    --primary: #0f3d5e;
    --primary-dark: #0b2d46;
    --secondary: #da9b33;
    --secondary-soft: #f8ebd2;
    --surface: #ffffff;
    --surface-soft: #f5f7fb;
    --text: #20303f;
    --muted: #5f7183;
    --border: rgba(15, 61, 94, 0.1);
    --shadow: 0 24px 60px rgba(11, 45, 70, 0.12);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(218, 155, 51, 0.12), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    line-height: 1.7;
}

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

img {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
.navbar-brand strong {
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.02em;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

.topbar {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.92rem;
}

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

.topbar i {
    color: var(--secondary);
    margin-right: 0.4rem;
}

.site-header {
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(15, 61, 94, 0.08);
}

.site-header.scrolled {
    box-shadow: 0 16px 45px rgba(15, 61, 94, 0.08);
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

.brand-logo {
   
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-copy strong {
    font-size: 1.05rem;
    color: var(--primary-dark);
}

.brand-copy small {
    color: var(--muted);
    font-size: 0.8rem;
}

.navbar-toggler {
    border: 0;
    box-shadow: none !important;
}

.navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon {
    display: inline-block;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-dark);
    border-radius: 999px;
}

.navbar-toggler-icon::before {
    top: 0.35rem;
}

.navbar-toggler-icon::after {
    bottom: 0.35rem;
}

.nav-link {
    color: var(--text);
    font-weight: 600;
    padding: 0.75rem 1rem !important;
}

.nav-link.active,
.nav-link:hover,
.dropdown-item:hover,
.dropdown-item:focus {
    color: var(--primary);
}

.dropdown-menu {
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 0.8rem;
}

.dropdown-item {
    border-radius: 12px;
    padding: 0.65rem 0.85rem;
    font-weight: 600;
}

.btn-brand,
.btn-outline-brand {
    border-radius: 999px;
    padding: 0.9rem 1.5rem;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-brand {
    background: linear-gradient(135deg, var(--secondary), #f0b14e);
    border: 0;
    color: #1d1b15;
    box-shadow: 0 16px 30px rgba(218, 155, 51, 0.25);
}

.btn-brand:hover {
    transform: translateY(-2px);
    color: #1d1b15;
}

.btn-outline-brand {
    border: 1px solid rgba(15, 61, 94, 0.15);
    background: #fff;
    color: var(--primary);
}

.btn-outline-brand:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    color: var(--primary);
}

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

.hero-section {
    padding: 6rem 0 5rem;
}

.hero-section::after,
.inner-hero::after,
.service-hero::after {
    content: '';
    position: absolute;
    inset: auto -10% -35% auto;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 61, 94, 0.1), transparent 65%);
}

.hero-section h1,
.inner-hero h1,
.service-hero h1 {
    font-size: clamp(2.5rem, 4vw, 4.8rem);
    color: var(--primary-dark);
    margin-bottom: 1.2rem;
}

.hero-copy,
.inner-hero p,
.service-hero p {
    font-size: 1.08rem;
    color: var(--muted);
    max-width: 62ch;
}

.hero-panel {
    position: relative;
    padding: 2rem;
    border-radius: calc(var(--radius) + 6px);
    background: linear-gradient(180deg, #ffffff, #eef6fb);
    border: 1px solid rgba(15, 61, 94, 0.1);
    box-shadow: var(--shadow);
}

.hero-panel-card,
.hero-highlight {
    border-radius: 20px;
    padding: 1.4rem;
    background: #fff;
}

.hero-highlight {
    margin-top: 1rem;
    background: linear-gradient(135deg, var(--primary), #1c6a98);
    color: #fff;
}

.hero-highlight span {
    display: block;
    margin-bottom: 0.45rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
}

.feature-list li,
.contact-points li,
.footer-contact li,
.check-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.feature-list i,
.contact-points i,
.check-item i {
    margin-top: 0.35rem;
    color: var(--secondary);
}

.hero-stats {
    margin-top: 2rem;
}

.stat-card,
.service-card,
.reason-card,
.testimonial-card,
.gallery-tile,
.mini-panel,
.info-card,
.value-card,
.sidebar-card,
.contact-card,
.address-card {
    height: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 34px rgba(15, 61, 94, 0.06);
}

.stat-card {
    padding: 1.2rem 1.1rem;
}

.stat-card strong {
    display: block;
    color: var(--primary-dark);
    font-size: 1.8rem;
}

.stat-card span {
    color: var(--muted);
    font-size: 0.95rem;
}

.section-space {
    padding: 5.2rem 0;
}

.section-soft {
    background: linear-gradient(180deg, rgba(15, 61, 94, 0.03), rgba(15, 61, 94, 0.06));
}

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

.section-heading h2,
.content-card h2,
.inner-hero h1,
.service-hero h1,
.service-card h3,
.reason-card h3,
.testimonial-card h3,
.sidebar-card h3,
.value-card h3,
.info-card h3,
.address-card h3,
.contact-card h3 {
    color: var(--primary-dark);
}

.section-badge,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--secondary-soft);
    color: #8e6318;
    border-radius: 999px;
    padding: 0.45rem 0.85rem;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.service-card,
.reason-card,
.testimonial-card,
.mini-panel,
.info-card,
.value-card,
.sidebar-card,
.contact-card,
.address-card {
    padding: 1.7rem;
}

.service-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.gallery-tile:hover,
.reason-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(15, 61, 94, 0.1);
}

.icon-wrap {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(15, 61, 94, 0.08);
    color: var(--primary);
    font-size: 1.35rem;
    margin-bottom: 1.2rem;
}

.service-card p,
.reason-card p,
.testimonial-card p,
.mini-panel p,
.info-card p,
.value-card p,
.sidebar-card p,
.contact-card p,
.address-card p,
.section-heading p,
.content-card p {
    color: var(--muted);
}

.service-link,
.text-link {
    color: var(--primary);
    font-weight: 700;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.industry-pill {
    border-radius: 18px;
    padding: 1rem 1.2rem;
    background: #fff;
    border: 1px solid var(--border);
    font-weight: 700;
    color: var(--primary-dark);
    text-align: center;
}

.content-card {
    padding-right: 1rem;
}

.about-grid,
.info-stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.why-strip {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
}

.why-strip h2,
.why-strip .section-badge,
.why-strip .text-link {
    color: #fff;
}

.why-strip .section-badge {
    background: rgba(255, 255, 255, 0.14);
}

.why-strip .reason-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
}

.why-strip .reason-card p {
    color: rgba(255, 255, 255, 0.82);
}

.testimonial-card span {
    color: #8a97a5;
    font-size: 0.92rem;
}

.gallery-tile {
    min-height: 220px;
    padding: 1.5rem;
    display: grid;
    place-items: end start;
    background:
        linear-gradient(160deg, rgba(15, 61, 94, 0.84), rgba(28, 106, 152, 0.7)),
        linear-gradient(135deg, rgba(218, 155, 51, 0.18), transparent);
    color: #fff;
}

.gallery-tile span {
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.enquiry-form {
    padding: 2rem;
    border-radius: calc(var(--radius) + 4px);
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.form-control,
.form-select {
    border-radius: 14px;
    border: 1px solid rgba(15, 61, 94, 0.12);
    min-height: 52px;
    padding: 0.85rem 1rem;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(15, 61, 94, 0.28);
    box-shadow: 0 0 0 0.2rem rgba(15, 61, 94, 0.08);
}

.form-note {
    color: var(--muted);
    font-size: 0.94rem;
}

.inner-hero,
.service-hero {
    padding: 5rem 0 3rem;
}

.feature-block {
    margin-top: 1.8rem;
    padding: 1.6rem;
    border-radius: var(--radius);
    background: rgba(15, 61, 94, 0.04);
    border: 1px solid var(--border);
}

.feature-block ul {
    padding-left: 1.2rem;
    margin-bottom: 0;
}

.feature-block li {
    margin-bottom: 0.6rem;
}

.sidebar-card {
    position: sticky;
    top: 110px;
}

.check-panel {
    padding: 2rem;
    border-radius: calc(var(--radius) + 4px);
    background: #fff;
    box-shadow: var(--shadow);
}

.check-item + .check-item {
    margin-top: 1rem;
}

.site-footer {
    background: #0d2030;
    color: rgba(255, 255, 255, 0.78);
}

.site-footer h3,
.site-footer h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-links li + li,
.footer-contact li + li {
    margin-top: 0.85rem;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-social a:hover {
    color: var(--secondary);
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.95rem;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 20px;
        background: #fff;
        border: 1px solid var(--border);
    }

    .sidebar-card {
        position: static;
    }

    .hero-section {
        padding-top: 4.5rem;
    }
}

@media (max-width: 767.98px) {
    .section-space {
        padding: 4rem 0;
    }

    .hero-section h1,
    .inner-hero h1,
    .service-hero h1 {
        font-size: 2.3rem;
    }

    .about-grid,
    .info-stack,
    .industry-grid {
        grid-template-columns: 1fr;
    }

    .hero-panel,
    .enquiry-form {
        padding: 1.4rem;
    }

    .brand-logo {
        width: 112px;
    }
}
