/* Alliance Elite Technical Services - Static HTML/CSS/JS build
   Converted from Figma Make (React/Tailwind) to semantic, responsive HTML5/CSS3.
*/

:root {
    --brand: #0b2c4d;
    --brand-2: #08243d;
    --ink: #0f172a;
    /* slate-900 */
    --text: #334155;
    /* slate-700 */
    --muted: #64748b;
    /* slate-500/600 */
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    /* slate-50 */
    --card: #ffffff;
    --border: #e2e8f0;
    /* slate-200 */
    --ring: rgba(11, 44, 77, .18);

    /* Tailwind-ish radius scale */
    --r-lg: 8px;
    /* rounded-lg */
    --r-xl: 12px;
    /* rounded-xl */
    --r-2xl: 16px;
    /* rounded-2xl */
    --r-full: 999px;

    --shadow: 0 10px 30px rgba(2, 6, 23, .10);
    --shadow-lg: 0 18px 60px rgba(2, 6, 23, .18);
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
    color: var(--text);
    background: var(--bg);
    line-height: 1.5;
    font-weight: 400;
}

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

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

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 640px) {
    .container {
        max-width: 640px
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px
    }
}

@media (min-width: 1536px) {
    .container {
        max-width: 1536px
    }
}

/* Top bar */
.topbar {
    background: #0b1220;
    color: #fff;
    font-size: 14px;
}

.topbar .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
}

.topbar .hint {
    color: #6b94bc;
    display: none
}

@media (min-width: 768px) {
    .topbar .hint {
        display: block
    }
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid transparent;
    transition: box-shadow .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 10px 30px rgba(2, 6, 23, .08);
    border-color: var(--border)
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 14px;
}

/* Reach Us page: keep desktop nav position identical to other pages (CTA width differs) */
@media (min-width: 1024px) {
    .page-reach .header-inner {
        justify-content: flex-start;
    }

    .page-reach .nav {
        flex: 1;
        justify-content: center;
    }

    .page-reach .header-cta {
        margin-left: auto;
    }
}

.logo img {
    height: 56px;
    width: auto
}

.nav {
    display: none;
    align-items: center;
    gap: 28px;
}

.nav a,
.nav button {
    font-size: 14px;
    color: var(--text);
    background: none;
    border: 0;
    padding: 8px 0;
    cursor: pointer;
    line-height: 20px;
    font-weight: 400;
}

.dropdown > button {
    display: flex;
    align-items: center;
    gap: 4px
}

.nav a:hover,
.nav button:hover {
    color: var(--brand)
}

.nav a.is-active {
    color: var(--brand)
}

.dropdown {
    position: relative
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 256px;
    /* w-64 */
    background: #fff;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity .18s ease, transform .18s ease, visibility 0s;
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    /* px-4 py-2.5 */
    border-radius: 0;
    color: var(--text);
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: var(--bg-soft);
    color: var(--brand)
}

.header-cta {
    display: none;
    align-items: center;
    gap: 16px
}

.header-cta .tel {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px
}

.header-cta .tel:hover {
    color: var(--brand)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: var(--r-lg);
    border: 1px solid transparent;
    font-weight: 500;
    cursor: pointer;
    transition: transform .12s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.btn:active {
    transform: translateY(1px)
}

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

.btn-primary:hover {
    background: var(--brand-2)
}

.btn-outline {
    background: transparent;
    color: var(--brand);
    border-color: var(--brand)
}

.btn-outline:hover {
    background: var(--brand);
    color: #fff
}

.icon {
    width: 18px;
    height: 18px
}

.nav .icon {
    width: 16px;
    height: 16px
}

/* Mobile */
.menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--r-xl);
    border: 1px solid var(--border);
    background: #fff;
}

.mobile-panel {
    display: none;
    border-top: 1px solid var(--border);
    padding: 14px 0 18px;
}

.mobile-panel.is-open {
    display: block
}

.mobile-panel a {
    display: block;
    padding: 10px 0;
    color: var(--text)
}

.mobile-panel .sub {
    padding-left: 14px
}

.mobile-panel .sub a {
    font-size: 14px;
    color: var(--muted);
    padding: 6px 0
}

.mobile-panel .btn {
    width: 100%;
    margin-top: 12px
}

@media (min-width: 1024px) {
    .nav {
        display: flex
    }

    .header-cta {
        display: flex
    }

    .menu-btn {
        display: none
    }

    .mobile-panel {
        display: none !important
    }
}

/* Sections */
.section {
    padding: 72px 0
}

.section-tight {
    padding: 48px 0
}

.section-soft {
    background: var(--bg-soft)
}

.hero {
    background: var(--bg-soft);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    gap: 28px;
    align-items: center;
    padding: 34px 0 56px;
}

.fitout-section-overlay {
    padding: 72px 0;
    background:
        linear-gradient(90deg,
            rgba(60, 10, 90, 0.88) 0%,
            rgba(132, 48, 196, 0.72) 55%,
            rgba(124, 20, 207, 0.86) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.05fr .95fr;
        gap: 48px;
        padding: 56px 0 72px
    }
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #e8eef4;
    color: var(--brand);
    font-size: 14px;
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--ink);
    letter-spacing: -0.02em;
    font-weight: 500
}

.hero h1 {
    font-size: clamp(34px, 5vw, 60px);
    line-height: 1.05;
    margin: 14px 0 14px
}

.hero p {
    font-size: clamp(16px, 2.2vw, 20px);
    color: var(--muted);
    max-width: 56ch;
    margin: 0 0 18px
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 20px 0 22px;
}

.stat {
    padding: 10px 0
}

.stat .label {
    font-size: 12px;
    color: var(--muted)
}

.stat .value {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--brand)
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.hero-card {
    position: relative;
    border-radius: var(--r-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-card img {
    height: min(520px, 62vh);
    width: 100%;
    object-fit: cover
}

.hero-badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: #fff;
    border-radius: var(--r-xl);
    box-shadow: var(--shadow);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-dot {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: #dcfce7;
    display: grid;
    place-items: center;
}

/* Trust marquee */
.trust {
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.marquee {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.marquee-track {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    animation: scroll 20s linear infinite;
    will-change: transform;
}

.marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 48px;
    /* matches px-12 */
    flex-shrink: 0;
}

.marquee-item img {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .60;
}

@keyframes scroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-33.333%)
    }
}

to {
    transform: translateX(-50%)
}
}

to {
    transform: translateX(-50%)
}
}

/* Headings */
.section-head {
    text-align: center;
    margin-bottom: 36px
}

.section-head h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    margin-bottom: 10px
}

.section-head p {
    font-size: clamp(16px, 2.0vw, 20px);
    color: var(--muted);
    max-width: 64ch;
    margin: 0 auto
}

.service-section-head {
    text-align: left;
    margin-bottom: 36px
}

.service-section-head h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    margin-bottom: 10px
}

.service-section-head p {
    font-size: clamp(16px, 2.0vw, 20px);
    color: var(--muted);
    max-width: 64ch;
    margin: 0 auto
}

/* Cards */
.grid {
    display: grid;
    gap: 18px
}

.grid-2 {
    grid-template-columns: 1fr
}

.grid-3 {
    grid-template-columns: 1fr
}

.grid-4 {
    grid-template-columns: 1fr
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }

    .grid-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr))
    }
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 18px;
    box-shadow: none;
    transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}

.card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px)
}

.card h3 {
    font-size: 18px;
    margin-bottom: 8px
}

.card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px
}

.card-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--r-lg);
    background: #e8eef4;
    display: grid;
    place-items: center;
    color: var(--brand);
    margin-bottom: 12px;
}

.card-icon-fitout {
    width: 46px;
    height: 46px;
    border-radius: var(--r-lg);
    background: #f3e8ff;
    display: grid;
    place-items: center;
    color: #9810fa;
    margin-bottom: 12px;
}

.card-icon-hvac {
    width: 46px;
    height: 46px;
    border-radius: var(--r-lg);
    background: #eff6ff;
    display: grid;
    place-items: center;
    color: #1c398e;
    margin-bottom: 12px;
}

.card-icon-carpentry {
    width: 46px;
    height: 46px;
    border-radius: var(--r-lg);
    background: #f7e4de;
    display: grid;
    place-items: center;
    color: #9a3412;
    margin-bottom: 12px;
}

/* ===== FEATURED SERVICE CARD FIX ===== */
.featured-service,
.service-card.featured {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

/* image */
.featured-service img,
.service-card.featured img {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* blue gradient overlay */
.featured-service::after,
.service-card.featured::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(7, 23, 57, 0.85) 0%,
            rgba(7, 23, 57, 0.55) 40%,
            rgba(7, 23, 57, 0.15) 70%,
            transparent 100%);
    z-index: 1;
}

/* TEXT CONTENT — FORCE FRONT */
.featured-service .content,
.service-card.featured .content,
.featured-service .text,
.service-card.featured .text {
    position: absolute;
    left: 32px;
    bottom: 32px;
    right: 32px;
    z-index: 2;
    color: #fff;
}

.feature .tag {
    display: inline-flex;
    background: var(--brand);
    color: #fff;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 14px;
    margin-bottom: 12px;
}

.feature h3 {
    color: #fff;
    font-size: clamp(22px, 2.8vw, 30px);
    margin-bottom: 10px
}

.feature p {
    color: rgba(226, 232, 240, .92);
    font-size: 16px
}

/* Service tiles */
.service-tile {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 14px;
    align-items: center;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #fff;
    transition: box-shadow .2s ease, transform .2s ease;
}

.service-tile:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px)
}

.service-tile img {
    width: 96px;
    height: 96px;
    object-fit: cover
}

.service-tile .meta {
    padding-right: 14px;
    padding-left: 0
}

.service-tile .meta h3 {
    font-size: 16px;
    margin: 0 0 4px
}

.service-tile .meta p {
    margin: 0;
    font-size: 13px;
    color: var(--muted)
}

.service-tile .meta .go {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    color: var(--brand);
    font-weight: 700;
    font-size: 13px
}

@media (min-width: 1024px) {
    .services-layout {
        display: grid;
        grid-template-columns: 1.05fr .95fr;
        gap: 22px;
        align-items: stretch
    }
}

/* About / Benefits list */
.checklist {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none
}

.check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text);
}

.check svg {
    flex: 0 0 auto;
    margin-top: 2px;
    color: #16a34a
}

/* Forms */
.form {
    background: var(--bg-soft);
    border: 0;
    border-radius: var(--r-xl);
    padding: 32px;
}

.form label {
    display: block;
    font-size: 13px;
    color: var(--text);
    margin-bottom: 8px
}

.form-bg{
    background: #fff;
    padding: 32px 32px;
}

.input,
select,
textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    background: #fff;
    outline: none;
    transition: box-shadow .15s ease, border-color .15s ease;
    font: inherit;
    color: var(--text);
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--muted) 50%),
        linear-gradient(135deg, var(--muted) 50%, transparent 50%);
    background-position:
        calc(100% - 18px) 50%,
        calc(100% - 12px) 50%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 40px;
}

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

.input:focus,
select:focus,
textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 5px var(--ring);
}

.form-status {
    margin: 0 0 14px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 14px;
    display: none;
}

.form-status.is-success {
    display: block;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #0f5132;
}

.form-status.is-error {
    display: block;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #7f1d1d;
}

.form .row {
    display: grid;
    gap: 14px
}

@media (min-width: 768px) {
    .form .row-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

/* CTA band */
.cta-band {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff;
    border-radius: 24px;
    padding: 28px;
}

@media (min-width:768px) {
    .cta-band {
        padding: 44px
    }
}

.cta-band h2 {
    color: #fff;
    font-size: clamp(22px, 3vw, 34px);
    margin-bottom: 10px
}

.cta-band p {
    color: rgba(232, 238, 244, .95);
    font-size: clamp(16px, 2.2vw, 20px);
    margin: 0 0 18px
}



/* Reach Us */
.reach-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff;
}

.reach-hero__inner {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.reach-hero h1 {
    color: #fff;
    font-size: clamp(30px, 4.2vw, 52px);
    line-height: 1.1;
    margin: 0 0 14px;
    font-weight: 500;
}

.reach-hero p {
    margin: 0;
    color: rgba(232, 238, 244, .95);
    font-size: clamp(16px, 2.1vw, 20px);
}

.reach-wrap {
    max-width: 1120px;
    margin: 0 auto;
}

.reach-grid {
    display: grid;
    gap: 22px;
    align-items: start;
}

@media (min-width: 1024px) {
    .reach-grid {
        grid-template-columns: 1fr 2fr;
        gap: 32px;
    }
}

.reach-aside__head h2 {
    margin: 0 0 12px;
    font-size: 24px;
    color: var(--ink);
    font-weight: 500;
}

.reach-aside__head p {
    margin: 0 0 18px;
    color: var(--muted);
}

.reach-cards {
    display: grid;
    gap: 14px;
}

.reach-card {
    background: var(--bg-soft);
    border-radius: var(--r-xl);
    padding: 24px;
    transition: box-shadow .2s ease, transform .2s ease;
}

.reach-card:hover {
    box-shadow: 0 14px 34px rgba(15, 23, 42, .08);
    transform: translateY(-1px);
}

.reach-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.reach-card__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--r-lg);
    background: #e8eef4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: var(--brand);
}

.reach-card__kicker {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 4px;
}

.reach-card__value {
    display: inline-block;
    font-size: 18px;
    color: var(--ink);
    font-weight: 500;
    text-decoration: none;
}

.reach-card__value:hover {
    color: var(--brand);
}

.reach-card__meta {
    font-size: 13px;
    color: var(--muted);
    margin-top: 4px;
}

.reach-card__hours {
    color: var(--ink);
    font-size: 15px;
}

.reach-form .form {
    padding: 32px;
}

.form--2xl {
    border-radius: var(--r-2xl);
}

.spacey {
    display: block;
}

.form-note {
    margin: 14px 0 0;
    font-size: 13px;
    color: var(--muted);
    text-align: center;
}

.reach-cta {
    max-width: 900px;
    margin: 0 auto;
}

.reach-cta__card {
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
    border-radius: var(--r-2xl);
    padding: 32px;
    text-align: center;
    color: #fff;
}

@media (min-width: 768px) {
    .reach-cta__card {
        padding: 48px;
    }
}

.reach-cta__card h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 500;
}

.reach-cta__card p {
    margin: 0 0 18px;
    color: rgba(232, 238, 244, .95);
    font-size: clamp(16px, 2.2vw, 20px);
}

.reach-cta__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 6px;
}

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

.btn-light:hover {
    background: #f1f5f9;
}

/* Footer */
.footer {
    background: #0b1220;
    color: #fff;
}

.footer .footer-grid {
    display: grid;
    gap: 26px;
    padding: 64px 0 34px;
}

@media (min-width:768px) {
    .footer .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px
    }
}

@media (min-width:1024px) {
    .footer .footer-grid {
        grid-template-columns: 1.2fr .9fr .9fr 1.1fr
    }
}

.footer p {
    color: rgba(148, 163, 184, .9)
}

.footer h3 {
    color: #fff;
    font-size: 16px;
    margin: 0 0 10px
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px
}

.footer a {
    color: rgba(148, 163, 184, .9)
}

.footer a:hover {
    color: #fff
}

.social {
    display: flex;
    gap: 10px;
    margin-top: 14px
}

.social a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(15, 23, 42, .65);
    display: grid;
    place-items: center
}

.social a:hover {
    background: rgba(11, 44, 77, .9)
}

.footer-bottom {
    border-top: 1px solid rgba(30, 41, 59, .9);
    padding: 18px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

@media (min-width:768px) {
    .footer-bottom {
        flex-direction: row
    }
}

.footer-bottom .links {
    display: flex;
    gap: 18px;
    font-size: 14px;
    color: rgba(148, 163, 184, .9)
}

/* Utilities */
.muted {
    color: var(--muted)
}

.center {
    text-align: center
}

.hidden {
    display: none !important
}

/* Toast */
.toast {
    position: fixed;
    inset: auto 16px 16px 16px;
    max-width: 520px;
    margin: 0 auto;
    background: rgba(255, 255, 255, .96);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 14px 14px;
    display: none;
}

.toast.is-show {
    display: block
}

.toast .t {
    display: flex;
    align-items: flex-start;
    gap: 12px
}

.toast strong {
    color: var(--ink)
}

.toast p {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 14px
}


.sr {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}



/* === Home: Services (matches original Figma Make layout) === */
.services-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 1024px) {
    .services-layout {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

.feature {
    position: relative;
    border-radius: var(--r-2xl);
    overflow: hidden;
    min-height: 600px;
    box-shadow: var(--shadow-lg);
    transform: translateZ(0);
}

.feature img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms ease;
}

.feature:hover img {
    transform: scale(1.05);
}

.feature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, .90), rgba(15, 23, 42, .55), transparent);
}

.feature-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 32px;
    color: #fff;
}

.pill {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 14px;
}

.pill-brand {
    background: var(--brand);
    color: #fff;
}

.feature h3 {
    font-size: 30px;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.feature p {
    color: rgba(226, 232, 240, .92);
    font-size: 18px;
    margin: 0 0 18px;
    max-width: 60ch;
}

.feature-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    transition: gap .2s ease;
}

.feature:hover .feature-cta {
    gap: 12px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.service-card {
    background: #fff;
    border: 1px solid rgba(148, 163, 184, .45);
    /* slate-200-ish */
    border-radius: var(--r-xl);
    /* rounded-xl */
    padding: 24px;
    transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}

.service-card:hover {
    box-shadow: 0 18px 40px rgba(2, 6, 23, .10);
    border-color: rgba(148, 163, 184, .70);
    transform: translateY(-2px);
}

.iconbox {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    /* rounded-lg */
    background: #f4f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: background-color .25s ease;
}

.service-card:hover .iconbox {
    background: #bed4e6;
}

.iconbox .icon {
    width: 24px;
    height: 24px;
    color: var(--brand);
}

.service-card h3 {
    font-size: 18px;
    margin: 0 0 8px;
    color: var(--ink);
    transition: color .25s ease;
}

.service-card:hover h3 {
    color: var(--brand);
}

.service-card p {
    margin: 0 0 16px;
    font-size: 14px;
    color: #475569;
    /* slate-600 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: var(--brand);
    transition: gap .2s ease;
}

.service-card:hover .service-link {
    gap: 8px;
}

/* === Home: Why Choose === */
.why {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 1024px) {
    .why {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.why-left h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    margin-bottom: 16px;
}

.lead {
    font-size: 18px;
    color: #475569;
    margin: 0 0 28px;
}

.why-list {
    display: grid;
    gap: 24px;
}

.why-item {
    display: flex;
    gap: 16px;
}

.iconbox-soft {
    background: #f4f7fa;
    margin-bottom: 0;
    flex: 0 0 auto;
}

.why-item h3 {
    font-size: 18px;
    margin: 0 0 4px;
}

.why-item p {
    margin: 0;
    color: #475569;
}

.why-right img {
    width: 100%;
    border-radius: var(--r-2xl);
    box-shadow: var(--shadow-lg);
}

/* === Home: How It Works === */
.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
}

@media (min-width: 768px) {
    .steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step-num {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
}

.step h3 {
    font-size: 20px;
    margin: 0 0 8px;
}

.step p {
    margin: 0;
    color: #475569;
}

/* === Contact (Get In Touch) === */
.contact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 1024px) {
    .contact {
        grid-template-columns: 1fr 2fr;
        gap: 32px;
    }
}

.contact-cards {
    display: grid;
    gap: 24px;
}

.contact-card {
    background: var(--bg-soft);
    border-radius: var(--r-xl);
    padding: 24px;
    color: var(--brand);
}

.contact-card .icon {
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
}

.contact-card .k {
    font-size: 14px;
    color: #475569;
    margin-bottom: 4px;
}

.contact-card a,
.contact-card .v {
    color: #0f172a;
    font-size: 18px;
    text-decoration: none;
}

.contact-card a:hover {
    color: var(--brand);
}

.contact-form {
    background: var(--bg-soft);
    border-radius: var(--r-xl);
    padding: 28px;
}

.contact-form h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.contact-form .muted {
    color: #475569;
    margin: 0 0 18px;
}

.fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .fields {
        grid-template-columns: 1fr 1fr;
    }
}

.field {
    display: block;
}

.field span {
    display: block;
    font-size: 14px;
    color: #475569;
    margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid rgba(148, 163, 184, .45);
    border-radius: 8px;
    /* rounded-lg */
    outline: none;
    font: inherit;
    color: #0f172a;
}

.field textarea {
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(11, 44, 77, .16);
}

.btn-block {
    width: 100%;
    justify-content: center;
    gap: 8px;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none;
    }

    .feature img {
        transition: none;
    }

    .service-card {
        transition: none;
    }
}

.marquee-track:hover {
    animation-play-state: paused
}


/* Dropdown hover bridge + JS-open state */
.dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 256px;
    height: 10px;
    /* bridges the gap so hover doesn't drop */
}

.dropdown.is-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity .18s ease, transform .18s ease, visibility 0s;
}

/* Ensure section headings stay centered on laptop+ */
@media (min-width: 1024px) {

    .section-head,
    .section-head h2,
    .section-head p {
        text-align: center;
        margin-bottom: 8px;
    }

    .section-head p {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 48px;
    }
}

@media (min-width: 768px) {

    .section-head,
    .section-head h2,
    .section-head p {
        text-align: center;
        margin-bottom: 8px;
    }

    .section-head p {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 48px;
    }
}

@media (min-width: 456px) {

    .section-head,
    .section-head h2,
    .section-head p {
        text-align: center;
        margin-bottom: 8px;
    }

    .section-head p {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 48px;
    }
}