/* ===== Base ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-bg: #0f1419;
    --color-surface: #1a2332;
    --color-surface-2: #243044;
    --color-text: #f0f2f5;
    --color-text-muted: #9aa5b5;
    --color-primary: #e85d04;
    --color-primary-dark: #c44d00;
    --color-primary-soft: rgba(232, 93, 4, 0.15);
    --color-accent: #0a0e14;
    --color-border: #2d3a4d;
    --color-success: #2e9b5e;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.45);
    --font: 'Inter', system-ui, -apple-system, sans-serif;
    --header-h: 76px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

.container {
    width: min(1100px, 92%);
    margin-inline: auto;
}

/* ===== Header ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 20, 25, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    height: var(--header-h);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-weight: 700;
    font-size: 1.05rem;
}

.logo-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-primary);
}

.logo-text {
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--color-primary);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text);
    border-radius: 1px;
    transition: 0.25s;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 4rem 0 5rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(8, 11, 16, 0.97) 0%,
        rgba(8, 11, 16, 0.92) 38%,
        rgba(8, 11, 16, 0.65) 65%,
        rgba(8, 11, 16, 0.4) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 580px;
    padding: 2rem 2.25rem;
    background: rgba(8, 11, 16, 0.55);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
}

.hero-logo-wrap {
    margin-bottom: 1.5rem;
}

.hero-logo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-primary);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero-sub {
    font-size: 1.1rem;
    color: #d0d6de;
    margin-bottom: 1.75rem;
    line-height: 1.55;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 2.5rem;
}

.hero-values {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.value-icon {
    font-size: 1.1rem;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.6rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--color-primary-dark);
}

.btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.35);
    color: white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: white;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
    padding: 0.95rem;
}

/* ===== Services ===== */
.services {
    padding: 5rem 0 4rem;
    background: var(--color-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--color-surface);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: rgba(232, 93, 4, 0.4);
}

.service-card.featured {
    border-color: rgba(232, 93, 4, 0.25);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-soft);
    color: var(--color-primary);
    border-radius: 12px;
    margin-bottom: 1.25rem;
}

.service-icon.muted {
    background: rgba(154, 165, 181, 0.12);
    color: var(--color-text-muted);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.service-list {
    margin-bottom: 1.5rem;
}

.service-list li {
    position: relative;
    padding-left: 1.35rem;
    margin-bottom: 0.45rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
}

.badge {
    display: inline-block;
    margin-top: auto;
    padding: 0.35rem 0.85rem;
    background: rgba(154, 165, 181, 0.15);
    color: var(--color-text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 999px;
    width: fit-content;
}

/* ===== About ===== */
.about {
    padding: 5rem 0 4rem;
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
}

.about-card {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2.5rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.about-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.about-role {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.about-content p {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    font-size: 0.98rem;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    justify-content: center;
}

.highlight {
    padding: 1.1rem 1.25rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    border-left: 3px solid var(--color-primary);
}

.highlight strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
    color: var(--color-text);
}

.highlight span {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* ===== Why Us ===== */
.why-us {
    padding: 0 0 4.5rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    background: var(--color-surface);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--color-border);
}

.why-item {
    text-align: center;
}

.why-icon {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
}

.why-item strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-primary);
}

.why-item p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* ===== Enquiry ===== */
.enquiry {
    padding: 5rem 0;
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.contact-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 1rem 1.5rem;
    background: var(--color-surface-2);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    min-width: 220px;
    transition: border-color 0.2s;
}

a.contact-pill:hover {
    border-color: var(--color-primary);
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
    font-weight: 600;
}

.contact-value {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-primary);
}

.enquiry-form {
    max-width: 640px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    color: var(--color-text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    font-family: inherit;
    font-size: 0.95rem;
    border: 1.5px solid var(--color-border);
    border-radius: 8px;
    background: var(--color-bg);
    color: var(--color-text);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #5a6575;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.2);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--color-surface);
    color: var(--color-text);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 1rem;
}

/* Hide Netlify honeypot from real users */
.hidden-honeypot {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

/* Success state */
.form-success {
    max-width: 420px;
    margin: 0 auto;
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: rgba(46, 155, 94, 0.15);
    color: var(--color-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
}

.form-success h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
}

.success-email {
    color: var(--color-primary) !important;
    font-weight: 600;
    margin-bottom: 1.5rem !important;
}

.form-success .btn-outline {
    border-color: var(--color-border);
    color: var(--color-text);
}

.form-success .btn-outline:hover {
    background: var(--color-surface-2);
    border-color: var(--color-text-muted);
}

/* ===== Footer ===== */
.footer {
    background: var(--color-accent);
    color: rgba(255, 255, 255, 0.8);
    padding: 2.75rem 0;
    border-top: 1px solid var(--color-border);
}

.footer-inner {
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-primary);
}

.footer-brand strong {
    display: block;
    font-size: 1.05rem;
    color: white;
}

.footer-brand span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-text {
    font-size: 0.9rem;
    opacity: 0.75;
    margin-bottom: 0.5rem;
}

.footer-email {
    margin-bottom: 1.25rem;
}

.footer-email a {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.footer-email a:hover {
    text-decoration: underline;
}

.footer-copy {
    font-size: 0.8rem;
    opacity: 0.5;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: var(--color-bg);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0;
        border-bottom: 1px solid var(--color-border);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        padding: 0.85rem 0;
        border-bottom: 1px solid var(--color-border);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .menu-toggle {
        display: flex;
    }

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

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

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

    .logo-text {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 3.5rem 0 4rem;
    }

    .hero-logo {
        width: 110px;
        height: 110px;
    }

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

    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .about-card {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding: 1.75rem;
    }

    .services {
        padding: 3.5rem 0 3rem;
    }

    .about {
        padding: 3.5rem 0 3rem;
    }

    .enquiry {
        padding: 3.5rem 0;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .contact-pill {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-values {
        gap: 1rem;
    }
}
