/* =========================================================
   HIYA PACKERS & MOVERS
   PROFESSIONAL BRAND STYLE
   COLOR: WHITE + BLUE + ORANGE
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');


/* =========================================================
   ROOT
========================================================= */

:root {

    --blue: #0756b8;
    --blue-dark: #063b82;
    --blue-deep: #052d63;
    --blue-light: #edf6ff;

    --orange: #ff8a00;
    --orange-dark: #e87500;
    --orange-light: #fff4e5;

    --green: #19c463;
    --green-dark: #0d9f4b;

    --white: #ffffff;
    --black: #101828;

    --text: #526173;
    --muted: #7d8998;

    --background: #f7faff;
    --border: #e4ebf4;

    --shadow-small:
        0 5px 18px rgba(6, 59, 130, 0.07);

    --shadow:
        0 12px 35px rgba(6, 59, 130, 0.11);

    --shadow-large:
        0 25px 60px rgba(6, 59, 130, 0.16);

    --radius: 16px;
    --radius-large: 24px;

    --container: 1200px;

    --font-body: "DM Sans", sans-serif;
    --font-heading: "Plus Jakarta Sans", sans-serif;

    --transition: all 0.3s ease;
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;

    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;

    color: var(--text);
    background: var(--white);

    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

p {
    margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;

    font-family: var(--font-heading);
    color: var(--black);

    line-height: 1.25;
    font-weight: 800;
}

::selection {
    color: var(--white);
    background: var(--blue);
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(100% - 40px, var(--container));
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   SECTION
========================================================= */

.section {
    padding: 95px 0;
}

.section-heading {
    max-width: 750px;

    margin: 0 auto 55px;

    text-align: center;
}

.section-heading.left {
    margin-left: 0;
    text-align: left;
}

.section-heading h2 {
    margin-bottom: 16px;
    font-size: clamp(30px, 4vw, 44px);
}

.section-heading p {
    margin-bottom: 0;

    color: var(--text);
    font-size: 15px;
}

.section-heading.left p {
    margin-left: 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 13px;

    color: var(--orange);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";

    width: 28px;
    height: 3px;

    background: var(--orange);

    border-radius: 50px;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 48px;

    padding: 13px 22px;

    border: 0;
    border-radius: 9px;

    font-size: 13px;
    font-weight: 800;

    overflow: hidden;

    transition: var(--transition);
}

.btn i {
    font-size: 15px;
}


/* BLUE BUTTON */

.btn-primary,
.btn-call {

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--blue-dark)
        );

    box-shadow:
        0 8px 20px rgba(7, 86, 184, 0.22);
}

.btn-primary:hover,
.btn-call:hover {

    color: var(--white);

    transform: translateY(-3px);

    box-shadow:
        0 13px 28px rgba(7, 86, 184, 0.30);
}


/* ORANGE BUTTON */

.btn-secondary {

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--orange),
            var(--orange-dark)
        );

    box-shadow:
        0 8px 20px rgba(255, 138, 0, 0.20);
}

.btn-secondary:hover {

    color: var(--white);

    transform: translateY(-3px);

    box-shadow:
        0 13px 28px rgba(255, 138, 0, 0.30);
}


/* WHITE BUTTON */

.btn-white {

    color: var(--blue);

    background: var(--white);

    box-shadow: var(--shadow-small);
}

.btn-white:hover {

    color: var(--blue-dark);

    transform: translateY(-3px);
}


/* WHATSAPP */

.btn-whatsapp {

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            #20d467,
            #0fa34b
        );

    box-shadow:
        0 8px 20px rgba(25, 196, 99, 0.22);

    animation:
        whatsappPulse 2.1s infinite;
}

.btn-whatsapp:hover {

    color: var(--white);

    transform: translateY(-3px);

    box-shadow:
        0 13px 28px rgba(25, 196, 99, 0.34);
}


/* =========================================================
   CALL BUTTON BLINK
========================================================= */

.btn-call {

    animation:
        callPulse 2.5s infinite;
}


@keyframes callPulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(7, 86, 184, 0.40);
    }

    50% {
        box-shadow:
            0 0 0 7px rgba(7, 86, 184, 0.07);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(7, 86, 184, 0);
    }

}


@keyframes whatsappPulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(25, 196, 99, 0.40);
    }

    50% {
        box-shadow:
            0 0 0 7px rgba(25, 196, 99, 0.07);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(25, 196, 99, 0);
    }

}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {

    min-height: 38px;

    padding: 8px 0;

    color: var(--white);

    background:
        linear-gradient(
            90deg,
            var(--blue-deep),
            var(--blue-dark)
        );

    font-size: 12px;
}

.top-bar-content {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.top-bar-left,
.top-bar-right {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 18px;
}

.top-bar i {

    margin-right: 5px;

    color: var(--orange);
}

.top-bar a {

    color: rgba(255,255,255,.88);
}

.top-bar a:hover {

    color: var(--orange);
}


/* =========================================================
   HEADER
   FIXED / STICKY PROFESSIONAL NAVBAR
========================================================= */

.site-header,
header {

    position: sticky;

    top: 0;

    z-index: 9999;

    width: 100%;

    background: rgba(255,255,255,.98);

    border-bottom: 1px solid var(--border);

    box-shadow:
        0 4px 18px rgba(0,0,0,.05);

    backdrop-filter: blur(12px);
}


/* HEADER INNER */

.header-inner {

    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;
}


/* =========================================================
   HIYA PACKERS TEXT LOGO
========================================================= */

.logo,
.site-logo {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}


/* H LOGO */

.logo-h {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 48px;
    height: 58px;

    color: var(--blue);

    font-family:
        var(--font-heading);

    font-size: 48px;

    font-weight: 800;

    line-height: 1;

    letter-spacing: -5px;
}


/* ORANGE DOT */

.logo-h::after {

    content: "";

    position: absolute;

    right: -4px;

    top: 5px;

    width: 9px;

    height: 9px;

    background: var(--orange);

    border-radius: 50%;
}


/* BRAND NAME */

.logo-text {

    display: flex;

    flex-direction: column;

    line-height: 1;
}

.logo-text strong {

    color: var(--blue);

    font-family:
        var(--font-heading);

    font-size: 22px;

    font-weight: 800;

    letter-spacing: -0.5px;
}

.logo-text strong span {

    color: var(--orange);
}

.logo-text small,
.logo-text span {

    margin-top: 6px;

    color: var(--text);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.7px;

    text-transform: uppercase;
}


/* IF IMAGE LOGO EXISTS */

.logo img,
.site-logo img {

    width: 58px;

    height: 58px;

    object-fit: contain;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 27px;
}

.navbar a {

    position: relative;

    display: flex;

    align-items: center;

    min-height: 82px;

    color: var(--black);

    font-size: 13px;

    font-weight: 700;
}

.navbar a::after {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    height: 3px;

    background: var(--orange);

    border-radius:
        10px 10px 0 0;

    transform:
        scaleX(0);

    transition: var(--transition);
}

.navbar a:hover,
.navbar a.active {

    color: var(--blue);
}

.navbar a:hover::after,
.navbar a.active::after {

    transform: scaleX(1);
}


/* HEADER ACTION */

.header-actions {

    display: flex;

    align-items: center;

    gap: 10px;
}

.header-actions .btn {

    min-height: 43px;

    padding:
        10px 15px;

    font-size: 12px;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-btn {

    display: none;

    width: 45px;

    height: 45px;

    border: 0;

    border-radius: 9px;

    color: var(--blue);

    background: var(--blue-light);

    font-size: 20px;
}

.menu-btn:hover {

    color: var(--white);

    background: var(--blue);
}


/* =========================================================
   HERO
========================================================= */

.hero {

    position: relative;

    min-height: 650px;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding: 90px 0;

    background:

        linear-gradient(
            90deg,
            rgba(5,45,99,.97),
            rgba(7,86,184,.83)
        ),

        url("images/hero-bg.jpg")
        center/cover no-repeat;
}


/* ORANGE DECORATION */

.hero::before {

    content: "";

    position: absolute;

    right: -150px;

    bottom: -180px;

    width: 500px;

    height: 500px;

    border:
        70px solid
        rgba(255,138,0,.13);

    border-radius: 50%;
}


/* HERO GRID */

.hero-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1.05fr .95fr;

    align-items: center;

    gap: 65px;
}

.hero-content {

    max-width: 670px;
}

.hero .eyebrow {

    color: var(--orange);
}

.hero h1 {

    margin-bottom: 22px;

    color: var(--white);

    font-size:
        clamp(38px,5vw,64px);

    letter-spacing: -1.5px;
}

.hero h1 span {

    color: var(--orange);
}

.hero p {

    max-width: 570px;

    margin-bottom: 28px;

    color:
        rgba(255,255,255,.82);

    font-size: 17px;
}

.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}

.hero-points {

    display: flex;

    flex-wrap: wrap;

    gap: 17px;

    margin-top: 27px;
}

.hero-points span {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color:
        rgba(255,255,255,.88);

    font-size: 12px;

    font-weight: 700;
}

.hero-points i {

    color: var(--orange);
}


/* HERO IMAGE */

.hero-image {

    position: relative;
}

.hero-image img {

    width: 100%;

    max-height: 470px;

    object-fit: cover;

    border:
        7px solid
        rgba(255,255,255,.15);

    border-radius: 25px;

    box-shadow:
        0 25px 60px
        rgba(0,0,0,.25);
}


/* HERO BADGE */

.hero-badge {

    position: absolute;

    right: -25px;

    bottom: 30px;

    display: flex;

    align-items: center;

    gap: 12px;

    max-width: 225px;

    padding: 17px;

    background: var(--white);

    border-radius: 13px;

    box-shadow: var(--shadow-large);
}

.hero-badge i {

    display: grid;

    width: 43px;

    height: 43px;

    place-items: center;

    flex-shrink: 0;

    color: var(--white);

    background: var(--orange);

    border-radius: 50%;
}

.hero-badge strong {

    display: block;

    color: var(--black);

    font-size: 12px;

    line-height: 1.3;
}

.hero-badge small {

    color: var(--muted);

    font-size: 10px;
}


/* =========================================================
   PAGE HERO
========================================================= */

.page-hero,
.contact-page-hero {

    position: relative;

    padding: 95px 0;

    text-align: center;

    background:

        linear-gradient(
            90deg,
            rgba(5,45,99,.96),
            rgba(7,86,184,.85)
        ),

        url("images/page-banner.jpg")
        center/cover no-repeat;
}

.page-hero h1,
.contact-page-hero h1 {

    color: var(--white);

    font-size:
        clamp(35px,5vw,58px);
}

.page-hero p,
.contact-page-hero p {

    max-width: 680px;

    margin:
        0 auto;

    color:
        rgba(255,255,255,.82);
}

.breadcrumb {

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 9px;

    margin-top: 17px;

    color:
        rgba(255,255,255,.75);

    font-size: 12px;
}

.breadcrumb i {

    color: var(--orange);

    font-size: 9px;
}


/* =========================================================
   QUICK SERVICES
========================================================= */

.quick-services,
.quick-service-bar {

    position: relative;

    z-index: 5;

    margin-top: -42px;
}

.quick-services-grid,
.quick-service-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 1px;

    overflow: hidden;

    background: var(--border);

    border-radius: 14px;

    box-shadow: var(--shadow);
}

.quick-service-item {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 21px;

    background: var(--white);
}

.quick-service-item i {

    display: grid;

    width: 44px;

    height: 44px;

    place-items: center;

    flex-shrink: 0;

    color: var(--blue);

    background: var(--blue-light);

    border-radius: 10px;
}

.quick-service-item strong {

    display: block;

    color: var(--black);

    font-size: 12px;
}

.quick-service-item span {

    display: block;

    color: var(--muted);

    font-size: 10px;
}


/* =========================================================
   SERVICE SECTION
========================================================= */

.services-section {

    background: var(--background);
}


/* SERVICE GRID */

.services-grid,
.about-services-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 23px;
}


/* =========================================================
   PROFESSIONAL SERVICE CARD
========================================================= */

.service-card {

    position: relative;

    display: flex;

    flex-direction: column;

    min-height: 100%;

    padding: 28px 23px;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

    box-shadow:
        var(--shadow-small);

    overflow: hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}


/* TOP BLUE LINE */

.service-card::before {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    top: 0;

    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--orange)
        );

    transform:
        scaleX(0);

    transform-origin: left;

    transition:
        transform .35s ease;
}


/* ORANGE CORNER */

.service-card::after {

    content: "";

    position: absolute;

    right: -35px;

    top: -35px;

    width: 90px;

    height: 90px;

    border:
        20px solid
        rgba(255,138,0,.07);

    border-radius: 50%;
}


.service-card:hover {

    transform:
        translateY(-9px);

    border-color:
        rgba(7,86,184,.18);

    box-shadow:
        var(--shadow-large);
}

.service-card:hover::before {

    transform:
        scaleX(1);
}


/* SERVICE ICON */

.service-icon {

    position: relative;

    z-index: 2;

    display: grid;

    width: 62px;

    height: 62px;

    margin-bottom: 20px;

    place-items: center;

    color: var(--blue);

    background:
        linear-gradient(
            135deg,
            var(--blue-light),
            #f7fbff
        );

    border:
        1px solid
        rgba(7,86,184,.08);

    border-radius: 15px;

    font-size: 25px;

    transition: var(--transition);
}

.service-card:hover .service-icon {

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--blue-dark)
        );

    transform:
        translateY(-3px)
        rotate(-4deg);
}


.service-card h3 {

    position: relative;

    z-index: 2;

    margin-bottom: 9px;

    color: var(--black);

    font-size: 18px;
}

.service-card p {

    position: relative;

    z-index: 2;

    flex: 1;

    margin-bottom: 12px;

    color: var(--text);

    font-size: 13px;
}


/* SERVICE LIST */

.service-card ul {

    position: relative;

    z-index: 2;

    display: grid;

    gap: 7px;

    margin:
        10px 0 20px;
}

.service-card li {

    display: flex;

    align-items: flex-start;

    gap: 8px;

    color: var(--muted);

    font-size: 11px;
}

.service-card li i {

    margin-top: 5px;

    color: var(--orange);
}


/* =========================================================
   SERVICE CARD CALL / WHATSAPP
   SEPARATE BUTTONS
========================================================= */

.service-card-buttons,
.detailed-service-buttons {

    position: relative;

    z-index: 5;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 9px;

    margin-top: 18px;
}


.service-card-buttons .btn,
.detailed-service-buttons .btn {

    width: 100%;

    min-height: 45px;

    padding:
        11px 8px;

    border-radius: 9px;

    font-size: 11px;

    font-weight: 800;
}


/* =========================================================
   DETAILED SERVICES
========================================================= */

.detailed-services-grid {

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 25px;
}

.detailed-service-card {

    display: grid;

    grid-template-columns:
        95px 1fr;

    gap: 24px;

    padding: 30px;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-large);

    box-shadow: var(--shadow-small);

    transition: var(--transition);
}

.detailed-service-card:hover {

    transform:
        translateY(-6px);

    box-shadow: var(--shadow);
}

.detailed-service-icon {

    display: grid;

    width: 95px;

    height: 95px;

    place-items: center;

    color: var(--blue);

    background:
        var(--blue-light);

    border-radius: 20px;

    font-size: 35px;
}

.detailed-service-content h3 {

    font-size: 21px;
}

.detailed-service-content p {

    font-size: 13px;
}

.detailed-service-content ul {

    display: grid;

    gap: 6px;

    margin: 15px 0;
}

.detailed-service-content li {

    display: flex;

    gap: 8px;

    font-size: 12px;
}

.detailed-service-content li i {

    color: var(--orange);

    margin-top: 5px;
}


/* =========================================================
   ROUTES
========================================================= */

.routes-section {

    background: var(--white);
}

.routes-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 15px;
}

.route-card {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    padding: 16px 17px;

    color: var(--black);

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: 10px;

    transition: var(--transition);

    overflow: hidden;
}

.route-card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    bottom: 0;

    width: 3px;

    background: var(--orange);

    transform:
        scaleY(0);

    transition: var(--transition);
}

.route-card:hover {

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--blue-dark)
        );

    border-color:
        var(--blue);

    transform:
        translateY(-4px);

    box-shadow: var(--shadow);
}

.route-card:hover::before {

    transform:
        scaleY(1);
}

.route-card strong {

    font-size: 12px;
}

.route-card i {

    color: var(--orange);

    font-size: 11px;
}

.route-card:hover i {

    color: var(--orange);
}


/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-section,
.why-about-section {

    background:
        var(--background);
}

.why-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 21px;
}

.why-card {

    padding: 27px 22px;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    box-shadow:
        var(--shadow-small);

    transition: var(--transition);
}

.why-card:hover {

    transform:
        translateY(-7px);

    box-shadow:
        var(--shadow);
}

.why-card i {

    display: grid;

    width: 55px;

    height: 55px;

    margin-bottom: 18px;

    place-items: center;

    color: var(--blue);

    background:
        var(--blue-light);

    border-radius: 13px;

    font-size: 22px;
}

.why-card h3,
.why-card span {

    display: block;

    margin-bottom: 8px;

    color: var(--black);

    font-size: 16px;

    font-weight: 800;
}

.why-card p {

    margin-bottom: 0;

    font-size: 12px;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section,
.about-page-intro {

    background: var(--white);
}

.about-grid,
.about-intro-grid {

    display: grid;

    grid-template-columns:
        .95fr 1.05fr;

    align-items: center;

    gap: 70px;
}

.about-image {

    position: relative;
}

.about-image img {

    width: 100%;

    min-height: 440px;

    object-fit: cover;

    border-radius:
        var(--radius-large);

    box-shadow:
        var(--shadow);
}

.about-image::before {

    content: "";

    position: absolute;

    left: -15px;

    top: -15px;

    width: 140px;

    height: 140px;

    background:
        var(--blue-light);

    border-radius: 20px;

    z-index: -1;
}

.about-image::after {

    content: "";

    position: absolute;

    right: -20px;

    bottom: -20px;

    width: 150px;

    height: 150px;

    border:
        8px solid
        var(--orange);

    border-radius: 50%;

    opacity: .25;

    z-index: -1;
}

.about-content h2 {

    margin-bottom: 18px;
}

.about-content p {

    margin-bottom: 16px;
}

.about-list {

    display: grid;

    gap: 11px;

    margin:
        22px 0 27px;
}

.about-list li {

    display: flex;

    align-items: flex-start;

    gap: 9px;

    color: var(--black);

    font-size: 13px;

    font-weight: 700;
}

.about-list i {

    margin-top: 5px;

    color: var(--orange);
}

.about-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}


/* =========================================================
   COMPANY HIGHLIGHTS
========================================================= */

.company-highlights {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 17px;

    margin-top: 42px;
}

.highlight-card {

    padding: 24px 17px;

    text-align: center;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: 14px;

    box-shadow: var(--shadow-small);

    transition: var(--transition);
}

.highlight-card:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(7,86,184,.20);

    box-shadow: var(--shadow);
}

.highlight-card i {

    display: block;

    margin-bottom: 10px;

    color: var(--orange);

    font-size: 25px;
}

.highlight-card strong {

    display: block;

    color: var(--blue);

    font-size: 27px;

    line-height: 1;
}

.highlight-card span {

    display: block;

    margin-top: 7px;

    color: var(--muted);

    font-size: 11px;
}


/* =========================================================
   PROCESS
========================================================= */

.process-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 25px;
}

.process-card {

    position: relative;

    padding: 30px 22px;

    text-align: center;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow-small);
}

.process-number {

    display: grid;

    width: 68px;

    height: 68px;

    margin:
        0 auto 18px;

    place-items: center;

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--blue-dark)
        );

    border:
        7px solid
        var(--blue-light);

    border-radius: 50%;

    font-size: 18px;

    font-weight: 800;
}

.process-card h3 {

    font-size: 17px;
}

.process-card p {

    margin-bottom: 0;

    font-size: 12px;
}

.process-card::after {

    content: "";

    position: absolute;

    right: -34px;

    top: 52px;

    width: 43px;

    height: 2px;

    background:
        var(--orange);
}

.process-card:last-child::after {

    display: none;
}


/* =========================================================
   CONTACT QUICK CARDS
========================================================= */

.contact-quick-section {

    padding: 55px 0 0;

    background: var(--white);
}

.contact-quick-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 19px;
}

.contact-quick-card {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 23px;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: 15px;

    box-shadow:
        var(--shadow-small);

    transition: var(--transition);
}

.contact-quick-card:hover {

    transform:
        translateY(-5px);

    box-shadow: var(--shadow);
}

.contact-quick-card > i,
.contact-quick-icon {

    display: grid;

    width: 53px;

    height: 53px;

    flex-shrink: 0;

    place-items: center;

    color: var(--blue);

    background: var(--blue-light);

    border-radius: 13px;

    font-size: 21px;
}

.whatsapp-contact-card {

    border-color:
        rgba(25,196,99,.25);
}

.whatsapp-contact-card > i {

    color: var(--green);

    background:
        rgba(25,196,99,.10);
}

.contact-quick-card h3 {

    margin-bottom: 3px;

    font-size: 16px;
}

.contact-quick-card p {

    margin-bottom: 0;

    font-size: 12px;
}


/* =========================================================
   CONTACT MAIN
========================================================= */

.contact-main-section {

    padding: 80px 0;

    background:
        var(--background);
}

.contact-main-grid {

    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 55px;

    align-items: start;
}

.contact-info-column h2 {

    margin-bottom: 15px;
}

.contact-info-column > p {

    font-size: 14px;
}

.contact-info-item {

    display: flex;

    align-items: flex-start;

    gap: 14px;

    margin-bottom: 20px;
}

.contact-info-icon {

    display: grid;

    width: 45px;

    height: 45px;

    flex-shrink: 0;

    place-items: center;

    color: var(--blue);

    background: var(--blue-light);

    border-radius: 10px;
}

.contact-info-item h4 {

    margin-bottom: 2px;

    font-size: 14px;
}

.contact-info-item p,
.contact-info-item a {

    margin-bottom: 0;

    font-size: 12px;
}

.contact-info-item a:hover {

    color: var(--blue);
}


/* SERVICE AREA */

.contact-service-area {

    margin-top: 27px;

    padding: 23px;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--blue-dark)
        );

    border-radius: 15px;
}

.contact-service-area h3 {

    color: var(--white);

    font-size: 17px;
}

.contact-service-area p {

    margin-bottom: 0;

    color:
        rgba(255,255,255,.78);

    font-size: 12px;
}


/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form-wrapper {

    padding: 34px;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-large);

    box-shadow:
        var(--shadow);
}

.contact-form-header {

    margin-bottom: 25px;
}

.contact-form-header h2 {

    margin-bottom: 7px;

    font-size: 27px;
}

.contact-form-header p {

    margin-bottom: 0;

    color: var(--muted);

    font-size: 12px;
}

.form-grid {

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 17px;
}

.form-group {

    margin-bottom: 17px;
}

.form-group.full,
.form-group.full-width {

    grid-column:
        1 / -1;
}

.form-group label {

    display: block;

    margin-bottom: 6px;

    color: var(--black);

    font-size: 12px;

    font-weight: 800;
}

.form-group label span {

    color: #e53935;
}

.input-box,
.textarea-box,
.form-group input,
.form-group textarea,
.form-group select {

    width: 100%;

    border:
        1px solid var(--border);

    border-radius: 8px;

    outline: none;

    color: var(--black);

    background:
        #fbfdff;

    transition: var(--transition);
}

.input-box,
.form-group input,
.form-group select {

    height: 47px;

    padding:
        0 13px;
}

.textarea-box,
.form-group textarea {

    min-height: 120px;

    padding:
        12px 13px;

    resize: vertical;
}

.input-box:focus,
.textarea-box:focus,
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {

    border-color:
        var(--blue);

    background: var(--white);

    box-shadow:
        0 0 0 4px
        rgba(7,86,184,.07);
}

.contact-submit-btn {

    width: 100%;

    border: 0;
}

.form-note {

    margin-top: 10px;

    color: var(--muted);

    font-size: 10px;

    text-align: center;
}


/* =========================================================
   MAP
========================================================= */

.map-section {

    padding: 80px 0;

    background: var(--white);
}

.map-wrapper {

    position: relative;

    overflow: hidden;

    border-radius:
        var(--radius-large);

    box-shadow:
        var(--shadow);
}

.map-frame {

    display: block;

    width: 100%;

    height: 430px;

    border: 0;
}

.map-address-card {

    position: absolute;

    left: 25px;

    bottom: 25px;

    display: flex;

    align-items: flex-start;

    gap: 12px;

    max-width: 360px;

    padding: 19px;

    background: var(--white);

    border-radius: 13px;

    box-shadow:
        var(--shadow-large);
}

.map-address-icon {

    display: grid;

    width: 42px;

    height: 42px;

    flex-shrink: 0;

    place-items: center;

    color: var(--white);

    background: var(--blue);

    border-radius: 9px;
}

.map-address-card h4 {

    margin-bottom: 3px;

    font-size: 14px;
}

.map-address-card p {

    margin-bottom: 7px;

    font-size: 11px;
}

.map-address-card a {

    color: var(--blue);

    font-size: 11px;

    font-weight: 800;
}


/* =========================================================
   CONTACT SERVICE TAGS
========================================================= */

.contact-services-strip {

    padding: 60px 0;

    background:
        var(--background);
}

.contact-strip-header {

    margin-bottom: 23px;

    text-align: center;
}

.contact-strip-header h2 {

    font-size: 29px;
}

.contact-service-tags {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;
}

.contact-service-tags a,
.contact-service-tags span {

    padding:
        10px 16px;

    color: var(--blue);

    background: var(--white);

    border:
        1px solid
        rgba(7,86,184,.12);

    border-radius: 30px;

    font-size: 11px;

    font-weight: 700;

    transition: var(--transition);
}

.contact-service-tags a:hover,
.contact-service-tags span:hover {

    color: var(--white);

    background: var(--blue);

    border-color: var(--blue);

    transform:
        translateY(-2px);
}


/* =========================================================
   FAQ
========================================================= */

.contact-faq-section,
.faq-section {

    padding: 80px 0;

    background: var(--white);
}

.faq-grid {

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 15px;
}

.faq-item {

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: 11px;

    overflow: hidden;

    transition: var(--transition);
}

.faq-item.active {

    border-color:
        rgba(7,86,184,.20);

    box-shadow:
        var(--shadow-small);
}

.faq-question {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding: 18px;

    border: 0;

    color: var(--black);

    background: var(--white);

    text-align: left;

    font-size: 13px;

    font-weight: 800;
}

.faq-question i {

    color: var(--blue);

    transition: var(--transition);
}

.faq-item.active
.faq-question i {

    transform:
        rotate(180deg);

    color: var(--orange);
}

.faq-answer {

    display: none;

    padding:
        0 18px 18px;

    color: var(--text);

    font-size: 12px;
}

.faq-item.active
.faq-answer {

    display: block;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {

    position: relative;

    overflow: hidden;

    padding: 75px 0;

    background:
        linear-gradient(
            120deg,
            var(--blue-deep),
            var(--blue)
        );
}

.cta-section::before {

    content: "";

    position: absolute;

    right: -150px;

    top: -180px;

    width: 450px;

    height: 450px;

    border:
        70px solid
        rgba(255,138,0,.12);

    border-radius: 50%;
}

.cta-content {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;
}

.cta-content h2 {

    color: var(--white);

    font-size: 35px;
}

.cta-content p {

    max-width: 650px;

    margin-bottom: 0;

    color:
        rgba(255,255,255,.78);

    font-size: 14px;
}

.cta-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}


/* =========================================================
   GALLERY
========================================================= */

.gallery-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 20px;
}

.gallery-item {

    position: relative;

    min-height: 260px;

    overflow: hidden;

    background: var(--blue-light);

    border-radius:
        var(--radius);

}

.gallery-item img {

    width: 100%;

    height: 100%;

    min-height: 260px;

    object-fit: cover;

    transition:
        transform .5s ease;
}

.gallery-item:hover img {

    transform:
        scale(1.08);
}

.gallery-overlay {

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding:
        40px 18px 18px;

    color: var(--white);

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,.78)
        );
}

.gallery-overlay h3 {

    margin-bottom: 0;

    color: var(--white);

    font-size: 17px;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    padding-top: 70px;

    color:
        rgba(255,255,255,.70);

    background:
        #041b3b;
}

.footer-grid {

    display: grid;

    grid-template-columns:
        1.3fr .8fr .8fr 1fr;

    gap: 42px;

    padding-bottom: 50px;
}

.footer .logo-text strong {

    color: var(--white);
}

.footer .logo-text small,
.footer .logo-text span {

    color: var(--orange);
}

.footer-about {

    max-width: 330px;
}

.footer-about p {

    margin-top: 17px;

    font-size: 12px;
}

.footer h3 {

    margin-bottom: 19px;

    color: var(--white);

    font-size: 16px;
}

.footer-links {

    display: grid;

    gap: 10px;
}

.footer-links a {

    display: flex;

    gap: 8px;

    color:
        rgba(255,255,255,.65);

    font-size: 12px;
}

.footer-links a::before {

    content:
        "\f105";

    color: var(--orange);

    font-family:
        "Font Awesome 6 Free";

    font-weight: 900;
}

.footer-links a:hover {

    color: var(--orange);

    padding-left: 4px;
}

.footer-contact {

    display: grid;

    gap: 12px;
}

.footer-contact li {

    display: flex;

    align-items: flex-start;

    gap: 9px;

    font-size: 12px;
}

.footer-contact i {

    margin-top: 4px;

    color: var(--orange);
}

.footer-contact a:hover {

    color: var(--orange);
}


/* SOCIAL */

.social-links {

    display: flex;

    gap: 8px;

    margin-top: 20px;
}

.social-links a {

    display: grid;

    width: 37px;

    height: 37px;

    place-items: center;

    color: var(--white);

    background:
        rgba(255,255,255,.08);

    border-radius: 8px;

    transition: var(--transition);
}

.social-links a:hover {

    color: var(--white);

    background: var(--orange);

    transform:
        translateY(-3px);
}


/* FOOTER BOTTOM */

.footer-bottom {

    padding:
        18px 0;

    border-top:
        1px solid
        rgba(255,255,255,.08);
}

.footer-bottom-content {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {

    margin-bottom: 0;

    font-size: 10px;
}

.footer-bottom a {

    color: var(--orange);
}


/* =========================================================
   FLOATING CALL + WHATSAPP
========================================================= */

.floating-buttons {

    position: fixed;

    right: 20px;

    bottom: 20px;

    z-index: 9998;

    display: flex;

    flex-direction: column;

    gap: 10px;
}

.floating-buttons a {

    position: relative;

    display: grid;

    width: 55px;

    height: 55px;

    place-items: center;

    color: var(--white);

    border-radius: 50%;

    font-size: 21px;

    box-shadow:
        0 8px 25px
        rgba(0,0,0,.18);

    transition: var(--transition);
}

.floating-buttons a:hover {

    color: var(--white);

    transform:
        translateY(-5px)
        scale(1.05);
}


/* CALL */

.floating-call {

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--blue-dark)
        );

    animation:
        floatingCall 2.4s infinite;
}


/* WHATSAPP */

.floating-whatsapp {

    background:
        linear-gradient(
            135deg,
            #20d467,
            #0d9f4b
        );

    animation:
        floatingWhatsapp 2.1s infinite;
}


@keyframes floatingCall {

    0% {
        box-shadow:
            0 0 0 0
            rgba(7,86,184,.40);
    }

    50% {
        box-shadow:
            0 0 0 9px
            rgba(7,86,184,.08);
    }

    100% {
        box-shadow:
            0 0 0 0
            rgba(7,86,184,0);
    }
}


@keyframes floatingWhatsapp {

    0% {
        box-shadow:
            0 0 0 0
            rgba(25,196,99,.40);
    }

    50% {
        box-shadow:
            0 0 0 9px
            rgba(25,196,99,.08);
    }

    100% {
        box-shadow:
            0 0 0 0
            rgba(25,196,99,0);
    }
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {

    opacity: 0;

    transform:
        translateY(25px);

    transition:
        opacity .7s ease,
        transform .7s ease;
}

.reveal.show {

    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   BUTTON RIPPLE
========================================================= */

.button-ripple {

    position: absolute;

    display: block;

    width: 20px;

    height: 20px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.30);

    transform:
        scale(0);

    animation:
        buttonRipple .6s linear;

    pointer-events: none;
}

@keyframes buttonRipple {

    to {

        transform:
            scale(4);

        opacity: 0;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .container {

        width:
            min(100% - 32px,
            var(--container));
    }


    .navbar {

        gap: 17px;
    }

    .navbar a {

        font-size: 12px;
    }


    .services-grid,
    .about-services-grid,
    .why-grid,
    .routes-grid {

        grid-template-columns:
            repeat(3,1fr);
    }


    .company-highlights {

        grid-template-columns:
            repeat(2,1fr);
    }


    .footer-grid {

        grid-template-columns:
            repeat(2,1fr);
    }

}


/* =========================================================
   TABLET / MOBILE NAVBAR
========================================================= */

@media (max-width: 900px) {

    :root {

        --header-height: 72px;
    }


    .top-bar-left {

        display: none;
    }

    .top-bar-content {

        justify-content:
            center;
    }


    /* HEADER */

    .header-inner {

        min-height: 72px;
    }


    /* MENU BUTTON */

    .menu-btn {

        display: grid;

        place-items: center;
    }


    /* HEADER CALL BUTTON */

    .header-actions .btn {

        display: none;
    }


    /* MOBILE NAV */

    .navbar {

        position: absolute;

        top: 100%;

        left: 12px;

        right: 12px;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 2px;

        padding: 9px;

        background: var(--white);

        border:
            1px solid var(--border);

        border-radius: 13px;

        box-shadow:
            var(--shadow-large);

        max-height:
            calc(100vh - 90px);

        overflow-y: auto;
    }


    .navbar.active {

        display: flex;
    }


    .navbar a {

        min-height:
            auto;

        padding:
            13px 14px;

        border-radius: 7px;

        font-size: 13px;
    }


    .navbar a::after {

        display: none;
    }


    .navbar a:hover,
    .navbar a.active {

        color: var(--blue);

        background:
            var(--blue-light);
    }


    /* HERO */

    .hero {

        min-height: auto;

        padding:
            75px 0;
    }


    .hero-grid {

        grid-template-columns: 1fr;

        gap: 45px;
    }


    .hero-content {

        max-width: 100%;

        text-align: center;
    }


    .hero p {

        margin-left: auto;

        margin-right: auto;
    }


    .hero-buttons,
    .hero-points {

        justify-content: center;
    }


    .hero-image {

        max-width: 650px;

        width: 100%;

        margin:
            0 auto;
    }


    .about-grid,
    .about-intro-grid,
    .quote-grid,
    .contact-main-grid {

        grid-template-columns: 1fr;

        gap: 45px;
    }


    .about-image {

        max-width: 650px;

        width: 100%;

        margin:
            0 auto;
    }


    .about-content {

        text-align: center;
    }


    .about-list {

        text-align: left;
    }


    .about-buttons {

        justify-content: center;
    }


    .detailed-services-grid {

        grid-template-columns: 1fr;
    }


    .contact-info-column {

        max-width: 650px;
    }


    .cta-content {

        flex-direction: column;

        align-items:
            flex-start;
    }


    .process-card::after {

        display: none;
    }

}


/* =========================================================
   768px
========================================================= */

@media (max-width: 768px) {

    .section {

        padding:
            70px 0;
    }


    .page-hero,
    .contact-page-hero {

        padding:
            70px 0;
    }


    .quick-services,
    .quick-service-bar {

        margin-top:
            -25px;
    }


    .quick-services-grid,
    .quick-service-grid {

        grid-template-columns:
            repeat(2,1fr);
    }


    .services-grid,
    .about-services-grid,
    .why-grid,
    .routes-grid {

        grid-template-columns:
            repeat(2,1fr);
    }


    .process-grid {

        grid-template-columns:
            repeat(2,1fr);
    }


    .contact-quick-grid {

        grid-template-columns:
            1fr;
    }


    .form-grid {

        grid-template-columns:
            1fr;
    }


    .form-group.full,
    .form-group.full-width {

        grid-column:
            auto;
    }


    .gallery-grid {

        grid-template-columns:
            repeat(2,1fr);
    }


    .map-wrapper {

        overflow: visible;
    }


    .map-frame {

        height:
            350px;
    }


    .map-address-card {

        position: relative;

        left: auto;

        bottom: auto;

        max-width: 100%;

        margin-top: -1px;

        border-radius:
            0 0 13px 13px;
    }


    .faq-grid {

        grid-template-columns:
            1fr;
    }


    .footer-grid {

        gap: 30px;
    }

}


/* =========================================================
   MOBILE 520px
========================================================= */

@media (max-width: 520px) {

    .container {

        width:
            min(100% - 24px,
            var(--container));
    }


    body {

        font-size: 14px;
    }


    /* TOP BAR */

    .top-bar {

        font-size: 9px;
    }


    .top-bar-right {

        justify-content: center;

        gap: 10px;
    }


    /* LOGO */

    .logo-h {

        width: 38px;

        height: 48px;

        font-size: 39px;
    }


    .logo-h::after {

        width: 7px;

        height: 7px;

        right: -3px;

        top: 4px;
    }


    .logo-text strong {

        font-size: 16px;
    }


    .logo-text small,
    .logo-text span {

        display: none;
    }


    /* HERO */

    .hero {

        padding:
            58px 0;
    }


    .hero h1 {

        font-size:
            34px;
    }


    .hero p {

        font-size:
            14px;
    }


    .hero-buttons {

        flex-direction: column;

        align-items:
            stretch;
    }


    .hero-buttons .btn {

        width: 100%;
    }


    .hero-points {

        flex-direction: column;

        align-items: center;

        gap: 7px;
    }


    .hero-badge {

        right: 10px;

        bottom: 12px;

        padding: 11px;
    }


    /* QUICK SERVICES */

    .quick-services-grid,
    .quick-service-grid {

        grid-template-columns:
            1fr;
    }


    /* ALL CARDS */

    .services-grid,
    .about-services-grid,
    .why-grid,
    .routes-grid,
    .company-highlights,
    .process-grid,
    .gallery-grid {

        grid-template-columns:
            1fr;
    }


    /* SERVICE CARD */

    .service-card {

        padding:
            25px 20px;
    }


    /* SEPARATE BUTTONS */

    .service-card-buttons,
    .detailed-service-buttons {

        grid-template-columns:
            1fr;
    }


    .service-card-buttons .btn,
    .detailed-service-buttons .btn {

        width: 100%;

        min-height:
            48px;
    }


    /* DETAILED SERVICE */

    .detailed-service-card {

        grid-template-columns:
            1fr;

        gap: 18px;

        padding:
            23px;
    }


    .detailed-service-icon {

        width: 65px;

        height: 65px;

        font-size: 25px;
    }


    /* ABOUT */

    .about-image img {

        min-height:
            300px;
    }


    /* FORM */

    .contact-form-wrapper {

        padding:
            22px 17px;
    }


    .quote-form,
    .form-wrapper {

        padding:
            22px 17px;
    }


    /* CTA */

    .cta-section {

        padding:
            60px 0;
    }


    .cta-content h2 {

        font-size:
            28px;
    }


    .cta-buttons {

        width: 100%;

        flex-direction:
            column;
    }


    .cta-buttons .btn {

        width: 100%;
    }


    /* MAP */

    .map-frame {

        height:
            300px;
    }


    /* FOOTER */

    .footer {

        padding-top:
            55px;
    }


    .footer-grid {

        grid-template-columns:
            1fr;

        gap:
            30px;
    }


    .footer-about {

        max-width:
            100%;
    }


    .footer-bottom-content {

        flex-direction:
            column;

        text-align:
            center;

        gap: 7px;
    }


    /* FLOATING BUTTONS */

    .floating-buttons {

        right:
            12px;

        bottom:
            12px;

        gap:
            8px;
    }


    .floating-buttons a {

        width:
            48px;

        height:
            48px;

        font-size:
            18px;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {

    outline:
        3px solid
        rgba(255,138,0,.45);

    outline-offset:
        3px;
}


/* =========================================================
   REDUCE MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        scroll-behavior:
            auto !important;

        transition-duration:
            0.01ms !important;
    }

}

/* =========================================
   ABOUT SECTION
========================================= */

.about-section {
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 70px;
}


/* LEFT CONTENT */

.about-content {
    max-width: 650px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    margin-bottom: 18px;

    background: #eaf4ff;
    color: #0757b8;

    border-radius: 30px;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.about-content h2 {
    margin: 0 0 20px;

    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;

    color: #092f63;
    font-weight: 800;
}

.about-content h2 span {
    display: block;
    color: #f58220;
}

.about-content p {
    margin: 0 0 16px;

    color: #5d6b7b;
    font-size: 16px;
    line-height: 1.8;
}


/* FEATURES */

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;

    margin: 25px 0 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 12px 14px;

    background: #fff;
    border-radius: 12px;

    box-shadow: 0 8px 25px rgba(10, 55, 100, 0.08);

    font-size: 14px;
    font-weight: 700;
    color: #183b63;

    transition: 0.3s ease;
}

.about-feature i {
    color: #0b66d4;
    font-size: 18px;
}

.about-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(10, 55, 100, 0.14);
}


/* =========================================
   ABOUT IMAGE
========================================= */

.about-image-wrap {
    position: relative;
    width: 100%;
}

.about-image-card {
    position: relative;

    width: 100%;
    min-height: 480px;

    overflow: hidden;

    border-radius: 28px;

    background: #eaf4ff;

    box-shadow:
        0 25px 60px rgba(7, 57, 110, 0.18);

    border: 6px solid #fff;
}

.about-image-card::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0) 50%,
            rgba(3, 32, 65, 0.35) 100%
        );

    z-index: 1;

    pointer-events: none;
}

.about-image-card img {
    width: 100%;
    height: 100%;
    min-height: 480px;

    display: block;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.about-image-card:hover img {
    transform: scale(1.06);
}


/* IMAGE BADGE */

.about-image-badge {
    position: absolute;

    left: 25px;
    bottom: 25px;

    z-index: 2;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 15px 20px;

    background: rgba(255, 255, 255, 0.96);

    border-radius: 15px;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);

    backdrop-filter: blur(10px);
}

.about-image-badge > i {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #0b66d4;
    color: #fff;

    font-size: 20px;
}

.about-image-badge strong {
    display: block;

    color: #092f63;
    font-size: 15px;
}

.about-image-badge span {
    display: block;

    margin-top: 3px;

    color: #687789;
    font-size: 12px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content {
        max-width: 100%;
    }

    .about-image-card {
        min-height: 420px;
    }

    .about-image-card img {
        min-height: 420px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .about-grid {
        gap: 30px;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .about-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .about-image-card {
        min-height: 330px;
        border-radius: 20px;
        border-width: 4px;
    }

    .about-image-card img {
        min-height: 330px;
    }

    .about-image-badge {
        left: 15px;
        right: 15px;
        bottom: 15px;

        padding: 12px 14px;
    }

    .about-image-badge > i {
        width: 42px;
        height: 42px;
    }

}