* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    margin: 0;
    padding-top: 78px;
    font-family: Arial, Helvetica, sans-serif;
    color: #172033;
    background:
        radial-gradient(circle at 6% 4%, rgba(15, 118, 110, 0.11), transparent 30rem),
        radial-gradient(circle at 90% 8%, rgba(245, 158, 11, 0.12), transparent 28rem),
        #f6fbfa;
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.section-pad {
    padding: 84px 0;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 70;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #0f172a;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    box-shadow: 0 14px 30px rgba(15, 118, 110, 0.26);
}

.brand strong {
    display: block;
    font-size: 15px;
    line-height: 1.2;
}

.brand small {
    display: block;
    margin-top: 2px;
    color: #64748b;
    font-size: 12px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 7px;
}

.main-nav a {
    padding: 10px 12px;
    border-radius: 999px;
    color: #334155;
    font-size: 14px;
    font-weight: 800;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover {
    color: #0f766e;
    background: rgba(15, 118, 110, 0.08);
    transform: translateY(-1px);
}

.main-nav .nav-cta {
    color: #ffffff;
    background: #0f172a;
    padding: 11px 18px;
}

.main-nav .nav-cta:hover {
    color: #ffffff;
    background: #0f766e;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: #0f172a;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    position: relative;
    overflow: hidden;
    padding-top: 74px;
}

.hero::before {
    content: "";
    position: absolute;
    left: -120px;
    top: 70px;
    width: 280px;
    height: 280px;
    border-radius: 70px;
    background: rgba(15, 118, 110, 0.09);
    transform: rotate(24deg);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    align-items: center;
    gap: 58px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #064e49;
    background: #dff4f1;
    border: 1px solid rgba(15, 118, 110, 0.18);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #f59e0b;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

.hero h1 {
    margin: 20px 0 18px;
    max-width: 720px;
    color: #0f172a;
    font-size: clamp(2.65rem, 5.6vw, 5rem);
    line-height: 0.96;
    letter-spacing: -0.065em;
}

.hero p {
    max-width: 620px;
    color: #475569;
    font-size: 18px;
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    box-shadow: 0 18px 36px rgba(15, 118, 110, 0.24);
}

.btn-primary:hover {
    box-shadow: 0 24px 42px rgba(15, 118, 110, 0.3);
}

.btn-light {
    color: #0f172a;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.12);
}

.btn-dark {
    color: #ffffff;
    background: #0f172a;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #ffffff;
    color: #334155;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.hero-points span::before {
    content: "✓";
    color: #0f766e;
}

.hero-media {
    position: relative;
    min-height: 520px;
    border-radius: 42px;
    overflow: hidden;
    box-shadow: 0 34px 80px rgba(15, 23, 42, 0.18);
    background: #0f172a;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0.36)),
        radial-gradient(circle at 85% 10%, rgba(20, 184, 166, 0.42), transparent 15rem);
}

.hero-media img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.hero-stat {
    position: absolute;
    z-index: 2;
    display: grid;
    gap: 2px;
    padding: 14px 16px;
    border-radius: 20px;
    color: #0f172a;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.18);
}

.hero-stat strong {
    font-size: 18px;
    line-height: 1;
}

.hero-stat span {
    color: #475569;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.top-stat {
    top: 28px;
    left: 28px;
}

.bottom-stat {
    right: 28px;
    bottom: 28px;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 34px;
}

.section-heading h2,
.trust-card h2,
.faq-intro h2,
.contact-copy h2 {
    margin: 16px 0 12px;
    color: #0f172a;
    font-size: clamp(2rem, 4.3vw, 3.65rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.section-heading p,
.trust-card p,
.faq-intro p,
.contact-copy p {
    color: #64748b;
    font-size: 17px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    overflow: hidden;
    border-radius: 32px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.07);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(15, 118, 110, 0.24);
    box-shadow: 0 28px 58px rgba(15, 23, 42, 0.12);
}

.service-image {
    height: 220px;
    background: #dff4f1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    position: relative;
    padding: 28px;
}

.service-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-top: -58px;
    margin-bottom: 22px;
    border-radius: 18px;
    color: #ffffff;
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    font-size: 20px;
    font-weight: 900;
    box-shadow: 0 18px 32px rgba(15, 118, 110, 0.24);
}

.service-card h3,
.process-step h3,
.testimonial-card strong {
    color: #0f172a;
}

.service-card h3,
.process-step h3 {
    margin-bottom: 10px;
    font-size: 21px;
    letter-spacing: -0.03em;
}

.service-card p,
.process-step p,
.testimonial-card p {
    color: #64748b;
    margin-bottom: 0;
}

.trust {
    background:
        linear-gradient(180deg, rgba(15, 118, 110, 0.06), rgba(255, 255, 255, 0));
}

.trust-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 44px;
    align-items: center;
}

.trust-card {
    padding: 42px;
    border-radius: 40px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.07);
}

.trust-list {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.trust-list div {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    align-items: start;
    padding: 18px;
    border-radius: 24px;
    background: #f7fbfb;
    border: 1px solid rgba(15, 23, 42, 0.07);
}

.trust-list span {
    display: grid;
    place-items: center;
    height: 48px;
    border-radius: 16px;
    color: #ffffff;
    background: #0f172a;
    font-weight: 900;
}

.trust-list p {
    margin: 0;
    color: #475569;
}

.feature-panel {
    padding: 34px;
    border-radius: 40px;
    color: #ffffff;
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.32), transparent 18rem),
        linear-gradient(145deg, #0f172a, #0f766e);
    box-shadow: 0 34px 80px rgba(15, 23, 42, 0.22);
}

.feature-top {
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.11);
    margin-bottom: 18px;
}

.feature-top span {
    display: block;
    color: #bae6fd;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.feature-top strong {
    display: block;
    margin-top: 8px;
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.feature-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.feature-row span {
    color: rgba(255, 255, 255, 0.76);
}

.feature-row strong {
    color: #ffffff;
}

.feature-note {
    margin-top: 22px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.1);
}

.feature-note p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.72);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.process-step {
    padding: 28px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}

.process-step span {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 26px;
    border-radius: 18px;
    color: #0f172a;
    background: #fef3c7;
    font-size: 20px;
    font-weight: 900;
}

.testimonials {
    background: #fffaf3;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.testimonial-card {
    padding: 28px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}

.stars {
    margin-bottom: 16px;
    color: #d97706;
    font-size: 16px;
    letter-spacing: 0.05em;
}

.testimonial-card p {
    font-size: 17px;
    margin-bottom: 24px;
}

.testimonial-card strong,
.testimonial-card span {
    display: block;
}

.testimonial-card span {
    margin-top: 4px;
    color: #64748b;
    font-size: 14px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 44px;
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.05);
    overflow: hidden;
}

.faq-item button {
    width: 100%;
    border: 0;
    background: transparent;
    color: #0f172a;
    cursor: pointer;
    padding: 20px 22px;
    text-align: left;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.faq-item button::after {
    content: "+";
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    color: #ffffff;
    background: #0f172a;
    transition: transform 0.22s ease;
}

.faq-item.active button::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 22px 22px;
    color: #64748b;
}

.contact {
    padding-top: 44px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: start;
}

.contact-copy {
    padding: 40px;
    border-radius: 38px;
    color: #ffffff;
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.34), transparent 18rem),
        linear-gradient(135deg, #0f172a, #0f766e);
    box-shadow: 0 32px 70px rgba(15, 23, 42, 0.2);
}

.contact-copy .eyebrow {
    color: #062f2b;
    background: #ccfbf1;
}

.contact-copy h2,
.contact-copy p {
    color: #ffffff;
}

.contact-copy p {
    color: rgba(255, 255, 255, 0.78);
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.contact-details a,
.contact-details span {
    display: inline-flex;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
}

.contact-copy .btn-light,
.contact-copy .btn-dark {
    background: #ffffff;
    color: #0f172a;
}

.enquiry-form {
    padding: 34px;
    border-radius: 38px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.enquiry-form h3 {
    margin-bottom: 6px;
    color: #0f172a;
    font-size: 30px;
    letter-spacing: -0.04em;
}

.enquiry-form > p {
    margin-bottom: 24px;
    color: #64748b;
}

.form-row {
    display: grid;
    gap: 7px;
    margin-bottom: 15px;
}

.form-row label {
    color: #0f172a;
    font-size: 14px;
    font-weight: 900;
}

.form-row input,
.form-row textarea,
.form-row select {
    width: 100%;
    border: 1px solid rgba(15, 23, 42, 0.14);
    border-radius: 16px;
    padding: 13px 14px;
    color: #0f172a;
    background: #f8fafc;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
    border-color: #0f766e;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

.form-row textarea {
    resize: vertical;
}

.form-submit {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 18px 36px rgba(15, 118, 110, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 42px rgba(15, 118, 110, 0.28);
}

.form-success {
    min-height: 22px;
    margin: 14px 0 0;
    color: #0f766e;
    font-weight: 800;
}

.site-footer {
    padding: 28px 0;
    color: #64748b;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    padding-top: 22px;
}

.footer-grid p {
    margin: 0;
    font-size: 14px;
}

.whatsapp-float,
.back-to-top {
    position: fixed;
    right: 18px;
    z-index: 60;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.whatsapp-float {
    bottom: 18px;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 999px;
    color: #ffffff;
    background: #25d366;
    font-weight: 900;
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.35);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.whatsapp-float::before {
    content: "✆";
    margin-right: 8px;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 46px rgba(37, 211, 102, 0.42);
}

.back-to-top {
    bottom: 84px;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    color: #ffffff;
    background: #0f172a;
    font-size: 20px;
    font-weight: 900;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    transform: translateY(-3px);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .section-pad {
        padding: 68px 0;
    }

    .hero-grid,
    .trust-grid,
    .faq-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-media,
    .hero-media img {
        height: auto;
        min-height: 430px;
    }

    .hero-media img {
        height: 430px;
    }

    .service-grid,
    .process-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    body {
        padding-top: 72px;
    }

    .nav-wrap {
        min-height: 72px;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 84px;
        display: grid;
        gap: 8px;
        padding: 16px;
        border-radius: 24px;
        background: #ffffff;
        box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
        transform: translateY(-18px);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    body.nav-open .main-nav {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .main-nav a {
        padding: 13px 14px;
        border-radius: 16px;
    }

    .hero {
        padding-top: 58px;
    }

    .hero h1 {
        font-size: clamp(2.55rem, 13vw, 4rem);
    }

    .hero p {
        font-size: 16px;
    }

    .service-grid,
    .process-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .trust-card,
    .contact-copy,
    .enquiry-form {
        padding: 28px;
        border-radius: 30px;
    }

    .trust-list div {
        grid-template-columns: 1fr;
    }

    .hero-media,
    .hero-media img {
        min-height: 370px;
    }

    .hero-media img {
        height: 370px;
    }

    .hero-stat {
        padding: 12px 14px;
    }

    .footer-grid {
        display: grid;
    }

    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        padding: 0;
    }

    .whatsapp-float::before {
        margin: 0;
    }
}

@media (max-width: 460px) {
    .container {
        width: min(100% - 22px, 1120px);
    }

    .brand strong {
        font-size: 13px;
    }

    .brand small {
        font-size: 11px;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
        border-radius: 14px;
    }

    .hero-actions,
    .contact-actions {
        display: grid;
    }

    .btn {
        width: 100%;
    }

    .section-heading h2,
    .trust-card h2,
    .faq-intro h2,
    .contact-copy h2 {
        font-size: clamp(2rem, 12vw, 3rem);
    }

    .service-content,
    .process-step,
    .testimonial-card {
        padding: 22px;
    }

    .hero-stat {
        position: static;
        margin: -74px 14px 14px;
    }

    .top-stat {
        margin-right: auto;
    }

    .bottom-stat {
        margin-left: auto;
    }
}