﻿:root {
    /* refined premium palette */
    --bg-1: #f3f6f8;
    --bg-2: #eef3f6;
    --card: #ffffff;
    --muted: #6b7280;
    --navy: #071428; /* deep navy */
    --teal: #0b6b66; /* deep teal accent */
    --gold-1: #c59a3f; /* warm gold */
    --gold-2: #e6b86a; /* lighter gold */
    --glass: rgba(255,255,255,0.6);
    --radius: 16px;
    --maxw: 1280px;
    --shadow-1: 0 10px 30px rgba(7,20,40,0.06);
    --glass-border: rgba(7,20,40,0.04);
    --accent-contrast: #0b2a2a;
}

* {
    box-sizing: border-box
}

html, body {
    height: 100%
}

body {
    margin: 0;
    font-family: Inter,system-ui,Segoe UI,Roboto,"Helvetica Neue",Arial;
    background: linear-gradient(180deg,var(--bg-1),var(--bg-2));
    color: var(--navy);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.45;
    -webkit-tap-highlight-color: transparent;
}

.wrap {
    max-width: var(--maxw);
    margin: 28px auto;
    padding: 28px;
}

/* HERO */
header.hero {
    display: flex;
    gap: 28px;
    align-items: center;
    padding: 28px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.6), rgba(250,250,250,0.4));
    box-shadow: var(--shadow-1);
    backdrop-filter: blur(6px);
}

.hero-left {
    flex: 1;
    min-width: 260px
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px
}

h1 {
    font-family: "Playfair Display",serif;
    margin: 8px 0 6px;
    font-size: 30px;
    color: var(--navy)
}

p.lead {
    color: var(--muted);
    margin: 0 0 14px;
    font-size: 15px;
    max-width: 70%
}

.cta-row {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 10px;
    flex-wrap: wrap
}

.btn2 {
    background: var(--navy);
    color: #fff;
    padding: 10px 18px;
    border-radius: 12px;
    border: 0;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 26px rgba(2,6,23,0.12);
    transition: transform .16s ease,box-shadow .16s ease;
}

    .btn2:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 36px rgba(2,6,23,0.14);
    }

    .btn2.secondary {
        background: transparent;
        color: var(--navy);
        border: 1px solid rgba(7,20,40,0.06);
        box-shadow: none;
        font-weight: 600;
        padding: 9px 16px;
    }

/* hero right mockup card */
.hero-right {
    width: 460px;
    min-width: 220px
}

.card {
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.92));
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(7,20,40,0.06);
    border: 1px solid var(--glass-border);
}

.small-muted {
    color: var(--muted);
    font-size: 13px
}

/* FEATURE GRID */
.section {
    margin-top: 28px
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 12px;
}

    .section-title h2 {
        margin: 0;
        font-size: 20px;
        font-weight: 700
    }

.grid {
    display: grid;
    gap: 18px;
    margin-top: 16px
}

@media(min-width:1000px) {
    .grid {
        grid-template-columns: repeat(3,1fr)
    }
}

@media(min-width:700px) and (max-width:999px) {
    .grid {
        grid-template-columns: repeat(2,1fr)
    }
}

.feature {
    padding: 20px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255,255,255,0.95), #ffffff);
    border: 1px solid rgba(7,20,40,0.03);
    transition: transform .18s ease, box-shadow .18s ease;
}

    .feature:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 48px rgba(7,20,40,0.06)
    }

    .feature h3 {
        margin: 0 0 8px;
        font-size: 16px;
        color: var(--navy)
    }

    .feature ul {
        margin: 0;
        padding-left: 18px;
        color: var(--muted);
        font-size: 14px
    }

.muted {
    color: var(--muted);
    font-size: 14px
}

/* flow */
.flowwrap {
    margin-top: 28px;
    padding: 18px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255,255,255,0.7), rgba(250,250,250,0.6));
    border: 1px solid rgba(7,20,40,0.03)
}

.flow {
    display: flex;
    gap: 14px;
    align-items: center;
    overflow: auto;
    padding: 8px
}

.flow-step {
    min-width: 220px;
    background: linear-gradient(180deg,#fff,#fbfbfb);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 10px 36px rgba(2,6,23,0.04);
    flex-shrink: 0
}

    .flow-step .num {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        background: linear-gradient(180deg,var(--gold-1),var(--gold-2));
        color: #071428;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        margin-bottom: 10px
    }

.arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: 6px 6px
}

/* process list */
.process {
    margin-top: 18px;
    display: grid;
    gap: 12px
}

.proc-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: linear-gradient(180deg,#fff,#fafafa);
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(7,20,40,0.03)
}

    .proc-item .num {
        width: 44px;
        height: 44px;
        border-radius: 10px;
        background: linear-gradient(180deg,var(--navy),#0b1730);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 15px;
        flex-shrink: 0
    }

/* two-col */
.two-col {
    display: grid;
    gap: 18px;
    margin-top: 18px
}

@media(min-width:900px) {
    .two-col {
        grid-template-columns: 1fr 1fr
    }
}

.list {
    padding: 16px;
    border-radius: 12px;
    background: linear-gradient(180deg,#fff,#fafafa);
    box-shadow: 0 10px 26px rgba(2,6,23,0.03);
    border: 1px solid rgba(7,20,40,0.03)
}

    .list ul {
        margin: 0;
        padding-left: 18px;
        color: var(--muted)
    }

/* accordion */
.accordion {
    margin-top: 14px
}

.acc-head {
    background: linear-gradient(90deg,#ffffff,#fbfbfb);
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(7,20,40,0.04);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: transform .14s ease;
}

    .acc-head:hover {
        transform: translateY(-3px)
    }

.acc-body {
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(7,20,40,0.03);
    margin-top: 8px;
    background: var(--card);
    display: none
}

    .acc-body.show {
        display: block
    }

.acc-toggle {
    font-weight: 700;
    color: var(--navy)
}

/* counters & gallery & testimonials */
.kpis {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap
}

.kpi {
    flex: 1;
    min-width: 170px;
    background: linear-gradient(180deg,#fff,#fbfbfb);
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(7,20,40,0.03);
    text-align: center
}

    .kpi h4 {
        margin: 8px 0;
        font-size: 18px;
        color: var(--navy)
    }

    .kpi p {
        margin: 0;
        color: var(--muted)
    }

.gallery {
    display: grid;
    gap: 12px;
    margin-top: 16px
}

@media(min-width:900px) {
    .gallery {
        grid-template-columns: repeat(4,1fr)
    }
}

@media(min-width:600px) and (max-width:899px) {
    .gallery {
        grid-template-columns: repeat(3,1fr)
    }
}

@media(max-width:599px) {
    .gallery {
        grid-template-columns: repeat(2,1fr)
    }
}

.gimg {
    background: linear-gradient(180deg,#eef2f3,#ffffff);
    height: 120px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-weight: 600;
    border: 1px dashed rgba(7,20,40,0.03)
}

.testimonials {
    margin-top: 18px;
    display: grid;
    gap: 12px
}

@media(min-width:900px) {
    .testimonials {
        grid-template-columns: repeat(3,1fr)
    }
}

.test-card {
    background: linear-gradient(180deg,#fff,#fbfbfb);
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(7,20,40,0.03)
}

small {
    color: var(--muted)
}

/* enquiry modal */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(4,10,18,0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1500
}

.modal {
    width: 96%;
    max-width: 680px;
    background: linear-gradient(180deg,#fff,#fcfcff);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(7,20,40,0.06);
    box-shadow: 0 18px 60px rgba(7,20,40,0.28)
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

    .form-row.single {
        grid-template-columns: 1fr
    }

.field {
    display: flex;
    flex-direction: column;
    gap: 6px
}

input[type=text], input[type=email], textarea, select {
    border: 1px solid rgba(7,20,40,0.08);
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
}

textarea {
    min-height: 100px;
    resize: vertical
}

.close-x {
    position: absolute;
    right: 18px;
    top: 16px;
    background: transparent;
    border: 0;
    font-weight: 700;
    font-size: 20px;
    cursor: pointer;
    color: var(--muted)
}

.muted-note {
    font-size: 13px;
    color: var(--muted);
    margin-top: 8px
}

/* micro animations */
.fade-in {
    opacity: 0;
    transform: translateY(8px);
    animation: fadeIn .6s forwards
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: none
    }
}

/* responsive tweaks */
@media(max-width:840px) {
    .hero {
        flex-direction: column;
        align-items: flex-start
    }

    .hero-right {
        width: 100%
    }

    .lead {
        max-width: 100%
    }

    .form-row {
        grid-template-columns: 1fr
    }
}
