:root {
    --bg: #07111d;
    --bg-soft: #0e1a29;
    --surface: rgba(12, 24, 40, 0.82);
    --surface-strong: #0d1a2d;
    --text: #f4f7fb;
    --muted: #bed0e8;
    --brand: #f7a61b;
    --brand-deep: #f26b21;
    --accent: #18c7c9;
    --line: linear-gradient(90deg, rgba(247, 166, 27, 0) 0%, rgba(247, 166, 27, 0.95) 24%, rgba(24, 199, 201, 1) 76%, rgba(24, 199, 201, 0) 100%);
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: "Cairo", sans-serif;
    background:
        radial-gradient(circle at top right, rgba(24, 199, 201, 0.17), transparent 28%),
        radial-gradient(circle at bottom left, rgba(242, 107, 33, 0.15), transparent 30%),
        linear-gradient(180deg, #06101a 0%, #07111d 50%, #091522 100%);
    overflow-x: hidden;
}

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

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

.section-pad {
    padding: 96px 0;
}

.section-divider {
    width: min(1180px, calc(100% - 2rem));
    height: 3px;
    margin: 0 auto;
    background: var(--line);
    border-radius: 999px;
    opacity: 0.9;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 18px;
}

.section-heading.text-start {
    margin-left: 0;
}

.section-heading h2,
.hero-copy h1,
.hero-copy h2,
.footer-cta h2 {
    font-family: "Teko", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 0.96;
}

.section-heading h2 {
    font-size: clamp(2.8rem, 6vw, 4.7rem);
    margin-bottom: 18px;
}

.section-heading p {
    color: var(--muted);
    font-size: 1.05rem;
}

.section-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.arabic-chip {
    font-family: "Cairo", sans-serif;
    direction: rtl;
}

.dark-chip {
    background: rgba(7, 17, 29, 0.55);
}

.section-arabic,
.hero-arabic,
.service-ar {
    font-family: "Cairo", sans-serif;
    color: #eaf4ff;
}

.btn-brand {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
    color: #08121e;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(242, 107, 33, 0.35);
}

.btn-brand:hover,
.btn-brand:focus {
    color: #08121e;
    transform: translateY(-1px);
}

.btn-outline-light {
    border-radius: 999px;
    border-width: 2px;
}

.top-bar {
    background: rgba(6, 16, 26, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 0;
}

.top-bar-copy,
.top-bar-contacts {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.top-bar-copy span,
.top-bar-contacts a {
    font-size: 0.92rem;
    color: #dce8f7;
}

.top-bar-contacts a {
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
}

.site-header {
    backdrop-filter: blur(14px);
    background: rgba(7, 17, 29, 0.78);
}

.custom-navbar {
    margin: 16px 0 14px;
    padding: 14px 18px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
        rgba(6, 16, 26, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.site-header.scrolled .custom-navbar {
    margin: 10px 0;
}

.navbar-brand,
.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    font-family: "Teko", sans-serif;
    font-size: 2rem;
    letter-spacing: 0.06em;
    background: linear-gradient(145deg, var(--brand), var(--accent));
    color: #04111b;
    box-shadow: 0 14px 30px rgba(24, 199, 201, 0.3);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-copy strong {
    font-size: 1.18rem;
    color: #fff;
}

.brand-copy small {
    color: #b9cde5;
    font-size: 0.8rem;
}

.navbar-nav .nav-link {
    color: #e5eef9;
    font-weight: 700;
    padding-inline: 1rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--brand);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.18);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    filter: invert(1);
}

.header-line {
    height: 4px;
    background: var(--line);
}

.hero-section {
    position: relative;
}

.hero-carousel .carousel-indicators {
    bottom: 36px;
}

.hero-carousel .carousel-indicators [data-bs-target] {
    width: 48px;
    height: 5px;
    border-radius: 999px;
    border: 0;
    background-color: rgba(255, 255, 255, 0.45);
}

.hero-slide {
    min-height: calc(100vh - 132px);
    display: flex;
    align-items: center;
    padding: 110px 0 120px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(4, 13, 22, 0.92) 12%, rgba(4, 13, 22, 0.68) 48%, rgba(7, 17, 29, 0.82) 100%),
        radial-gradient(circle at top right, rgba(24, 199, 201, 0.24), transparent 25%);
}

.hero-slide > .container {
    position: relative;
    z-index: 1;
}

.hero-slide-one {
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.2)),
        url("../images/hero_crane_1781071621680.png");
}

.hero-slide-two {
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.2)),
        url("../images/hero_recovery_1781071634997.png");
}

.hero-slide-three {
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.2)),
        url("../images/hero_boom_truck_1781071645547.png");
}

.hero-copy {
    max-width: 740px;
}

.hero-copy.narrow {
    max-width: 760px;
}

.hero-copy h1 {
    font-size: clamp(4.1rem, 10vw, 7.5rem);
    margin-bottom: 22px;
}

.hero-copy h2 {
    font-size: clamp(3.4rem, 8vw, 6.2rem);
    margin-bottom: 20px;
}

.hero-copy p {
    max-width: 680px;
    font-size: 1.1rem;
    color: #e3eef8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.hero-panel {
    padding: 30px;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
        rgba(7, 18, 30, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
}

.hero-panel-top {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.panel-tag {
    padding: 7px 14px;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.panel-tag.accent {
    background: rgba(24, 199, 201, 0.14);
    color: #93fcff;
}

.hero-panel h2 {
    margin-bottom: 18px;
    font-family: "Teko", sans-serif;
    font-size: 2.9rem;
    text-transform: uppercase;
}

.contact-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    margin-bottom: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-pill span {
    font-weight: 700;
}

.contact-pill a {
    padding: 8px 13px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(24, 199, 201, 0.2), rgba(24, 199, 201, 0.1));
    color: #aefeff;
    font-weight: 700;
}

.mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 22px;
}

.mini-stats div {
    padding: 18px 12px;
    border-radius: 18px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
}

.mini-stats strong,
.metric-card strong {
    display: block;
    font-family: "Teko", sans-serif;
    font-size: 3rem;
    color: var(--brand);
    line-height: 1;
}

.mini-stats span,
.metric-card span {
    color: #dbe8f8;
    font-size: 0.95rem;
}

.trust-strip {
    padding: 44px 0;
}

.trust-card,
.service-card,
.metric-card,
.fleet-card,
.map-card,
.address-card,
.contact-panel,
.contact-card,
.about-point,
.visual-card {
    height: 100%;
    border-radius: var(--radius-md);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
        rgba(9, 22, 36, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.trust-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
}

.trust-card i,
.service-icon,
.about-point i,
.contact-card i {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(247, 166, 27, 0.18), rgba(24, 199, 201, 0.18));
    color: #fff;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.trust-card h3,
.service-card h3,
.fleet-content h3,
.about-point h3,
.contact-card h3,
.address-card h3 {
    font-family: "Teko", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 2rem;
    margin-bottom: 10px;
}

.trust-card p,
.service-card p,
.fleet-content p,
.contact-panel p,
.about-point p,
.contact-card p,
.address-card li,
.footer-main p,
.footer-contact li {
    color: var(--muted);
}

.service-card {
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 5px;
    background: var(--line);
}

.service-icon {
    margin-bottom: 18px;
}

.about-visual {
    position: relative;
    min-height: 460px;
    border-radius: 36px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(247, 166, 27, 0.16), rgba(24, 199, 201, 0.18)),
        url("../images/about_visual_1781071658053.png") center/cover no-repeat;
    box-shadow: var(--shadow);
}

.about-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 13, 21, 0.22), rgba(5, 13, 21, 0.78));
}

.visual-card {
    position: absolute;
    z-index: 1;
    padding: 24px;
}

.visual-main {
    inset: auto 28px 28px 28px;
}

.visual-label {
    display: inline-block;
    padding: 7px 12px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    font-weight: 700;
    font-size: 0.85rem;
}

.visual-main h3 {
    font-family: "Teko", sans-serif;
    text-transform: uppercase;
    font-size: 3rem;
    line-height: 0.95;
}

.visual-float {
    top: 28px;
    right: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 280px;
}

.visual-float i {
    font-size: 1.9rem;
    color: var(--brand);
}

.about-points {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.about-point {
    display: flex;
    gap: 16px;
    padding: 20px;
}

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

.metric-card {
    padding: 28px 22px;
}

.fleet-carousel {
    padding-inline: 54px;
    margin-top: 38px;
}

.fleet-card {
    overflow: hidden;
}

.fleet-image {
    min-height: 260px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.fleet-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 17, 29, 0.08), rgba(7, 17, 29, 0.42));
}

.fleet-image-1 {
    background-image: url("../images/fleet_crane_1781071693732.png");
}

.fleet-image-2 {
    background-image: url("../images/fleet_boom_1781071706894.png");
}

.fleet-image-3 {
    background-image: url("../images/hero_recovery_1781071634997.png");
}

.fleet-image-4 {
    background-image: url("../images/about_visual_1781071658053.png");
}

.fleet-image-5 {
    background-image: url("../images/hero_crane_1781071621680.png");
}

.fleet-image-6 {
    background-image: url("../images/hero_recovery_1781071634997.png");
}

.fleet-image-7 {
    background-image: url("../images/hero_boom_truck_1781071645547.png");
}

.fleet-image-8 {
    background-image: url("../images/about_visual_1781071658053.png");
}

.fleet-content {
    padding: 22px;
}

.fleet-carousel .carousel-control-prev,
.fleet-carousel .carousel-control-next {
    width: 44px;
    height: 44px;
    top: calc(50% - 22px);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.map-card,
.address-card,
.contact-panel,
.contact-card {
    padding: 28px;
}

.map-frame {
    overflow: hidden;
    border-radius: 22px;
    min-height: 100%;
}

.map-frame iframe {
    width: 100%;
    min-height: 460px;
    display: block;
}

.address-list,
.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.address-list {
    display: grid;
    gap: 12px;
    margin: 18px 0 20px;
}

.address-actions,
.contact-card-actions,
.footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-form .form-control,
.contact-form .form-select {
    min-height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(24, 199, 201, 0.65);
    box-shadow: 0 0 0 0.25rem rgba(24, 199, 201, 0.12);
}

.contact-form .form-select option {
    color: #08121e;
}

.form-label {
    color: #dbe9f6;
    font-weight: 700;
}

.form-feedback {
    margin-top: 16px;
    color: #93fcff;
    font-weight: 700;
}

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

.contact-card.wide {
    grid-column: span 2;
}

.contact-card p a {
    color: #fff;
    font-weight: 700;
}

.contact-card-actions a {
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fefefe;
    font-weight: 700;
}

.site-footer {
    position: relative;
    padding-top: 28px;
}

.footer-cta {
    padding: 0 0 28px;
}

.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 34px;
    border-radius: 32px;
    background:
        linear-gradient(135deg, rgba(247, 166, 27, 0.18), rgba(24, 199, 201, 0.22)),
        rgba(9, 22, 36, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.footer-cta h2 {
    font-size: clamp(2.6rem, 6vw, 4.5rem);
    margin: 0;
}

.footer-main {
    padding: 72px 0 32px;
    background:
        linear-gradient(180deg, rgba(6, 16, 26, 0.98), #03080e),
        radial-gradient(circle at bottom right, rgba(24, 199, 201, 0.08), transparent 40%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-main h4 {
    font-family: "Teko", sans-serif;
    text-transform: uppercase;
    font-size: 2.2rem;
    margin-bottom: 22px;
    color: #fff;
}

.footer-links {
    display: grid;
    gap: 8px;
}

.footer-links a,
.footer-contact a {
    color: #b9cde5;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    padding: 4px 0;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--brand);
    transform: translateX(6px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: #b9cde5;
}

.footer-contact li i {
    color: var(--brand);
    font-size: 1.2rem;
    margin-top: 2px;
}

.footer-bottom {
    margin-top: 48px;
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-note {
    color: #7994b2;
    font-size: 0.95rem;
    margin: 0;
}

.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 1.45rem;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.whatsapp-btn {
    background: linear-gradient(145deg, #1db954, #0f8f43);
}

.call-btn {
    background: linear-gradient(145deg, var(--brand), var(--brand-deep));
}

.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.12s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.28s;
}

@media (max-width: 1199.98px) {
    .hero-slide {
        min-height: auto;
        padding: 100px 0 110px;
    }
}

@media (max-width: 991.98px) {
    .section-pad {
        padding: 80px 0;
    }

    .top-bar-inner,
    .footer-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .custom-navbar {
        border-radius: 24px;
    }

    .hero-copy h1 {
        font-size: clamp(3.7rem, 13vw, 5.6rem);
    }

    .hero-copy h2 {
        font-size: clamp(3rem, 11vw, 4.8rem);
    }

    .hero-panel {
        margin-top: 8px;
    }

    .about-visual {
        min-height: 380px;
    }

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

    .fleet-carousel {
        padding-inline: 0;
    }

    .fleet-carousel .carousel-control-prev,
    .fleet-carousel .carousel-control-next {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .section-pad {
        padding: 68px 0;
    }

    .top-bar-copy,
    .top-bar-contacts,
    .hero-actions,
    .address-actions,
    .footer-cta-actions {
        width: 100%;
    }

    .top-bar-copy span,
    .top-bar-contacts a {
        font-size: 0.88rem;
    }

    .navbar-brand {
        max-width: calc(100% - 58px);
    }

    .brand-mark {
        width: 50px;
        height: 50px;
        border-radius: 16px;
        font-size: 1.75rem;
    }

    .brand-copy strong {
        font-size: 1rem;
    }

    .brand-copy small {
        display: none;
    }

    .hero-slide {
        padding: 84px 0 104px;
    }

    .hero-carousel .carousel-indicators {
        bottom: 20px;
    }

    .hero-panel,
    .map-card,
    .address-card,
    .contact-panel,
    .contact-card {
        padding: 22px;
    }

    .mini-stats,
    .metrics-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-card.wide {
        grid-column: auto;
    }

    .about-visual {
        min-height: 330px;
    }

    .visual-main {
        inset: auto 18px 18px 18px;
    }

    .visual-main h3 {
        font-size: 2.35rem;
    }

    .visual-float {
        top: 18px;
        right: 18px;
        left: 18px;
        max-width: none;
    }

    .map-frame iframe {
        min-height: 350px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .floating-actions {
        right: 14px;
        bottom: 14px;
    }
}

@media (max-width: 575.98px) {
    .section-heading h2 {
        font-size: clamp(2.4rem, 12vw, 3.6rem);
    }

    .hero-copy h1 {
        font-size: clamp(3rem, 16vw, 4.7rem);
    }

    .hero-copy h2,
    .footer-cta h2 {
        font-size: clamp(2.5rem, 13vw, 3.8rem);
    }

    .btn-lg {
        width: 100%;
    }

    .contact-pill {
        flex-direction: column;
        align-items: flex-start;
    }
}
