/* =========================================================
   FOUR LINE LOGISTICS
   ROYAL BLUE + ORANGE PROFESSIONAL DESIGN
========================================================= */


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {
    --blue: #123B7A;
    --blue-dark: #0B2148;
    --blue-deep: #07162F;
    --blue-light: #1D56A3;

    --orange: #F28C28;
    --orange-light: #FFA94D;

    --green: #25D366;

    --white: #FFFFFF;
    --off-white: #F7F9FC;
    --light-bg: #EEF3F8;

    --text: #172B4D;
    --gray: #5B6573;
    --light-gray: #8A94A3;

    --border: #DDE5EE;

    --shadow-sm: 0 5px 18px rgba(18, 59, 122, 0.06);
    --shadow-md: 0 12px 30px rgba(18, 59, 122, 0.10);
    --shadow-lg: 0 18px 40px rgba(18, 59, 122, 0.14);

    --transition: 0.3s ease;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", Arial, sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
    font-family: inherit;
}

button {
    cursor: pointer;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* =========================================================
   GENERAL SECTION
========================================================= */

.section {
    padding: 90px 0;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 9px;

    color: var(--orange);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.8px;

    margin-bottom: 14px;
}

.section-label span:first-child {
    font-size: 10px;
}

.section-label.light {
    color: var(--orange);
}

.section-header {
    max-width: 700px;
    margin-bottom: 45px;
}

.section-header h2 {
    color: var(--blue-dark);

    font-size: 46px;
    line-height: 1.12;

    margin-bottom: 16px;
}

.section-header p {
    color: var(--gray);

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 46px;

    padding: 13px 25px;

    border-radius: 5px;

    font-size: 13px;
    font-weight: 700;

    border: 1px solid transparent;

    transition: var(--transition);

    cursor: pointer;
}

.btn-primary {
    background: var(--orange);

    color: var(--white);

    border-color: var(--orange);
}

.btn-primary:hover {
    background: var(--orange-light);

    border-color: var(--orange-light);

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(242, 140, 40, 0.25);
}

.btn-outline {
    background: transparent;

    color: var(--white);

    border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
    background: var(--white);

    color: var(--blue-dark);

    border-color: var(--white);

    transform: translateY(-2px);
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background: rgba(255, 255, 255, 0.97);

    border-bottom: 1px solid var(--border);

    backdrop-filter: blur(12px);

    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 5px 25px rgba(18, 59, 122, 0.10);
}

.nav-container {
    min-height: 78px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    display: flex;

    flex-direction: column;

    line-height: 0.9;

    min-width: 150px;
}

.logo img {
    width: 180px;

    height: auto;

    display: block;
}

.logo-four {
    color: var(--blue-dark);

    font-size: 19px;

    font-weight: 800;

    letter-spacing: 2px;
}

.logo-line {
    color: var(--orange);

    font-size: 19px;

    font-weight: 800;

    letter-spacing: 2px;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    display: flex;

    align-items: center;

    gap: 25px;
}

.nav-link {
    position: relative;

    color: #344054;

    font-size: 12px;

    font-weight: 600;

    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--orange);
}

.nav-link::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: -7px;

    width: 0;

    height: 2px;

    background: var(--orange);

    transition: var(--transition);
}

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


/* =========================================================
   LANGUAGE BUTTON
========================================================= */

.language-btn {
    background: transparent;

    color: var(--blue-dark);

    border: 1px solid #CDD5DF;

    padding: 7px 11px;

    border-radius: 4px;

    font-size: 11px;

    font-weight: 600;

    cursor: pointer;

    transition: var(--transition);
}

.language-btn:hover {
    color: var(--orange);

    border-color: var(--orange);
}


/* =========================================================
   HEADER CTA
========================================================= */

.header-btn {
    background: var(--orange);

    color: var(--white);

    padding: 11px 18px;

    border-radius: 4px;

    font-size: 12px;

    font-weight: 700;

    transition: var(--transition);
}

.header-btn:hover {
    background: var(--orange-light);

    transform: translateY(-2px);

    box-shadow: 0 7px 18px rgba(242, 140, 40, 0.25);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.menu-toggle {
    display: none;

    width: 40px;
    height: 40px;

    background: transparent;

    border: 1px solid var(--border);

    border-radius: 5px;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 24px;

    height: 2px;

    background: var(--blue-dark);

    margin: 5px auto;

    transition: var(--transition);
}


/* =========================================================
   SCROLLING SERVICE STRIP
========================================================= */

.scroll-strip {
    position: relative;

    z-index: 900;

    width: 100%;

    height: 48px;

    overflow: hidden;

    background: var(--blue-dark);

    border-top: 1px solid rgba(242, 140, 40, 0.30);

    border-bottom: 1px solid rgba(242, 140, 40, 0.30);

    margin-top: 78px;

    white-space: nowrap;
}

.scroll-track {
    display: flex;

    align-items: center;

    width: max-content;

    height: 48px;

    animation: fourLineScroll 28s linear infinite;
}

.scroll-track span {
    display: inline-flex;

    align-items: center;

    margin: 0 18px;

    color: var(--white);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.scroll-track span:nth-child(even) {
    color: var(--orange);

    margin-left: 6px;

    margin-right: 6px;
}

.scroll-strip:hover .scroll-track {
    animation-play-state: paused;
}

@keyframes fourLineScroll {

    from {
        transform: translateX(0);
    }

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

}


/* =========================================================
   HERO SECTION
========================================================= */

.hero {
    position: relative;

    min-height: 720px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(7, 22, 47, 0.92) 0%,
            rgba(11, 33, 72, 0.78) 40%,
            rgba(18, 59, 122, 0.38) 100%
        ),
        url("image/hero-lowbed.jpeg") center center / cover no-repeat;

    overflow: hidden;
}


/* =========================================================
   HERO OVERLAY
========================================================= */

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 78% 50%,
            rgba(242, 140, 40, 0.14),
            transparent 35%
        );

    pointer-events: none;
}


/* =========================================================
   HERO CONTAINER
========================================================= */

.hero-container {
    position: relative;
    z-index: 2;

    padding-top: 70px;
    padding-bottom: 70px;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    max-width: 820px;
}


/* =========================================================
   HERO LABEL
========================================================= */

.hero-content .section-label {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-bottom: 20px;

    color: var(--orange);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
}


/* =========================================================
   HERO HEADING
========================================================= */

.hero-content h1 {
    margin-bottom: 24px;

    color: var(--white);

    font-size: 64px;
    line-height: 1.08;

    letter-spacing: -2px;

    font-weight: 800;
}


/* Orange second line */

.hero-content h1 span {
    display: block;

    color: var(--orange);
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-content p {
    max-width: 680px;

    margin-bottom: 34px;

    color: #e2e8f0;

    font-size: 16px;
    line-height: 1.8;
}

/* =========================================================
   HERO HIGHLIGHT
========================================================= */

.hero-highlight {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 28px;

    padding: 10px 16px;

    background: rgba(255, 255, 255, 0.10);

    border: 1px solid rgba(255, 255, 255, 0.25);

    border-radius: 6px;

    color: var(--white);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 0.3px;
}

.hero-highlight i {
    color: var(--orange);

    font-size: 15px;
}

/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {
    display: flex;
    align-items: center;

    gap: 14px;

    flex-wrap: wrap;
}


/* =========================================================
   COMMON BUTTON
========================================================= */

.hero-buttons .btn {
    min-width: 145px;

    padding: 14px 24px;

    border: 1px solid transparent;
    border-radius: 5px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;

    cursor: pointer;
}


/* =========================================================
   GET A QUOTE BUTTON
========================================================= */

.hero-buttons .btn-primary {
    background: var(--orange);

    border-color: var(--orange);

    color: var(--white);

    box-shadow:
        0 7px 20px rgba(242, 140, 40, 0.25);
}


.hero-buttons .btn-primary:hover {
    background: var(--orange-light);

    border-color: var(--orange-light);

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(242, 140, 40, 0.35);
}


/* =========================================================
   CALL US BUTTON
========================================================= */

.hero-buttons .btn-outline {
    background: var(--blue);

    border-color: var(--blue);

    color: var(--white);

    box-shadow:
        0 7px 20px rgba(18, 59, 122, 0.20);
}


.hero-buttons .btn-outline:hover {
    background: var(--blue-dark);

    border-color: var(--blue-dark);

    color: var(--white);

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(18, 59, 122, 0.30);
}


/* =========================================================
   WHATSAPP BUTTON
========================================================= */

.hero-buttons .btn-whatsapp {
    background: #25D366;

    border-color: #25D366;

    color: #ffffff;

    box-shadow:
        0 7px 20px rgba(37, 211, 102, 0.20);
}


.hero-buttons .btn-whatsapp:hover {
    background: #1EBE5D;

    border-color: #1EBE5D;

    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(37, 211, 102, 0.30);
}


/* =========================================================
   HERO ICONS
========================================================= */

.hero-buttons .btn i {
    font-size: 14px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px) {

    .hero {
        min-height: 650px;
    }

    .hero-content {
        max-width: 700px;
    }

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

        letter-spacing: -1.5px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .hero {
        min-height: 650px;

        background:
            linear-gradient(
                90deg,
                rgba(7, 22, 47, 0.94),
                rgba(7, 22, 47, 0.70)
            ),
            url("image/hero-lowbed.jpeg")
            center center / cover no-repeat;
    }


    .hero-container {
        padding-top: 100px;
        padding-bottom: 70px;
    }


    .hero-content {
        max-width: 100%;

        text-align: left;
    }


    .hero-content h1 {
        font-size: 42px;

        line-height: 1.1;

        letter-spacing: -1px;
    }


    .hero-content p {
        font-size: 14px;

        line-height: 1.75;
    }


    .hero-buttons {
        align-items: stretch;

        flex-direction: column;

        max-width: 260px;

        gap: 12px;
    }


    .hero-buttons .btn {
        width: 100%;

        min-width: 0;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .hero {
        min-height: 680px;
    }


    .hero-container {
        padding-top: 90px;
    }


    .hero-content h1 {
        font-size: 34px;

        line-height: 1.12;
    }


    .hero-content p {
        font-size: 13px;

        line-height: 1.7;
    }


    .hero-content .section-label {
        font-size: 9px;

        letter-spacing: 1.5px;
    }


    .hero-buttons {
        max-width: 100%;
    }
}


/* =========================================================
   FEATURE BAR
========================================================= */

.feature-bar {
    background: var(--blue-dark);

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);
}

.feature-item {
    display: flex;

    align-items: center;

    gap: 13px;

    padding: 25px 18px;

    border-right: 1px solid rgba(255, 255, 255, 0.10);
}

.feature-item:last-child {
    border-right: none;
}

.feature-icon {
    width: 42px;

    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--orange);

    background: rgba(242, 140, 40, 0.10);

    border: 1px solid rgba(242, 140, 40, 0.25);

    border-radius: 7px;
}

.feature-item strong {
    display: block;

    color: var(--white);

    font-size: 12px;

    margin-bottom: 2px;
}

.feature-item span {
    color: #AEBBCC;

    font-size: 10px;
}


/* =========================================================
   IMAGE SCROLLER
========================================================= */

.scroller-container {
    width: 100%;

    overflow: hidden;

    padding: 30px 0;

    background: var(--white);
}

.scroller-track {
    display: flex;

    gap: 20px;

    width: max-content;

    animation: imageScroll 25s linear infinite;
}

.scroller-track img {
    width: 300px;

    height: 180px;

    object-fit: cover;

    flex-shrink: 0;

    border-radius: 8px;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.scroller-track:hover {
    animation-play-state: paused;
}

@keyframes imageScroll {

    from {
        transform: translateX(0);
    }

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

}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    height: 470px;

    object-fit: cover;

    border-radius: 10px;

    filter: brightness(0.94);
}

.about-image::after {
    content: "";

    position: absolute;

    left: 15px;

    top: 15px;

    width: 100%;

    height: 100%;

    border: 1px solid rgba(242, 140, 40, 0.55);

    border-radius: 10px;

    z-index: -1;
}

.about-badge {
    position: absolute;

    left: 25px;

    bottom: 25px;

    padding: 17px 22px;

    background: var(--orange);

    color: var(--white);

    border-radius: 7px;

    box-shadow: var(--shadow-md);
}

.about-badge strong {
    display: block;

    font-size: 22px;

    line-height: 1;
}

.about-badge span {
    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}

.about-content h2 {
    color: var(--blue-dark);

    font-size: 46px;

    line-height: 1.12;

    margin-bottom: 20px;
}

.about-content p {
    color: var(--gray);

    font-size: 15px;

    line-height: 1.85;

    margin-bottom: 16px;
}

.text-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 12px;

    color: var(--orange);

    font-size: 13px;

    font-weight: 700;

    transition: var(--transition);
}

.text-link:hover {
    color: var(--blue);

    transform: translateX(3px);
}

/* =========================================================
   SERVICES
========================================================= */

.services-section {
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.service-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: 10px;

    box-shadow: var(--shadow-sm);

    transition: all 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);

    border-color: rgba(242, 140, 40, 0.55);

    box-shadow: var(--shadow-lg);
}


/* =========================================================
   SERVICE IMAGE
========================================================= */

.service-image {
    width: 100%;
    height: 205px;

    overflow: hidden;
    flex-shrink: 0;
}

.service-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}

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


/* =========================================================
   SERVICE CONTENT
========================================================= */

.service-content {
    display: flex;
    flex-direction: column;

    flex: 1;

    padding: 25px;
}


/* =========================================================
   SERVICE NUMBER
========================================================= */

.service-number {
    display: block;

    margin-bottom: 10px;

    color: var(--orange);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;
}


/* =========================================================
   SERVICE ICON
========================================================= */

.service-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 17px;

    color: var(--white);
    background: var(--orange);

    border-radius: 7px;

    font-size: 17px;
}


/* =========================================================
   SERVICE TITLE
========================================================= */

.service-content h3 {
    color: var(--blue-dark);

    font-size: 19px;
    line-height: 1.3;

    margin-bottom: 10px;
}


/* =========================================================
   SERVICE DESCRIPTION
========================================================= */

.service-content p {
    color: var(--gray);

    font-size: 13px;
    line-height: 1.75;

    margin-bottom: 18px;
}


/* =========================================================
   SERVICE ACTION BUTTONS
========================================================= */

.service-actions {
    display: flex;

    gap: 10px;

    margin-top: auto;
    padding-top: 5px;
}

.service-actions a {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    min-height: 42px;

    padding: 10px 12px;

    border-radius: 5px;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}


/* =========================================================
   WHATSAPP BUTTON
========================================================= */

.service-whatsapp {
    background-color: #25D366 !important;

    color: #FFFFFF !important;

    border: 1px solid #25D366 !important;
}

.service-whatsapp:hover {
    background-color: #1EBE5D !important;

    color: #FFFFFF !important;

    border-color: #1EBE5D !important;

    transform: translateY(-2px);

    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.20);
}


/* =========================================================
   GET A QUOTE BUTTON
========================================================= */

.service-quote {
    background-color: #123B7A !important;

    color: #FFFFFF !important;

    border: 1px solid #123B7A !important;
}

.service-quote:hover {
    background-color: #F28C28 !important;

    color: #FFFFFF !important;

    border-color: #F28C28 !important;

    transform: translateY(-2px);

    box-shadow: 0 6px 15px rgba(242, 140, 40, 0.20);
}


/* =========================================================
   BUTTON ICONS
========================================================= */

.service-actions i {
    font-size: 13px;
    flex-shrink: 0;
}


/* =========================================================
   SERVICES BOTTOM BUTTON
========================================================= */

.services-button {
    display: flex;

    align-items: center;
    justify-content: center;

    margin-top: 45px;
}

.services-button .btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 14px 28px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-image {
        height: 210px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

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

    .service-image {
        height: 220px;
    }

    .service-content {
        padding: 22px;
    }

    .service-content h3 {
        font-size: 18px;
    }

    .service-content p {
        font-size: 13px;
        line-height: 1.7;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .service-image {
        height: 200px;
    }

    .service-content {
        padding: 20px;
    }

    .service-icon {
        width: 42px;
        height: 42px;

        margin-bottom: 15px;
    }

    .service-content h3 {
        font-size: 17px;
    }

    .service-content p {
        font-size: 12.5px;
    }

    .service-actions {
        flex-direction: column;
        gap: 8px;
    }

    .service-actions a {
        width: 100%;
        min-height: 43px;
    }
}


/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .service-content {
        padding: 18px;
    }

    .service-content h3 {
        font-size: 16px;
    }

    .service-content p {
        font-size: 12px;
    }

    .service-number {
        font-size: 10px;
    }
}

/* =========================================================
   COVERAGE
========================================================= */

.coverage-section {
    background: var(--white);

    padding: 100px 0;
}

.coverage-heading {
    max-width: 850px;

    margin: 0 auto 55px;

    text-align: center;
}

.coverage-tag {
    display: inline-block;

    color: var(--orange);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 14px;
}

.coverage-heading h2 {
    color: var(--blue-dark);

    font-size: 44px;

    line-height: 1.2;

    margin-bottom: 18px;
}

.coverage-heading h2 span {
    color: var(--blue);
}

.coverage-line {
    width: 55px;

    height: 3px;

    margin: 0 auto 24px;

    background: var(--orange);

    border-radius: 20px;
}

.coverage-heading p {
    max-width: 780px;

    margin: 0 auto;

    color: var(--gray);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   COVERAGE CARDS
========================================================= */

.coverage-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.coverage-card {
    position: relative;

    overflow: hidden;

    padding: 25px 15px;

    text-align: center;

    background: var(--off-white);

    border: 1px solid var(--border);

    border-radius: 10px;

    transition: var(--transition);
}

.coverage-card::before {
    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 0;

    height: 3px;

    background: var(--orange);

    transition: var(--transition);
}

.coverage-card i {
    display: block;

    color: var(--orange);

    font-size: 20px;

    margin-bottom: 10px;

    transition: var(--transition);
}

.coverage-card h3 {
    color: var(--blue-dark);

    font-size: 15px;

    font-weight: 600;
}

.coverage-card:hover {
    transform: translateY(-6px);

    background: var(--white);

    border-color: var(--blue);

    box-shadow: var(--shadow-md);
}

.coverage-card:hover::before {
    width: 100%;
}

.coverage-card:hover i {
    color: var(--blue);
}


/* =========================================================
   STATS
========================================================= */

.stats-section {
    background: var(--orange);

    color: var(--white);
}

.stats-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    text-align: center;

    padding: 38px 15px;

    border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item strong {
    display: block;

    font-size: 38px;

    line-height: 1;

    margin-bottom: 8px;
}

.stat-item span {
    font-size: 11px;

    font-weight: 700;
}


/* =========================================================
   INDUSTRIES
========================================================= */

.industries-section {
    background: var(--white);
}

.industries-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.industry-card {
    padding: 28px;

    background: var(--off-white);

    border: 1px solid var(--border);

    border-radius: 10px;

    transition: var(--transition);
}

.industry-card:hover {
    transform: translateY(-5px);

    background: var(--white);

    border-color: rgba(242, 140, 40, 0.55);

    box-shadow: var(--shadow-md);
}

.industry-card i {
    display: block;

    color: var(--orange);

    font-size: 24px;

    margin-bottom: 16px;
}

.industry-card h3 {
    color: var(--blue-dark);

    font-size: 17px;

    margin-bottom: 8px;
}

.industry-card p {
    color: var(--gray);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-section {
    background: var(--off-white);
}

.why-grid {
    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 70px;

    align-items: start;
}

.why-content h2 {
    color: var(--blue-dark);

    font-size: 46px;

    line-height: 1.12;

    margin-bottom: 18px;
}

.why-content p {
    color: var(--gray);

    font-size: 15px;

    line-height: 1.85;
}

.why-list {
    display: grid;

    gap: 13px;
}

.why-item {
    display: flex;

    gap: 17px;

    padding: 21px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 9px;

    transition: var(--transition);
}

.why-item:hover {
    transform: translateX(4px);

    border-color: rgba(242, 140, 40, 0.45);

    box-shadow: var(--shadow-sm);
}

.why-item > i {
    width: 35px;

    flex-shrink: 0;

    padding-top: 3px;

    color: var(--orange);

    font-size: 20px;
}

.why-item h3 {
    color: var(--blue-dark);

    font-size: 15px;

    margin-bottom: 5px;
}

.why-item p {
    color: var(--gray);

    font-size: 12px;

    line-height: 1.65;
}


/* =========================================================
   PROCESS
========================================================= */

.process-section {
    background: var(--blue-dark);
}

.process-section .section-header h2 {
    color: var(--white);
}

.process-section .section-header p {
    color: #B8C5D5;
}

.process-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.process-card {
    position: relative;

    overflow: hidden;

    padding: 30px;

    background: rgba(29, 86, 163, 0.45);

    border: 1px solid rgba(255, 255, 255, 0.10);

    border-radius: 10px;

    transition: var(--transition);
}

.process-card:hover {
    transform: translateY(-6px);

    border-color: rgba(242, 140, 40, 0.60);

    background: rgba(29, 86, 163, 0.65);
}

.process-number {
    position: absolute;

    top: 10px;

    right: 18px;

    color: rgba(242, 140, 40, 0.13);

    font-size: 45px;

    font-weight: 800;
}

.process-card > i {
    display: block;

    color: var(--orange);

    font-size: 24px;

    margin-bottom: 18px;
}

.process-card h3 {
    color: var(--white);

    font-size: 17px;

    margin-bottom: 8px;
}

.process-card p {
    color: #B8C5D5;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    padding: 70px 0;

    background:
        linear-gradient(
            100deg,
            var(--blue-dark),
            var(--blue)
        );

    border-top: 1px solid rgba(242, 140, 40, 0.25);

    border-bottom: 1px solid rgba(242, 140, 40, 0.25);
}

.cta-content {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}

.cta-content h2 {
    color: var(--white);

    font-size: 42px;

    line-height: 1.12;

    margin-bottom: 10px;
}

.cta-content p {
    max-width: 620px;

    color: #B8C5D5;

    font-size: 13px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    background: var(--light-bg);
}

.contact-content {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 60px;

    align-items: center;
}

.contact-info {
    max-width: 460px;
}

.contact-info h2 {
    color: var(--blue-dark);

    font-size: 42px;

    line-height: 1.15;

    margin-bottom: 18px;
}

.contact-info > p {
    color: var(--gray);

    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 28px;
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.contact-detail {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 17px;
}

.contact-detail-icon {
    width: 42px;

    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--orange);

    background: rgba(242, 140, 40, 0.10);

    border: 1px solid rgba(242, 140, 40, 0.25);

    border-radius: 7px;
}

.contact-detail span {
    display: block;

    color: var(--light-gray);

    font-size: 10px;

    margin-bottom: 2px;
}

.contact-detail a,
.contact-detail strong {
    display: block;

    color: var(--blue-dark);

    font-size: 13px;

    font-weight: 600;
}

.contact-detail a:hover {
    color: var(--orange);
}


/* =========================================================
   WHATSAPP CONTACT
========================================================= */

.whatsapp-contact {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 12px;

    padding: 11px 18px;

    color: #159447;

    border: 1px solid rgba(37, 211, 102, 0.35);

    border-radius: 6px;

    font-size: 12px;

    font-weight: 700;

    transition: var(--transition);
}

.whatsapp-contact:hover {
    background: rgba(37, 211, 102, 0.08);

    transform: translateY(-2px);
}


/* =========================================================
   QUOTE FORM
========================================================= */

.quote-form {
    width: 100%;

    padding: 32px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 12px;

    box-shadow: var(--shadow-md);
}

.quote-form h3 {
    color: var(--blue-dark);

    font-size: 24px;

    margin-bottom: 5px;
}

.form-intro {
    color: var(--gray);

    font-size: 12px;

    margin-bottom: 23px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;

    color: #344054;

    font-size: 12px;

    font-weight: 600;

    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 12px 13px;

    color: var(--blue-dark);

    background: var(--white);

    border: 1px solid #CDD5DF;

    border-radius: 6px;

    font-size: 12px;

    outline: none;

    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #98A2B3;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);

    box-shadow: 0 0 0 3px rgba(242, 140, 40, 0.08);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    min-height: 100px;

    resize: vertical;
}

.quote-form .btn {
    width: 100%;

    border: none;

    margin-top: 4px;
}


/* =========================================================
   FAQ
========================================================= */

.faq-section {
    background: var(--white);
}

.faq-container {
    max-width: 850px;
}

.faq-item {
    overflow: hidden;

    margin-bottom: 10px;

    background: var(--off-white);

    border: 1px solid var(--border);

    border-radius: 7px;
}

.faq-item summary {
    position: relative;

    padding: 18px 45px 18px 20px;

    list-style: none;

    cursor: pointer;

    color: var(--blue-dark);

    font-size: 13px;

    font-weight: 600;
}

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

.faq-item summary::after {
    content: "+";

    position: absolute;

    top: 13px;

    right: 20px;

    color: var(--orange);

    font-size: 21px;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    padding: 0 20px 18px;

    color: var(--gray);

    font-size: 12px;

    line-height: 1.75;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: var(--blue-dark);

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;

    gap: 50px;

    padding: 70px 0 55px;
}

.footer-company {
    max-width: 310px;
}

.footer-logo {
    margin-bottom: 18px;
}

.footer-company > p {
    color: #9AA9BC;

    font-size: 12px;

    line-height: 1.8;
}

.footer-social {
    display: flex;

    gap: 9px;

    margin-top: 20px;
}

.footer-social a {
    width: 35px;

    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #AEBBCC;

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 5px;

    font-size: 13px;

    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--orange);

    border-color: var(--orange);

    transform: translateY(-2px);
}

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-column h3 {
    color: var(--white);

    font-size: 13px;

    margin-bottom: 7px;
}

.footer-column a,
.footer-column span {
    color: #9AA9BC;

    font-size: 11px;

    transition: var(--transition);
}

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

.footer-contact a,
.footer-contact span {
    display: flex;

    align-items: flex-start;

    gap: 8px;
}

.footer-contact i {
    width: 13px;

    margin-top: 3px;

    color: var(--orange);
}


/* =========================================================
   VISION 2030
========================================================= */

.vision2030-logo {
    margin-top: 25px;
}

.vision2030-logo img {
    width: 130px;

    height: auto;

    display: block;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom .container {
    padding: 18px 0;
}

.footer-bottom p {
    color: #68798D;

    text-align: center;

    font-size: 10px;
}


/* =========================================================
   FLOATING WHATSAPP
========================================================= */

.floating-whatsapp {
    position: fixed;

    right: 22px;

    bottom: 22px;

    width: 54px;

    height: 54px;

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 999;

    color: var(--white);

    background: var(--green);

    border-radius: 50%;

    font-size: 25px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.20);

    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.08);

    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.30);
}


/* =========================================================
   FLOATING CALL
========================================================= */

.floating-call {
    position: fixed;

    right: 22px;

    bottom: 88px;

    width: 54px;

    height: 54px;

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 999;

    color: var(--white);

    background: var(--blue);

    border-radius: 50%;

    font-size: 22px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.20);

    transition: var(--transition);
}

.floating-call:hover {
    background: var(--orange);

    transform: scale(1.08);
}


/* =========================================================
   THANK YOU PAGE
========================================================= */

.thank-you-page {
    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 30px;

    background: var(--off-white);
}

.thank-you-box {
    width: 100%;

    max-width: 550px;

    padding: 60px 40px;

    text-align: center;

    background: var(--white);

    border-radius: 20px;

    box-shadow: var(--shadow-lg);
}

.thank-you-icon {
    width: 80px;

    height: 80px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 25px;

    color: var(--white);

    background: var(--blue);

    border-radius: 50%;

    font-size: 35px;
}

.thank-you-box h1 {
    color: var(--blue-dark);

    font-size: 42px;

    margin-bottom: 15px;
}

.thank-you-box p {
    color: var(--gray);

    font-size: 17px;

    line-height: 1.7;

    margin-bottom: 10px;
}

.thank-you-btn {
    display: inline-block;

    margin-top: 25px;

    padding: 14px 28px;

    color: var(--white);

    background: var(--orange);

    border-radius: 7px;

    font-weight: 600;

    transition: var(--transition);
}

.thank-you-btn:hover {
    background: var(--orange-light);

    transform: translateY(-2px);
}


/* =========================================================
   RTL / ARABIC
========================================================= */

html[dir="rtl"] {
    direction: rtl;
}

html[dir="rtl"] .nav-link::after {
    left: auto;

    right: 0;
}

html[dir="rtl"] .feature-item {
    border-right: none;

    border-left: 1px solid rgba(255, 255, 255, 0.10);
}

html[dir="rtl"] .feature-item:last-child {
    border-left: none;
}

html[dir="rtl"] .about-image::after {
    left: auto;

    right: 15px;
}

html[dir="rtl"] .about-badge {
    left: auto;

    right: 25px;
}

html[dir="rtl"] .process-number {
    right: auto;

    left: 18px;
}

html[dir="rtl"] .faq-item summary {
    padding: 18px 20px 18px 45px;
}

html[dir="rtl"] .faq-item summary::after {
    right: auto;

    left: 20px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .navbar {
        gap: 16px;
    }

    .nav-link {
        font-size: 11px;
    }

    .header-btn {
        display: none;
    }

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .coverage-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .container {
        width: 92%;
    }

    .section {
        padding: 65px 0;
    }

    .section-header {
        margin-bottom: 38px;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .section-header p {
        font-size: 14px;
    }


    /* HEADER */

    .nav-container {
        min-height: 68px;
    }

    .logo img {
        width: 145px;
    }

    .navbar {
        position: absolute;

        top: 68px;

        left: 0;

        width: 100%;

        display: none;

        flex-direction: column;

        align-items: flex-start;

        gap: 18px;

        padding: 24px 5%;

        background: var(--white);

        border-bottom: 1px solid var(--border);

        box-shadow: 0 12px 30px rgba(18, 59, 122, 0.10);
    }

    .navbar.active {
        display: flex;
    }

    .nav-link {
        font-size: 13px;
    }

    .language-btn {
        margin-top: 5px;
    }

    .menu-toggle {
        display: block;
    }


    /* SCROLL STRIP */

    .scroll-strip {
        height: 44px;

        margin-top: 68px;
    }

    .scroll-track {
        height: 44px;

        animation-duration: 22s;
    }

    .scroll-track span {
        margin: 0 12px;

        font-size: 9px;

        letter-spacing: 0.8px;
    }

    .scroll-track span:nth-child(even) {
        margin-left: 4px;

        margin-right: 4px;

        font-size: 9px;
    }


    /* HERO */

    .hero {
        min-height: 620px;
    }

    .hero-container {
        padding-top: 45px;
    }

    .hero-content h1 {
        font-size: 38px;

        letter-spacing: -1px;
    }

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

    .hero-buttons {
        gap: 10px;
    }

    .hero-buttons .btn {
        min-width: 145px;

        padding: 13px 20px;
    }


    /* FEATURE */

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .feature-item:nth-child(2) {
        border-right: none;
    }


    /* IMAGE SCROLLER */

    .scroller-container {
        padding: 20px 0;
    }

    .scroller-track {
        gap: 14px;

        animation-duration: 22s;
    }

    .scroller-track img {
        width: 230px;

        height: 140px;
    }


    /* ABOUT */

    .about-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .about-image img {
        height: 380px;
    }

    .about-content h2 {
        font-size: 30px;
    }

    .about-content p {
        font-size: 14px;
    }


    /* SERVICES */

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


    /* COVERAGE */

    .coverage-section {
        padding: 70px 0;
    }

    .coverage-heading h2 {
        font-size: 30px;
    }

    .coverage-heading p {
        font-size: 14px;
    }

    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 12px;
    }


    /* STATS */

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.25);
    }


    /* INDUSTRIES */

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


    /* WHY */

    .why-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .why-content h2 {
        font-size: 30px;
    }

    .why-content p {
        font-size: 14px;
    }


    /* PROCESS */

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


    /* CTA */

    .cta-content {
        flex-direction: column;

        align-items: flex-start;
    }

    .cta-content h2 {
        font-size: 32px;
    }


    /* CONTACT */

    .contact-content {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .contact-info {
        max-width: 100%;
    }

    .contact-info h2 {
        font-size: 32px;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr 1fr;

        gap: 35px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .container {
        width: 90%;
    }

    .section {
        padding: 55px 0;
    }


    /* HERO */

    .hero {
        min-height: 590px;
    }

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

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }


    /* FEATURE */

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

    .feature-item {
        border-right: none;

        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .feature-item:last-child {
        border-bottom: none;
    }


    /* IMAGE SCROLLER */

    .scroller-track img {
        width: 180px;

        height: 115px;
    }


    /* ABOUT */

    .about-image img {
        height: 300px;
    }


    /* SERVICE */

    .service-image {
        height: 190px;
    }

    .service-content {
        padding: 21px;
    }

    .service-actions {
        flex-direction: column;
    }

    .service-actions a {
        width: 100%;
    }


    /* COVERAGE */

    .coverage-heading h2 {
        font-size: 28px;
    }

   .coverage-grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 12px;
}


    /* STATS */

    .stat-item strong {
        font-size: 30px;
    }


    /* CTA */

    .cta-content h2 {
        font-size: 28px;
    }


    /* FORM */

    .quote-form {
        padding: 23px 18px;
    }


    /* FOOTER */

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


    /* FLOATING BUTTONS */

    .floating-whatsapp {
        width: 48px;

        height: 48px;

        right: 15px;

        bottom: 15px;

        font-size: 22px;
    }

    .floating-call {
        width: 48px;

        height: 48px;

        right: 15px;

        bottom: 73px;

        font-size: 20px;
    }


    /* THANK YOU */

    .thank-you-box {
        padding: 45px 25px;
    }

    .thank-you-box h1 {
        font-size: 34px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }
}


/* =========================================================
   LANGUAGE SELECTION POPUP
========================================================= */

.language-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(7, 22, 47, 0.80);
}

.language-popup-box {
    width: 100%;
    max-width: 430px;

    padding: 40px 30px;

    text-align: center;

    background: var(--white);

    border-radius: 16px;

    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.30);

    animation: languagePopupOpen 0.4s ease;
}

.language-popup-icon {
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    background: var(--blue);
    color: var(--white);

    border-radius: 50%;

    font-size: 28px;
}

.language-popup-box h2 {
    margin-bottom: 10px;

    color: var(--blue-dark);

    font-size: 24px;
}

.language-popup-box p {
    margin-bottom: 25px;

    color: var(--gray);

    font-size: 14px;
}

.language-options {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.language-choice {
    flex: 1;

    padding: 13px 20px;

    border: 1px solid var(--orange);
    border-radius: 6px;

    background: var(--orange);
    color: var(--white);

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition: var(--transition);
}

.language-choice:hover {
    background: var(--blue);
    border-color: var(--blue);

    transform: translateY(-2px);
}

@keyframes languagePopupOpen {

    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}

@media (max-width: 480px) {

    .language-popup-box {
        padding: 35px 20px;
    }

    .language-popup-box h2 {
        font-size: 21px;
    }

    .language-options {
        flex-direction: column;
    }

    .language-choice {
        width: 100%;
    }

}


/* =========================================================
   OUR WORKS SECTION
========================================================= */

.works-section {
    background: var(--white);
}


.works-section .section-header {
    max-width: 800px;
    margin: 0 auto 55px;
    text-align: center;
}


/* WORKS GRID */

.works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}


/* WORK CARD */

.work-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);

    transition: all 0.3s ease;
}


.work-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}


/* WORK IMAGE */

.work-image {
    position: relative;
    height: 230px;
    overflow: hidden;
}


.work-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.5s ease;
}


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


/* IMAGE OVERLAY */

.work-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: flex-end;

    padding: 20px;

    background: linear-gradient(
        to top,
        rgba(7, 22, 47, 0.80),
        transparent 55%
    );

    opacity: 0;

    transition: opacity 0.3s ease;
}


.work-card:hover .work-overlay {
    opacity: 1;
}


.work-overlay span {
    color: var(--white);

    font-size: 14px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* WORK CONTENT */

.work-content {
    padding: 25px;
}


.work-content h3 {
    margin-bottom: 12px;

    color: var(--blue-dark);

    font-size: 19px;

    line-height: 1.4;
}


.work-content p {
    margin: 0;

    color: var(--gray);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px) {

    .works-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .works-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }


    .work-image {
        height: 220px;
    }


    .work-content {
        padding: 22px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .work-image {
        height: 200px;
    }


    .work-content h3 {
        font-size: 17px;
    }


    .work-content p {
        font-size: 13px;
    }

}

/* SERVICE BUTTONS */

.service-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.service-btn {
    flex: 1;
    padding: 12px;
    text-align: center;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

/* WhatsApp - GREEN */
.whatsapp-btn {
    background: #25D366 !important;
    color: white !important;
}

/* Get a Quote - BLUE */
.quote-btn {
    background: #123B7A !important;
    color: white !important;
}

/* Hover */
.whatsapp-btn:hover {
    background: #1EBE5D !important;
}

.quote-btn:hover {
    background: #F28C28 !important;
}

/* Mobile */
@media (max-width: 480px) {
    .service-buttons {
        flex-direction: column;
    }
}

/* =========================================================
   THANK YOU WHATSAPP BUTTON
========================================================= */

.thank-you-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    margin-top: 12px;
    padding: 13px 24px;

    background: #25D366;
    color: #ffffff;

    border-radius: 5px;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}

.thank-you-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

.thank-you-whatsapp i {
    font-size: 17px;
}