* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #172033;
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.12), transparent 32rem),
        radial-gradient(circle at bottom right, rgba(22, 163, 74, 0.12), transparent 30rem),
        #f5f7fb;
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.site-shell {
    overflow: hidden;
}

.top-header {
    position: relative;
    z-index: 20;
}

.notice-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    padding: 0.7rem 1rem;
    background: var(--primary);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 800;
    text-align: center;
}

.notice-bar span {
    position: relative;
}

.notice-bar span + span::before {
    content: '';
    position: absolute;
    left: -0.72rem;
    top: 50%;
    width: 0.25rem;
    height: 0.25rem;
    border-radius: 50%;
    background: var(--secondary);
    transform: translateY(-50%);
}

.navbar {
    width: min(1180px, calc(100% - 2rem));
    margin: 1rem auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 55px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 0;
}

.brand-mark {
    display: grid;
    place-items: center;
    flex: 0 0 2.8rem;
    height: 2.8rem;
    border-radius: 0.95rem;
    background: linear-gradient(135deg, var(--secondary), #fb923c);
    color: #ffffff;
    font-weight: 900;
    letter-spacing: -0.04em;
    box-shadow: 0 12px 25px rgba(249, 115, 22, 0.28);
}

.brand-text {
    min-width: 0;
}

.brand strong {
    display: block;
    color: var(--primary);
    line-height: 1.1;
}

.brand small {
    display: block;
    color: #64748b;
    font-size: 0.78rem;
}

.nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.28rem;
    width: 2.75rem;
    height: 2.75rem;
    border: 0;
    border-radius: 0.9rem;
    background: #eef2f7;
    cursor: pointer;
}

.nav-toggle span {
    width: 1.25rem;
    height: 2px;
    border-radius: 999px;
    background: var(--primary);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.nav-links {
    position: fixed;
    inset: 5.8rem 1rem auto;
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1rem;
    border-radius: 1.2rem;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
}

.nav-links.active {
    display: flex;
}

.nav-links a {
    padding: 0.85rem 1rem;
    border-radius: 0.85rem;
    color: #334155;
    font-weight: 800;
}

.nav-links a:hover {
    background: #f1f5f9;
    color: var(--primary);
}

.nav-cta {
    background: var(--primary);
    color: #ffffff !important;
}

.hero,
.quick-enquiry,
.section,
.image-split,
.stock-section,
.faq-section,
.contact-section,
.footer {
    width: min(1180px, calc(100% - 2rem));
    margin-left: auto;
    margin-right: auto;
}

.hero {
    display: grid;
    gap: 2rem;
    align-items: center;
    padding: 4rem 0 1rem;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: #c2410c;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.eyebrow span {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 0.35rem rgba(22, 163, 74, 0.14);
}

.hero h1,
.section-heading h2,
.image-split-content h2,
.stock-content h2,
.contact-card h2,
.quick-enquiry h2 {
    margin: 0;
    color: var(--primary);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hero h1 {
    max-width: 760px;
    margin-top: 1rem;
    font-size: clamp(2.7rem, 7vw, 5.2rem);
}

.hero-content p {
    max-width: 650px;
    margin: 1.2rem 0 0;
    color: #475569;
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.6rem;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 3.2rem;
    padding: 0.85rem 1.25rem;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--secondary);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(249, 115, 22, 0.28);
}

.btn-light {
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #ffffff;
    color: var(--primary);
}

.hero-points {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.6rem;
}

.hero-points div {
    padding: 1rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.8);
}

.hero-points strong {
    display: block;
    color: var(--primary);
    font-size: 1.05rem;
}

.hero-points span {
    display: block;
    margin-top: 0.2rem;
    color: #64748b;
    font-size: 0.92rem;
}

.hero-image-card {
    position: relative;
    min-height: 27rem;
    overflow: hidden;
    border-radius: 2rem;
    background: var(--primary);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.2);
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    min-height: 27rem;
    object-fit: cover;
}

.hero-image-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0.68)),
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.22), transparent 15rem);
}

.hero-card-badge {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 2;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 1.2rem;
    background: rgba(15, 23, 42, 0.82);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.hero-card-badge span {
    display: block;
    color: #fed7aa;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-card-badge strong {
    display: block;
    margin-top: 0.2rem;
    font-size: 1.1rem;
}

.quick-enquiry {
    display: grid;
    gap: 1rem;
    align-items: center;
    margin-top: 3rem;
    padding: 1.25rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 1.6rem;
    background: #ffffff;
    box-shadow: 0 18px 60px rgba(15, 23, 42, 0.08);
}

.quick-enquiry h2 {
    margin-top: 0.35rem;
    font-size: clamp(1.55rem, 4vw, 2.5rem);
}

.quick-form {
    display: grid;
    gap: 0.7rem;
}

.quick-form input,
.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 1rem;
    background: #ffffff;
    padding: 0.95rem 1rem;
    color: var(--primary);
    outline: none;
}

.quick-form input:focus,
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.quick-form button,
.contact-form button {
    border: 0;
    border-radius: 1rem;
    padding: 1rem 1.2rem;
    background: var(--primary);
    color: #ffffff;
    font-weight: 900;
    cursor: pointer;
}

.section,
.image-split,
.stock-section,
.faq-section,
.contact-section {
    margin-top: 4.5rem;
}

.section-heading {
    max-width: 790px;
    margin-bottom: 1.7rem;
}

.section-heading h2,
.image-split-content h2,
.stock-content h2,
.contact-card h2 {
    margin-top: 0.55rem;
    font-size: clamp(2.1rem, 5vw, 4rem);
}

.section-heading p,
.image-split-content p,
.stock-content p,
.contact-card p {
    margin: 0.9rem 0 0;
    color: #64748b;
    font-size: 1.02rem;
}

.parts-grid,
.process-grid,
.testimonial-grid {
    display: grid;
    gap: 1rem;
}

.part-card,
.process-card,
.testimonial-card,
.faq-item {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 14px 45px rgba(15, 23, 42, 0.06);
}

.part-card {
    position: relative;
    min-height: 13.5rem;
    padding: 1.25rem;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.part-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.11);
}

.part-card::after {
    content: '';
    position: absolute;
    right: -2.6rem;
    bottom: -2.6rem;
    width: 7.5rem;
    height: 7.5rem;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.09);
}

.part-icon {
    display: grid;
    place-items: center;
    width: 3.3rem;
    height: 3.3rem;
    border-radius: 1rem;
    background: #fff7ed;
    font-size: 1.45rem;
}

.part-card h3,
.process-card h3,
.stock-mini-grid h3,
.stock-feature h3,
.testimonial-card strong {
    color: var(--primary);
}

.part-card h3,
.process-card h3,
.stock-mini-grid h3,
.stock-feature h3 {
    margin: 1rem 0 0.45rem;
    font-size: 1.15rem;
}

.part-card p,
.process-card p,
.stock-mini-grid p,
.stock-feature p,
.testimonial-card p {
    color: #64748b;
}

.image-split {
    display: grid;
    gap: 1.6rem;
    align-items: center;
}

.image-split-photo {
    min-height: 26rem;
    overflow: hidden;
    border-radius: 2rem;
    background: var(--primary);
    box-shadow: 0 25px 70px rgba(15, 23, 42, 0.14);
}

.image-split-photo img {
    width: 100%;
    height: 100%;
    min-height: 26rem;
    object-fit: cover;
}

.trust-list {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.35rem;
}

.trust-list div {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.trust-list span {
    display: grid;
    place-items: center;
    flex: 0 0 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: rgba(22, 163, 74, 0.14);
    color: var(--accent);
    font-weight: 900;
}

.trust-list p {
    margin: 0;
}

.process-card {
    padding: 1.25rem;
}

.process-card span {
    display: inline-flex;
    color: #c2410c;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.08em;
}

.stock-section {
    display: grid;
    gap: 1.5rem;
    align-items: center;
    padding: 1.35rem;
    border-radius: 2rem;
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.2);
}

.stock-section .section-kicker {
    color: #fed7aa;
}

.stock-content h2 {
    color: #ffffff;
}

.stock-content p {
    color: #cbd5e1;
}

.text-link {
    display: inline-flex;
    margin-top: 1rem;
    color: #ffffff;
    font-weight: 900;
    border-bottom: 2px solid var(--secondary);
}

.stock-layout {
    display: grid;
    gap: 1rem;
}

.stock-feature {
    overflow: hidden;
    border-radius: 1.4rem;
    background: #ffffff;
    color: #172033;
}

.stock-feature img {
    width: 100%;
    height: 13rem;
    object-fit: cover;
}

.stock-feature div {
    padding: 1rem;
}

.stock-feature span {
    color: #c2410c;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.stock-feature h3 {
    margin-top: 0.3rem;
}

.stock-mini-grid {
    display: grid;
    gap: 0.8rem;
}

.stock-mini-grid article {
    padding: 1rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
}

.stock-mini-grid span {
    font-size: 1.6rem;
}

.stock-mini-grid h3 {
    color: #ffffff;
}

.stock-mini-grid p {
    margin-bottom: 0;
    color: #cbd5e1;
}

.testimonial-card {
    padding: 1.25rem;
}

.testimonial-card.featured {
    background: var(--primary);
}

.testimonial-card.featured p,
.testimonial-card.featured span {
    color: #cbd5e1;
}

.testimonial-card.featured strong {
    color: #ffffff;
}

.stars {
    color: var(--secondary);
    letter-spacing: 0.08em;
}

.testimonial-card p {
    font-size: 1.02rem;
}

.testimonial-card strong {
    display: block;
}

.testimonial-card span {
    color: #64748b;
    font-size: 0.9rem;
}

.faq-list {
    display: grid;
    gap: 0.75rem;
}

.faq-item {
    overflow: hidden;
}

.faq-item button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border: 0;
    background: transparent;
    color: var(--primary);
    padding: 1.1rem;
    font-weight: 900;
    text-align: left;
    cursor: pointer;
}

.faq-item button span {
    color: var(--secondary);
    font-size: 1.3rem;
}

.faq-answer {
    display: none;
    padding: 0 1.1rem 1.1rem;
}

.faq-answer p {
    margin: 0;
    color: #64748b;
}

.faq-item.active .faq-answer {
    display: block;
}

.contact-card {
    display: grid;
    gap: 1.5rem;
    padding: 1.25rem;
    border-radius: 2rem;
    background: #ffffff;
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.1);
}

.contact-methods {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.contact-methods a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    background: #f8fafc;
    color: var(--primary);
    font-weight: 850;
}

.contact-methods span {
    display: grid;
    place-items: center;
    flex: 0 0 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #fff7ed;
}

.contact-form {
    display: grid;
    gap: 0.9rem;
    padding: 1rem;
    border-radius: 1.4rem;
    background: #f8fafc;
}

.contact-form label {
    display: grid;
    gap: 0.4rem;
    color: var(--primary);
    font-weight: 850;
}

.contact-form textarea {
    min-height: 8rem;
    resize: vertical;
}

.form-note {
    margin: 0;
    color: #94a3b8 !important;
    font-size: 0.82rem;
}

.footer {
    display: grid;
    gap: 1rem;
    padding: 2.5rem 0 6rem;
    color: #64748b;
}

.footer strong {
    color: var(--primary);
}

.footer p {
    margin: 0.25rem 0 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--primary);
    font-weight: 850;
}

.whatsapp-float {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    background: var(--accent);
    color: #ffffff;
    font-weight: 900;
    box-shadow: 0 16px 35px rgba(22, 163, 74, 0.35);
}

.whatsapp-float span {
    display: grid;
    place-items: center;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 560px) {
    .hero-points,
    .parts-grid,
    .process-grid,
    .testimonial-grid,
    .stock-mini-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-form {
        grid-template-columns: 1fr auto;
    }
}

@media (min-width: 860px) {
    .nav-toggle {
        display: none;
    }

    .nav-links {
        position: static;
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 0;
        box-shadow: none;
        background: transparent;
    }

    .nav-links a {
        padding: 0.7rem 0.85rem;
        font-size: 0.92rem;
    }

    .nav-cta {
        padding-inline: 1.05rem !important;
    }

    .hero,
    .quick-enquiry,
    .image-split,
    .stock-section,
    .contact-card,
    .footer {
        grid-template-columns: 1fr 1fr;
    }

    .hero {
        padding-top: 4.5rem;
    }

    .hero-points {
        grid-template-columns: repeat(3, 1fr);
    }

    .parts-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stock-section {
        padding: 2rem;
    }

    .contact-card {
        padding: 2rem;
    }

    .footer {
        align-items: center;
    }

    .footer-links {
        justify-content: flex-end;
    }
}

@media (min-width: 1080px) {
    .hero {
        grid-template-columns: 1.03fr 0.97fr;
    }

    .hero-content {
        padding-right: 1rem;
    }
}

@media (max-width: 520px) {
    .notice-bar {
        flex-wrap: wrap;
        gap: 0.5rem 1.25rem;
    }

    .navbar {
        width: min(100% - 1rem, 1180px);
    }

    .hero,
    .quick-enquiry,
    .section,
    .image-split,
    .stock-section,
    .faq-section,
    .contact-section,
    .footer {
        width: min(100% - 1rem, 1180px);
    }

    .hero {
        padding-top: 2.6rem;
    }

    .hero h1 {
        font-size: clamp(2.45rem, 13vw, 3.4rem);
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-image-card,
    .hero-image-card img,
    .image-split-photo,
    .image-split-photo img {
        min-height: 22rem;
    }
}


/* Contrast fixes */
.btn-primary {
    background: #ea580c;
    color: #ffffff;
    border: 2px solid #ea580c;
    box-shadow: 0 16px 35px rgba(234, 88, 12, 0.28);
}

.btn-primary:hover {
    background: #c2410c;
    border-color: #c2410c;
    color: #ffffff;
}

.stars {
    color: #ea580c;
    font-weight: 900;
}

.testimonial-card.featured .stars {
    color: #fed7aa;
}

.section-kicker,
.eyebrow {
    color: #c2410c;
}