/* style.css */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;800;900&display=swap");

:root {
    --brand-orange: #fa5108;
    --brand-orange-dark: #d84200;
    --brand-dark: #101114;
    --brand-charcoal: #17191f;
    --brand-grey: #f4f5f7;
    --brand-text: #4b5563;
    --brand-border: #e5e7eb;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--brand-dark);
}

/* Tailwind colour helper classes */
.text-brandDark {
    color: var(--brand-dark);
}

.text-brandOrange {
    color: var(--brand-orange);
}

.bg-brandDark {
    background-color: var(--brand-dark);
}

.bg-brandOrange {
    background-color: var(--brand-orange);
}

.border-brandOrange {
    border-color: var(--brand-orange);
}

.bg-soft {
    background:
        radial-gradient(circle at top left, rgba(250, 81, 8, 0.08), transparent 34%),
        #f7f7f8;
}

/* Animation */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(16, 17, 20, 0.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

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

.logo-wrap {
    display: inline-flex;
    align-items: center;
    transition: transform 0.25s ease;
}

.logo-wrap:hover {
    transform: scale(1.03);
}

.site-logo {
    height: 68px;
    width: auto;
    display: block;
}

.main-nav {
    display: none;
    align-items: center;
    gap: 36px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.main-nav a {
    color: #525866;
    text-decoration: none;
    position: relative;
    transition: color 0.25s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 0;
    height: 3px;
    background: var(--brand-orange);
    transition: width 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--brand-orange);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
}

.phone-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-orange);
    color: #fff;
    padding: 14px 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-shadow: 0 16px 30px rgba(250, 81, 8, 0.26);
    transition: all 0.25s ease;
    text-decoration: none;
    white-space: nowrap;
}

.phone-button:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
}

/* Hero */
.hero-banner {
    position: relative;
    min-height: 780px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image:
        linear-gradient(90deg, rgba(5, 5, 7, 0.95) 0%, rgba(5, 5, 7, 0.82) 42%, rgba(5, 5, 7, 0.35) 100%),
        url("Gemini_Generated_Image_6j9d236j9d236j9d.png");
    background-size: cover;
    background-position: center;
    border-bottom: 8px solid var(--brand-orange);
}

.hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(250, 81, 8, 0.26), transparent 26%),
        linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 52px 52px;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 120px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(250, 81, 8, 0.14);
    color: #fff;
    border: 1px solid rgba(250, 81, 8, 0.5);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 28px;
}

.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--brand-orange);
    border-radius: 999px;
    box-shadow: 0 0 20px rgba(250, 81, 8, 0.9);
}

.hero-content h1 {
    color: #fff;
    font-size: clamp(56px, 8vw, 104px);
    line-height: 0.88;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.075em;
    margin-bottom: 32px;
}

.hero-content h1 span {
    color: var(--brand-orange);
}

.hero-content p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.55;
    font-weight: 500;
    margin-bottom: 38px;
}

.hero-content p strong {
    color: #fff;
    font-weight: 800;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 46px;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 30px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: all 0.25s ease;
}

.primary-button {
    background: var(--brand-orange);
    color: #fff;
    box-shadow: 0 20px 42px rgba(250, 81, 8, 0.32);
}

.primary-button:hover {
    background: #fff;
    color: var(--brand-orange);
    transform: translateY(-2px);
}

.secondary-button {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.secondary-button:hover {
    background: #fff;
    color: var(--brand-dark);
    transform: translateY(-2px);
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 860px;
}

.hero-points div {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    border-radius: 18px;
    padding: 20px;
}

.hero-points strong {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.hero-points span {
    display: block;
    color: rgba(255, 255, 255, 0.66);
    font-size: 13px;
    line-height: 1.4;
}

/* Trust Bar */
.trust-bar {
    background: var(--brand-dark);
    padding: 22px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
}

.trust-item {
    background: var(--brand-charcoal);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.trust-item span {
    color: var(--brand-orange);
    font-size: 13px;
    font-weight: 900;
}

.trust-item strong {
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Sections */
.section-padding {
    padding: 110px 0;
}

.section-label {
    display: inline-block;
    color: var(--brand-orange);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 16px;
}

.section-label.light {
    color: #fff;
    opacity: 0.85;
}

.section-title {
    max-width: 680px;
    color: var(--brand-dark);
    font-size: clamp(38px, 4vw, 58px);
    line-height: 0.98;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.045em;
    margin-bottom: 28px;
}

.large-title {
    color: var(--brand-dark);
    font-size: clamp(42px, 6vw, 74px);
    line-height: 0.94;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.055em;
    margin-bottom: 28px;
}

.large-title span {
    color: var(--brand-orange);
}

.section-intro {
    color: var(--brand-text);
    font-size: 17px;
    line-height: 1.8;
    max-width: 720px;
    margin-bottom: 42px;
}

/* Solutions */
.solution-list {
    display: grid;
    gap: 22px;
}

.solution-item {
    display: flex;
    gap: 20px;
    padding: 26px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(16, 17, 20, 0.08);
    box-shadow: 0 18px 44px rgba(16, 17, 20, 0.06);
    transition: all 0.25s ease;
}

.solution-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 54px rgba(16, 17, 20, 0.1);
}

.solution-number {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    background: rgba(250, 81, 8, 0.1);
    color: var(--brand-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.solution-item h3 {
    color: var(--brand-dark);
    font-size: 17px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.solution-item p {
    color: var(--brand-text);
    font-size: 14px;
    line-height: 1.7;
}

/* Coverage Card */
.coverage-card {
    position: relative;
    background: #fff;
    border-radius: 30px;
    padding: 42px;
    border: 1px solid rgba(250, 81, 8, 0.22);
    box-shadow:
        0 28px 70px rgba(16, 17, 20, 0.12),
        inset 0 0 0 1px rgba(255, 255, 255, 0.7);
    overflow: hidden;
}

.coverage-card::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: rgba(250, 81, 8, 0.11);
}

.coverage-card-header {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.coverage-card-header span {
    color: var(--brand-orange);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.coverage-card-header h2 {
    color: var(--brand-dark);
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    margin-top: 8px;
}

.coverage-card > p {
    position: relative;
    z-index: 1;
    color: var(--brand-text);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.area-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.area-grid div {
    color: #4b5563;
    background: #f7f7f8;
    border: 1px solid #eceef2;
    border-radius: 14px;
    padding: 13px 14px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.area-grid div::before {
    content: "/";
    color: var(--brand-orange);
    margin-right: 8px;
}

.quote-box {
    position: relative;
    z-index: 1;
    margin-top: 32px;
    background: var(--brand-dark);
    color: #fff;
    border-radius: 22px;
    padding: 28px;
}

.quote-box strong {
    display: block;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.quote-box p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.quote-box a {
    display: inline-flex;
    color: #fff;
    background: var(--brand-orange);
    padding: 13px 20px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
}

/* Images */
.image-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin: 54px 0;
}

.image-card {
    position: relative;
    overflow: hidden;
    min-height: 390px;
    border-radius: 30px;
    box-shadow: 0 24px 64px rgba(16, 17, 20, 0.14);
}

.image-card img {
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.image-card:hover img {
    transform: scale(1.05);
}

.image-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.82) 100%);
}

.image-card div {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 26px;
    z-index: 2;
}

.image-card span {
    display: block;
    color: var(--brand-orange);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 8px;
}

.image-card h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.035em;
}

/* Content Panel */
.content-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    max-width: 1060px;
    margin: 0 auto;
}

.content-panel div {
    background: #fff;
    border: 1px solid rgba(16, 17, 20, 0.08);
    border-radius: 26px;
    padding: 34px;
    box-shadow: 0 18px 50px rgba(16, 17, 20, 0.07);
}

.content-panel h3 {
    color: var(--brand-dark);
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    margin-bottom: 14px;
}

.content-panel p {
    color: var(--brand-text);
    font-size: 15px;
    line-height: 1.8;
}

/* CTA */
.cta-section {
    background: #fff;
    padding: 0 0 110px;
}

.cta-box {
    background:
        radial-gradient(circle at 15% 15%, rgba(250, 81, 8, 0.34), transparent 32%),
        linear-gradient(135deg, #101114, #1b1e25);
    border-radius: 34px;
    padding: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    color: #fff;
    box-shadow: 0 30px 90px rgba(16, 17, 20, 0.28);
}

.cta-box h2 {
    font-size: clamp(34px, 4vw, 56px);
    line-height: 0.95;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.045em;
    margin-bottom: 16px;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.7;
    max-width: 620px;
}

.cta-button {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-orange);
    color: #fff;
    min-height: 64px;
    padding: 0 34px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 20px 44px rgba(250, 81, 8, 0.32);
    transition: all 0.25s ease;
}

.cta-button:hover {
    background: #fff;
    color: var(--brand-orange);
    transform: translateY(-2px);
}

/* Footer */
.site-footer {
    background:
        radial-gradient(circle at top left, rgba(250, 81, 8, 0.12), transparent 28%),
        #101114;
    color: #fff;
    padding: 82px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 46px;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    height: 56px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 22px;
}

.site-footer h4 {
    color: var(--brand-orange);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 18px;
}

.site-footer p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 5px;
}

.site-footer a {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    text-decoration: none;
    margin-top: 8px;
}

.site-footer a:hover {
    color: var(--brand-orange);
}

.footer-bottom {
    padding-top: 28px;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
}

/* Responsive */
@media (min-width: 1024px) {
    .main-nav {
        display: flex;
    }
}

@media (max-width: 1023px) {
    .header-inner {
        height: 82px;
    }

    .site-logo {
        height: 56px;
    }

    .phone-button {
        padding: 12px 18px;
        font-size: 12px;
    }

    .hero-banner {
        min-height: auto;
    }

    .hero-content {
        padding: 96px 0;
    }

    .hero-points,
    .trust-grid,
    .image-grid,
    .content-panel,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .header-inner {
        height: 76px;
    }

    .site-logo {
        height: 48px;
    }

    .phone-button {
        padding: 11px 14px;
        font-size: 11px;
    }

    .hero-content {
        padding: 78px 0;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .hero-points {
        grid-template-columns: 1fr;
    }

    .section-padding {
        padding: 78px 0;
    }

    .solution-item {
        flex-direction: column;
    }

    .coverage-card {
        padding: 28px;
        border-radius: 24px;
    }

    .area-grid {
        grid-template-columns: 1fr;
    }

    .image-card,
    .image-card img {
        min-height: 300px;
    }

    .content-panel div {
        padding: 26px;
    }

    .cta-section {
        padding-bottom: 78px;
    }

    .cta-box {
        padding: 34px;
        border-radius: 26px;
    }

    .cta-button {
        width: 100%;
    }
}


/* ================================
   Contact Page
================================ */

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(16, 17, 20, 0.1);
    border-radius: 999px;
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    width: 18px;
    height: 2px;
    background: var(--brand-dark);
    border-radius: 999px;
    transition: all 0.25s ease;
}

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

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

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

.mobile-menu-panel {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background:
        radial-gradient(circle at top left, rgba(250, 81, 8, 0.16), transparent 34%),
        var(--brand-dark);
    padding: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28);
}

.mobile-menu-panel a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-panel a.active {
    color: var(--brand-orange);
}

.mobile-call-button {
    margin-top: 18px;
    background: var(--brand-orange);
    color: #fff !important;
    text-align: center;
    border-radius: 999px;
    border-bottom: none !important;
    padding: 16px 22px !important;
}

/* Contact Hero */
.contact-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image:
        linear-gradient(90deg, rgba(5, 5, 7, 0.96) 0%, rgba(5, 5, 7, 0.82) 46%, rgba(5, 5, 7, 0.36) 100%),
        url("Gemini_Generated_Image_ts4k0ts4k0ts4k0t.png");
    background-size: cover;
    background-position: center;
    border-bottom: 8px solid var(--brand-orange);
}

.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 18%, rgba(250, 81, 8, 0.28), transparent 28%),
        linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.76) 100%);
    pointer-events: none;
    z-index: 1;
}

.contact-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 52px 52px;
    z-index: 1;
    pointer-events: none;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    padding: 110px 0;
}

.contact-hero-content h1 {
    color: #fff;
    font-size: clamp(58px, 8vw, 104px);
    line-height: 0.88;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.075em;
    margin-bottom: 32px;
}

.contact-hero-content h1 span {
    color: var(--brand-orange);
}

.contact-hero-content p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.55;
    font-weight: 500;
    margin-bottom: 38px;
}

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

/* Contact Cards */
.contact-card-section {
    background: var(--brand-dark);
    padding: 28px 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.contact-info-card {
    background: var(--brand-charcoal);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 30px;
    color: #fff;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.contact-info-card span {
    display: block;
    color: var(--brand-orange);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 12px;
}

.contact-info-card h2 {
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.contact-info-card p {
    color: rgba(255, 255, 255, 0.64);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.contact-info-card a,
.contact-info-card strong {
    color: #fff;
    font-size: 17px;
    font-weight: 900;
    text-decoration: none;
}

/* Contact Main */
.contact-left {
    position: relative;
}

.hub-card {
    background: #fff;
    border-radius: 30px;
    border: 1px solid rgba(16, 17, 20, 0.08);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(16, 17, 20, 0.1);
    margin-bottom: 28px;
}

.hub-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.hub-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.hub-card:hover .hub-image img {
    transform: scale(1.05);
}

.hub-details {
    padding: 34px;
}

.hub-details h3 {
    color: var(--brand-dark);
    font-size: 26px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.hub-detail-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 20px;
    padding: 18px 0;
    border-top: 1px solid #eceef2;
}

.hub-detail-row span {
    color: var(--brand-orange);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hub-detail-row strong,
.hub-detail-row a {
    color: var(--brand-dark);
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    line-height: 1.5;
}

.hub-detail-row a:hover {
    color: var(--brand-orange);
}

.hours-panel {
    background: #fff;
    border-radius: 26px;
    padding: 30px;
    border: 1px solid rgba(16, 17, 20, 0.08);
    box-shadow: 0 18px 50px rgba(16, 17, 20, 0.07);
}

.hours-panel h3 {
    color: var(--brand-orange);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 20px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
    border-top: 1px solid #eceef2;
}

.hours-row span,
.hours-row strong {
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hours-row.muted span,
.hours-row.muted strong {
    color: #9ca3af;
}

/* Contact Form */
.contact-form-card {
    background: #fff;
    border-radius: 34px;
    padding: 44px;
    border: 1px solid rgba(250, 81, 8, 0.18);
    box-shadow:
        0 30px 80px rgba(16, 17, 20, 0.12),
        inset 0 0 0 1px rgba(255, 255, 255, 0.8);
    position: sticky;
    top: 120px;
}

.contact-form-card h2 {
    color: var(--brand-dark);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 0.95;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    margin-bottom: 18px;
}

.contact-form-card > p {
    color: var(--brand-text);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-form {
    display: grid;
    gap: 22px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-group {
    display: grid;
    gap: 9px;
}

.form-group label {
    color: var(--brand-dark);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #e5e7eb;
    background: #f7f7f8;
    border-radius: 16px;
    padding: 16px 18px;
    color: var(--brand-dark);
    font-size: 14px;
    font-weight: 600;
    outline: none;
    transition: all 0.25s ease;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: #fff;
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 4px rgba(250, 81, 8, 0.1);
}

.form-submit-button {
    width: 100%;
    min-height: 60px;
    border: none;
    border-radius: 999px;
    background: var(--brand-dark);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    cursor: pointer;
    box-shadow: 0 18px 44px rgba(16, 17, 20, 0.18);
    transition: all 0.25s ease;
}

.form-submit-button:hover {
    background: var(--brand-orange);
    transform: translateY(-2px);
    box-shadow: 0 20px 44px rgba(250, 81, 8, 0.26);
}

.form-status {
    padding: 16px 18px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
}

.form-status.success {
    display: block;
    background: rgba(34, 197, 94, 0.1);
    color: #15803d;
    border: 1px solid rgba(34, 197, 94, 0.22);
}

.form-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: #b91c1c;
    border: 1px solid rgba(239, 68, 68, 0.22);
}

.form-note {
    margin-top: 26px;
    padding: 22px;
    border-radius: 20px;
    background: var(--brand-dark);
    color: #fff;
}

.form-note strong {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-note span {
    display: block;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.6;
}

.contact-cta-spacing {
    padding-top: 110px;
}

/* Contact Responsive */
@media (max-width: 1023px) {
    .mobile-menu-btn {
        display: inline-flex;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        position: static;
    }

    .phone-button {
        display: none;
    }

    .contact-hero {
        min-height: auto;
    }

    .contact-hero-content {
        padding: 96px 0;
    }
}

@media (max-width: 640px) {
    .contact-hero-content {
        padding: 78px 0;
    }

    .contact-hero-content h1 {
        font-size: 52px;
    }

    .contact-hero-content p {
        font-size: 17px;
    }

    .contact-hero-actions {
        flex-direction: column;
    }

    .contact-info-card {
        padding: 26px;
    }

    .hub-image {
        height: 240px;
    }

    .hub-details {
        padding: 26px;
    }

    .hub-detail-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .hours-row {
        flex-direction: column;
        gap: 6px;
    }

    .contact-form-card {
        padding: 30px;
        border-radius: 26px;
    }

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

    .contact-cta-spacing {
        padding-top: 78px;
    }
}

/* ================================
   Fleet / Facilities Page
================================ */

.fleet-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image:
        linear-gradient(90deg, rgba(5, 5, 7, 0.96) 0%, rgba(5, 5, 7, 0.82) 46%, rgba(5, 5, 7, 0.34) 100%),
        url("https://images.unsplash.com/photo-1738101996177-13110d20a973?q=80&w=1600&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    border-bottom: 8px solid var(--brand-orange);
}

.fleet-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 18%, rgba(250, 81, 8, 0.28), transparent 28%),
        linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.78) 100%);
    z-index: 1;
    pointer-events: none;
}

.fleet-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 52px 52px;
    z-index: 1;
    pointer-events: none;
}

.fleet-hero-content {
    position: relative;
    z-index: 2;
    max-width: 880px;
    padding: 110px 0;
}

.fleet-hero-content h1 {
    color: #fff;
    font-size: clamp(58px, 8vw, 104px);
    line-height: 0.88;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.075em;
    margin-bottom: 32px;
}

.fleet-hero-content h1 span {
    color: var(--brand-orange);
}

.fleet-hero-content p {
    max-width: 740px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.55;
    font-weight: 500;
    margin-bottom: 38px;
}

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

/* Fleet Equipment */
.fleet-section-heading {
    max-width: 820px;
    margin-bottom: 56px;
}

.fleet-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.fleet-feature-card {
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(16, 17, 20, 0.08);
    box-shadow: 0 26px 70px rgba(16, 17, 20, 0.1);
    transition: all 0.25s ease;
}

.fleet-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 34px 90px rgba(16, 17, 20, 0.14);
}

.fleet-image {
    position: relative;
    height: 340px;
    overflow: hidden;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.fleet-feature-card:hover .fleet-image img {
    transform: scale(1.06);
}

.fleet-card-content {
    padding: 34px;
}

.fleet-card-content span {
    display: block;
    color: var(--brand-orange);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 12px;
}

.fleet-card-content h3 {
    color: var(--brand-dark);
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.045em;
    margin-bottom: 18px;
}

.fleet-card-content p {
    color: var(--brand-text);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.fleet-card-content ul {
    display: grid;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.fleet-card-content li {
    color: var(--brand-dark);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.fleet-card-content li::before {
    content: "/";
    color: var(--brand-orange);
    margin-right: 8px;
}

/* Facility Section */
.facility-section {
    background: #fff;
    padding: 110px 0;
}

.facility-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: center;
}

.facility-image {
    border-radius: 34px;
    overflow: hidden;
    border: 12px solid #fff;
    box-shadow: 0 32px 90px rgba(16, 17, 20, 0.18);
    min-height: 560px;
}

.facility-image img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    display: block;
}

.facility-content h2 {
    color: var(--brand-dark);
    font-size: clamp(42px, 5vw, 68px);
    line-height: 0.92;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.06em;
    margin-bottom: 28px;
}

.facility-content p {
    color: var(--brand-text);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 34px;
    max-width: 680px;
}

.facility-list {
    display: grid;
    gap: 16px;
    margin-bottom: 34px;
}

.facility-list div {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f7f7f8;
    border: 1px solid #eceef2;
    border-radius: 16px;
    padding: 18px;
}

.facility-list span {
    width: 9px;
    height: 9px;
    background: var(--brand-orange);
    border-radius: 999px;
    box-shadow: 0 0 16px rgba(250, 81, 8, 0.6);
}

.facility-list strong {
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.facility-address {
    background:
        radial-gradient(circle at top left, rgba(250, 81, 8, 0.16), transparent 36%),
        var(--brand-dark);
    color: #fff;
    border-radius: 24px;
    padding: 28px;
}

.facility-address span {
    display: block;
    color: var(--brand-orange);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 8px;
}

.facility-address strong {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
}

/* Capability Section */
.capability-panel {
    background:
        radial-gradient(circle at top left, rgba(250, 81, 8, 0.1), transparent 32%),
        #f7f7f8;
    border: 1px solid rgba(16, 17, 20, 0.08);
    border-radius: 36px;
    padding: 54px;
    box-shadow: 0 24px 70px rgba(16, 17, 20, 0.08);
}

.capability-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.capability-heading h2 {
    color: var(--brand-dark);
    font-size: clamp(38px, 4vw, 58px);
    line-height: 0.96;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    margin-bottom: 20px;
}

.capability-heading p {
    color: var(--brand-text);
    font-size: 16px;
    line-height: 1.8;
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.capability-card {
    background: #fff;
    border: 1px solid rgba(16, 17, 20, 0.08);
    border-radius: 24px;
    padding: 28px;
    transition: all 0.25s ease;
}

.capability-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(16, 17, 20, 0.1);
}

.capability-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(250, 81, 8, 0.1);
    color: var(--brand-orange);
    border-radius: 14px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 20px;
}

.capability-card h3 {
    color: var(--brand-dark);
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.capability-card p {
    color: var(--brand-text);
    font-size: 14px;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 1023px) {
    .fleet-hero {
        min-height: auto;
    }

    .fleet-hero-content {
        padding: 96px 0;
    }

    .fleet-card-grid,
    .facility-grid,
    .capability-grid {
        grid-template-columns: 1fr;
    }

    .facility-section {
        padding: 86px 0;
    }

    .facility-image,
    .facility-image img {
        min-height: 420px;
    }

    .capability-panel {
        padding: 38px;
    }
}

@media (max-width: 640px) {
    .fleet-hero-content {
        padding: 78px 0;
    }

    .fleet-hero-content h1 {
        font-size: 52px;
    }

    .fleet-hero-content p {
        font-size: 17px;
    }

    .fleet-hero-actions {
        flex-direction: column;
    }

    .fleet-image {
        height: 250px;
    }

    .fleet-card-content {
        padding: 28px;
    }

    .fleet-card-content h3 {
        font-size: 26px;
    }

    .facility-section {
        padding: 78px 0;
    }

    .facility-grid {
        gap: 42px;
    }

    .facility-image,
    .facility-image img {
        min-height: 320px;
    }

    .facility-content h2 {
        font-size: 42px;
    }

    .facility-list div {
        align-items: flex-start;
    }

    .capability-panel {
        padding: 28px;
        border-radius: 28px;
    }

    .capability-heading h2 {
        font-size: 38px;
    }
}

/* ================================
   Services Page
================================ */

.services-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image:
        linear-gradient(90deg, rgba(5, 5, 7, 0.96) 0%, rgba(5, 5, 7, 0.82) 46%, rgba(5, 5, 7, 0.34) 100%),
        url("Gemini_Generated_Image_6j9d236j9d236j9d.png");
    background-size: cover;
    background-position: center;
    border-bottom: 8px solid var(--brand-orange);
}

.services-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 18%, rgba(250, 81, 8, 0.28), transparent 28%),
        linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.78) 100%);
    z-index: 1;
    pointer-events: none;
}

.services-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 52px 52px;
    z-index: 1;
    pointer-events: none;
}

.services-hero-content {
    position: relative;
    z-index: 2;
    max-width: 880px;
    padding: 110px 0;
}

.services-hero-content h1 {
    color: #fff;
    font-size: clamp(58px, 8vw, 104px);
    line-height: 0.88;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.075em;
    margin-bottom: 32px;
}

.services-hero-content h1 span {
    color: var(--brand-orange);
}

.services-hero-content p {
    max-width: 740px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.55;
    font-weight: 500;
    margin-bottom: 38px;
}

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

/* Intro */
.services-intro {
    max-width: 820px;
    margin-bottom: 52px;
}

.service-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.service-overview-card {
    background: #fff;
    border: 1px solid rgba(16, 17, 20, 0.08);
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 20px 58px rgba(16, 17, 20, 0.08);
    transition: all 0.25s ease;
}

.service-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 72px rgba(16, 17, 20, 0.12);
}

.service-overview-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: rgba(250, 81, 8, 0.1);
    color: var(--brand-orange);
    border-radius: 15px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 22px;
}

.service-overview-card h3 {
    color: var(--brand-dark);
    font-size: 20px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.035em;
    margin-bottom: 14px;
}

.service-overview-card p {
    color: var(--brand-text);
    font-size: 14px;
    line-height: 1.75;
}

/* Detail Sections */
.service-detail-section {
    padding: 110px 0;
    overflow: hidden;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 72px;
    align-items: center;
}

.service-detail-grid.reverse .service-detail-image {
    order: 2;
}

.service-detail-grid.reverse .service-detail-content {
    order: 1;
}

.service-detail-image {
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    min-height: 500px;
    box-shadow: 0 32px 90px rgba(16, 17, 20, 0.16);
}

.service-detail-image::before {
    content: "";
    position: absolute;
    inset: -18px;
    background: rgba(250, 81, 8, 0.12);
    filter: blur(28px);
    z-index: -1;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.service-detail-image:hover img {
    transform: scale(1.05);
}

.service-number {
    display: inline-block;
    color: var(--brand-orange);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 18px;
}

.service-detail-content h2 {
    color: var(--brand-dark);
    font-size: clamp(42px, 5vw, 68px);
    line-height: 0.92;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.06em;
    margin-bottom: 28px;
}

.service-detail-content h2 span {
    color: var(--brand-orange);
}

.service-detail-content p {
    color: var(--brand-text);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 700px;
}

.service-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

.service-stat-grid div {
    background: #fff;
    border: 1px solid #eceef2;
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 16px 40px rgba(16, 17, 20, 0.06);
}

.service-stat-grid span {
    display: block;
    color: var(--brand-orange);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 8px;
}

.service-stat-grid strong {
    color: var(--brand-dark);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.service-dark-card {
    background:
        radial-gradient(circle at top left, rgba(250, 81, 8, 0.16), transparent 36%),
        var(--brand-dark);
    color: #fff;
    border-radius: 24px;
    padding: 28px;
    margin-bottom: 28px;
}

.service-dark-card span {
    display: block;
    color: var(--brand-orange);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 10px;
}

.service-dark-card p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.service-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.service-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--brand-dark);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.service-check-list li::before {
    content: "";
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    background: var(--brand-orange);
    border-radius: 999px;
    box-shadow: 0 0 16px rgba(250, 81, 8, 0.6);
}

/* FAQ */
.services-faq-section {
    background:
        radial-gradient(circle at top left, rgba(250, 81, 8, 0.08), transparent 32%),
        #f7f7f8;
    padding: 110px 0;
    border-top: 1px solid rgba(16, 17, 20, 0.06);
}

.services-faq-heading {
    text-align: center;
    margin-bottom: 46px;
}

.services-faq-heading h2 {
    color: var(--brand-dark);
    font-size: clamp(38px, 4vw, 58px);
    line-height: 0.96;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    margin-bottom: 18px;
}

.services-faq-heading h2 span {
    color: var(--brand-orange);
}

.services-faq-heading p {
    color: var(--brand-text);
    font-size: 15px;
    line-height: 1.7;
}

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(16, 17, 20, 0.08);
    border-radius: 22px;
    padding: 0;
    box-shadow: 0 16px 46px rgba(16, 17, 20, 0.06);
    overflow: hidden;
    transition: all 0.25s ease;
}

.faq-item[open] {
    box-shadow: 0 24px 64px rgba(16, 17, 20, 0.1);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    list-style: none;
    padding: 24px 28px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary span {
    color: var(--brand-dark);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.faq-item summary strong {
    color: var(--brand-orange);
    font-size: 28px;
    line-height: 1;
    transition: transform 0.25s ease;
}

.faq-item[open] summary strong {
    transform: rotate(45deg);
}

.faq-item p {
    color: var(--brand-text);
    font-size: 15px;
    line-height: 1.75;
    padding: 0 28px 26px;
}

.services-cta-spacing {
    padding-top: 110px;
}

/* Responsive */
@media (max-width: 1023px) {
    .services-hero {
        min-height: auto;
    }

    .services-hero-content {
        padding: 96px 0;
    }

    .service-overview-grid,
    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-grid.reverse .service-detail-image,
    .service-detail-grid.reverse .service-detail-content {
        order: initial;
    }

    .service-detail-section {
        padding: 86px 0;
    }

    .service-detail-image,
    .service-detail-image img {
        min-height: 420px;
    }
}

@media (max-width: 640px) {
    .services-hero-content {
        padding: 78px 0;
    }

    .services-hero-content h1 {
        font-size: 52px;
    }

    .services-hero-content p {
        font-size: 17px;
    }

    .services-hero-actions {
        flex-direction: column;
    }

    .service-overview-card {
        padding: 26px;
    }

    .service-detail-section {
        padding: 78px 0;
    }

    .service-detail-grid {
        gap: 42px;
    }

    .service-detail-image,
    .service-detail-image img {
        min-height: 300px;
    }

    .service-detail-content h2 {
        font-size: 42px;
    }

    .service-stat-grid {
        grid-template-columns: 1fr;
    }

    .service-check-list li {
        align-items: flex-start;
    }

    .services-faq-section {
        padding: 78px 0;
    }

    .faq-item summary {
        align-items: flex-start;
        padding: 22px;
    }

    .faq-item summary span {
        font-size: 12px;
        line-height: 1.5;
    }

    .faq-item p {
        padding: 0 22px 24px;
    }

    .services-cta-spacing {
        padding-top: 78px;
    }
}

/* ================================
   Premium Footer
================================ */

.premium-footer {
    position: relative;
    background:
        radial-gradient(circle at top left, rgba(250, 81, 8, 0.18), transparent 30%),
        radial-gradient(circle at bottom right, rgba(250, 81, 8, 0.08), transparent 34%),
        linear-gradient(135deg, #090a0d 0%, #101114 48%, #17191f 100%);
    color: #fff;
    padding: 0 0 34px;
    overflow: hidden;
}

.premium-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 52px 52px;
    pointer-events: none;
}

.footer-cta-wrap {
    position: relative;
    z-index: 2;
    transform: translateY(-50%);
    margin-bottom: -70px;
}

.footer-cta-panel {
    background:
        radial-gradient(circle at top left, rgba(250, 81, 8, 0.3), transparent 34%),
        linear-gradient(135deg, #181b22, #101114);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 8px solid var(--brand-orange);
    border-radius: 34px;
    padding: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

.footer-cta-panel span {
    display: block;
    color: var(--brand-orange);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 12px;
}

.footer-cta-panel h2 {
    color: #fff;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 0.95;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    margin-bottom: 14px;
}

.footer-cta-panel p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 1.7;
    max-width: 680px;
}

.footer-cta-panel > a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-orange);
    color: #fff;
    min-height: 62px;
    padding: 0 34px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 20px 44px rgba(250, 81, 8, 0.3);
    transition: all 0.25s ease;
}

.footer-cta-panel > a:hover {
    background: #fff;
    color: var(--brand-orange);
    transform: translateY(-2px);
}

.premium-footer-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr;
    gap: 56px;
    padding: 120px 0 58px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.premium-footer-logo {
    height: 62px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 28px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.64);
    font-size: 15px;
    line-height: 1.8;
    max-width: 380px;
    margin-bottom: 26px;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-badges span {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 999px;
    padding: 9px 13px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.premium-footer h4 {
    color: var(--brand-orange);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 24px;
}

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

.premium-footer li a {
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.premium-footer li a::before {
    content: "/";
    color: var(--brand-orange);
    margin-right: 8px;
    font-weight: 900;
}

.premium-footer li a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-contact {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 26px;
    padding: 30px;
}

.footer-contact-block {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact-block:first-of-type {
    padding-top: 0;
    border-top: none;
}

.footer-contact-block span {
    display: block;
    color: var(--brand-orange);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 8px;
}

.footer-contact-block p,
.footer-contact-block a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.7;
    font-weight: 700;
    text-decoration: none;
}

.footer-contact-block a:hover {
    color: var(--brand-orange);
}

.premium-footer-bottom {
    position: relative;
    z-index: 2;
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.premium-footer-bottom p {
    color: rgba(255, 255, 255, 0.44);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.premium-footer-bottom div {
    display: flex;
    align-items: center;
    gap: 24px;
}

.premium-footer-bottom a {
    color: rgba(255, 255, 255, 0.44);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-decoration: none;
    transition: color 0.25s ease;
}

.premium-footer-bottom a:hover {
    color: var(--brand-orange);
}

/* Responsive */
@media (max-width: 1023px) {
    .footer-cta-wrap {
        transform: translateY(0);
        margin-bottom: 0;
        padding-top: 78px;
    }

    .premium-footer-grid {
        grid-template-columns: 1fr 1fr;
        padding-top: 70px;
    }

    .footer-cta-panel {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .footer-cta-panel {
        padding: 32px;
        border-radius: 26px;
    }

    .footer-cta-panel > a {
        width: 100%;
    }

    .premium-footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
        padding-top: 58px;
    }

    .footer-contact {
        padding: 26px;
    }

    .premium-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .premium-footer-bottom div {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}