:root {
    --primary: #d71920;
    --primary-dark: #a90f15;
    --dark: #111827;
    --dark-soft: #1f2937;
    --text: #5f6875;
    --light: #f5f7fa;
    --white: #ffffff;
    --border: #e5e7eb;
    --green: #25d366;
    --container: 1240px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Arial,
        Helvetica,
        sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

body.menu-active {
    overflow: hidden;
}

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

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

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(
        calc(100% - 40px),
        var(--container)
    );
    margin: 0 auto;
}


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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo {
    flex-shrink: 0;
}

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

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: auto;
}

.menu-link,
.mega-toggle {
    border: 0;
    background: transparent;
    color: var(--dark);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    transition: color .25s ease;
}

.menu-link:hover,
.mega-toggle:hover {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: 10px;
}

.header-phone {
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
}

.header-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 8px;
    background: var(--green);
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    transition: transform .2s ease;
}

.header-whatsapp:hover {
    transform: translateY(-2px);
}


/* =========================================
   MEGA MENU
========================================= */

.nav-dropdown {
    position: relative;
}

.mega-toggle {
    display: flex;
    align-items: center;
    gap: 7px;
}

.mega-arrow {
    font-size: 13px;
    transition: transform .25s ease;
}

.nav-dropdown:hover .mega-arrow {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: calc(100% + 30px);
    left: 50%;
    width: 760px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow:
        0 25px 60px
        rgba(17, 24, 39, .16);
    transform:
        translateX(-50%)
        translateY(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .25s ease;
}

.nav-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform:
        translateX(-50%)
        translateY(0);
}

.mega-menu-head {
    display: grid;
    gap: 4px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.mega-menu-head strong {
    font-size: 18px;
}

.mega-menu-head span {
    color: var(--text);
    font-size: 13px;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
    gap: 8px;
}

.mega-menu-grid a {
    padding: 11px 12px;
    border-radius: 8px;
    color: var(--dark);
    font-size: 13px;
    font-weight: 700;
    transition: all .2s ease;
}

.mega-menu-grid a:hover,
.mega-menu-grid a.active-city {
    background: var(--primary);
    color: var(--white);
}


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

.mobile-menu-toggle,
.mobile-nav-head,
.mobile-contact {
    display: none;
}

.mobile-overlay {
    display: none;
}


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

.inner-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
}

.inner-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inner-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(8, 15, 28, .92) 0%,
            rgba(8, 15, 28, .72) 48%,
            rgba(8, 15, 28, .30) 100%
        );
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 90px 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 28px;
    color: rgba(255,255,255,.78);
    font-size: 14px;
}

.breadcrumb a:hover {
    color: var(--white);
}

.section-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.2px;
}

.hero-kicker {
    color: #ffb2b5;
}

.inner-hero h1 {
    max-width: 800px;
    margin-bottom: 22px;
    font-size: clamp(
        44px,
        6vw,
        72px
    );
    line-height: 1.08;
}

.inner-hero p {
    max-width: 720px;
    color: rgba(255,255,255,.88);
    font-size: 19px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 8px;
    font-weight: 800;
    transition:
        transform .2s ease,
        background .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--primary);
    color: var(--white);
}

.button-primary:hover {
    background: var(--primary-dark);
}

.button-outline {
    border: 1px solid
        rgba(255,255,255,.6);
    color: var(--white);
}


/* =========================================
   GENERAL SECTIONS
========================================= */

.section {
    padding: 100px 0;
}

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

.two-column,
.route-grid,
.contact-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 70px;
    align-items: center;
}

.content-block h2,
.route-grid h2,
.contact-information h2 {
    margin-bottom: 22px;
    font-size: clamp(
        32px,
        4vw,
        48px
    );
    line-height: 1.2;
}

.content-block p,
.route-grid p,
.contact-information p {
    margin-bottom: 18px;
    color: var(--text);
}

.content-image,
.route-image {
    overflow: hidden;
    border-radius: 20px;
}

.content-image img,
.route-image img {
    width: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.content-image:hover img,
.route-image:hover img {
    transform: scale(1.04);
}


/* =========================================
   CHECK LIST
========================================= */

.check-list {
    display: grid;
    gap: 16px;
    margin-top: 30px;
}

.check-list > div {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.check-list > div > span {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fee2e2;
    color: var(--primary);
    font-weight: 900;
}

.check-list p {
    margin: 0;
}


/* =========================================
   SECTION HEADING
========================================= */

.section-heading {
    margin-bottom: 50px;
}

.section-heading.center {
    max-width: 820px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading h2 {
    margin-bottom: 16px;
    font-size: clamp(
        32px,
        4vw,
        48px
    );
    line-height: 1.2;
}

.section-heading p {
    color: var(--text);
}


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

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

.process-card {
    min-height: 100%;
    padding: 32px 26px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 40px
        rgba(17,24,39,.08);
}

.process-number {
    display: block;
    margin-bottom: 18px;
    color: var(--primary);
    font-size: 30px;
    font-weight: 900;
}

.process-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.process-card p {
    color: var(--text);
}


/* =========================================
   ROUTES
========================================= */

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

.city-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.city-links a {
    padding: 10px 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    color: var(--dark);
    font-size: 14px;
    font-weight: 700;
    transition: all .2s ease;
}

.city-links a:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}


/* =========================================
   CARGO TYPES
========================================= */

.cargo-types-grid {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
    gap: 24px;
}

.cargo-types-grid article {
    padding: 32px 26px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--white);
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.cargo-types-grid article:hover {
    transform: translateY(-6px);
    box-shadow:
        0 18px 40px
        rgba(17,24,39,.08);
}

.cargo-icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 15px;
    background: #fee2e2;
    color: var(--primary);
    font-size: 26px;
}

.cargo-types-grid h3 {
    margin-bottom: 10px;
    font-size: 21px;
}

.cargo-types-grid p {
    color: var(--text);
}


/* =========================================
   REVIEWS
========================================= */

.reviews-section {
    padding: 100px 0;
    background: var(--dark);
    color: var(--white);
}

.reviews-section .section-heading p {
    color: rgba(255,255,255,.72);
}

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

.review-card {
    padding: 30px;
    border-radius: 16px;
    background: var(--white);
    color: var(--dark);
}

.review-top {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-avatar {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-weight: 900;
}

.review-top h3 {
    font-size: 18px;
}

.review-top span {
    color: var(--text);
    font-size: 13px;
}

.stars {
    margin: 20px 0 13px;
    color: #f59e0b;
    letter-spacing: 2px;
}

.review-card p {
    color: var(--text);
}


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

.faq-section {
    padding: 100px 0;
    background: var(--light);
}

.faq-wrapper {
    display: grid;
    gap: 14px;
    max-width: 920px;
    margin: 0 auto;
}

.faq-card {
    padding: 21px 24px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
}

.faq-card summary {
    position: relative;
    padding-right: 35px;
    color: var(--dark);
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

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

.faq-card summary::after {
    content: "+";
    position: absolute;
    top: -7px;
    right: 0;
    color: var(--primary);
    font-size: 26px;
    font-weight: 500;
}

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

.faq-card p {
    margin-top: 16px;
    color: var(--text);
}


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

.contact-section {
    padding: 100px 0;
}

.contact-list {
    display: grid;
    gap: 15px;
    margin-top: 30px;
}

.contact-list a {
    display: grid;
    gap: 3px;
    padding: 18px 20px;
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: border-color .2s ease;
}

.contact-list a:hover {
    border-color: var(--primary);
}

.contact-list strong {
    color: var(--dark);
}

.contact-list span {
    color: var(--text);
}

.contact-form {
    padding: 38px;
    border-radius: 18px;
    background: var(--light);
}

.contact-form h3 {
    margin-bottom: 24px;
    font-size: 27px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    margin-bottom: 17px;
    color: var(--dark);
    font-weight: 700;
    font-size: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--border);
    outline: none;
    border-radius: 8px;
    background: var(--white);
    padding: 14px 15px;
    color: var(--dark);
    transition: border-color .2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
}

.contact-form textarea {
    resize: vertical;
}

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

.form-submit {
    width: 100%;
    min-height: 55px;
    border: 0;
    border-radius: 8px;
    background: var(--primary);
    color: var(--white);
    font-weight: 900;
    transition: background .2s ease;
}

.form-submit:hover {
    background: var(--primary-dark);
}

.form-note {
    margin-top: 13px;
    color: var(--text);
    font-size: 13px;
}


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

.site-footer {
    background: #10151f;
    color: var(--white);
}

.footer-main {
    padding: 80px 0 65px;
}

.footer-grid {
    display: grid;
    grid-template-columns:
        1.6fr
        1fr
        1fr
        1fr;
    gap: 50px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 22px;
}

.footer-logo img {
    width: 200px;
}

.footer-brand p {
    max-width: 380px;
    color: rgba(255,255,255,.65);
}

.footer-contact-boxes {
    display: grid;
    gap: 12px;
    margin-top: 25px;
}

.footer-contact-boxes a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.footer-contact-boxes span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255,255,255,.1);
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 11px;
}

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

.footer-column a {
    color: rgba(255,255,255,.65);
    font-size: 14px;
    transition: color .2s ease;
}

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


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

.footer-cta {
    padding: 35px 0;
    background: var(--primary);
}

.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-cta span {
    display: block;
    margin-bottom: 5px;
    color: rgba(255,255,255,.75);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
}

.footer-cta h2 {
    font-size: clamp(
        24px,
        3vw,
        36px
    );
    line-height: 1.2;
}

.footer-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex-shrink: 0;
}

.footer-call-button,
.footer-whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 8px;
    font-weight: 800;
}

.footer-call-button {
    background: var(--white);
    color: var(--primary);
}

.footer-whatsapp-button {
    border: 1px solid
        rgba(255,255,255,.65);
    color: var(--white);
}


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

.footer-bottom {
    border-top: 1px solid
        rgba(255,255,255,.08);
    padding: 22px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

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

.footer-bottom-inner > div {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-bottom a {
    color: rgba(255,255,255,.55);
    font-size: 13px;
}

.footer-bottom a:hover {
    color: var(--white);
}


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

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    font-size: 25px;
    box-shadow:
        0 12px 30px
        rgba(0,0,0,.22);
    transition: transform .2s ease;
}

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


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

@media (max-width: 1150px) {

    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        width: 46px;
        height: 46px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        margin-left: auto;
        border: 0;
        border-radius: 8px;
        background: var(--dark);
        padding: 0 12px;
    }

    .mobile-menu-toggle span {
        width: 100%;
        height: 2px;
        background: var(--white);
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(390px, 88vw);
        height: 100dvh;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 0;
        padding: 20px;
        overflow-y: auto;
        background: var(--white);
        transform: translateX(105%);
        transition: transform .3s ease;
        z-index: 1100;
    }

    .main-nav.open {
        transform: translateX(0);
    }

    .mobile-nav-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 20px;
        margin-bottom: 10px;
        border-bottom: 1px solid var(--border);
    }

    .mobile-menu-close {
        width: 42px;
        height: 42px;
        border: 0;
        border-radius: 8px;
        background: var(--dark);
        color: var(--white);
        font-size: 30px;
        line-height: 1;
    }

    .menu-link,
    .mega-toggle {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid var(--border);
        text-align: left;
    }

    .mega-toggle {
        justify-content: space-between;
    }

    .nav-dropdown {
        width: 100%;
    }

    .mega-menu {
        position: static;
        width: 100%;
        display: none;
        padding: 15px 0 5px;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-dropdown:hover .mega-menu {
        transform: none;
    }

    .nav-dropdown.mega-open .mega-menu {
        display: block;
    }

    .nav-dropdown.mega-open .mega-arrow {
        transform: rotate(180deg);
    }

    .mega-menu-head {
        display: none;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr;
    }

    .mega-menu-grid a {
        background: var(--light);
    }

    .mobile-contact {
        display: grid;
        gap: 10px;
        margin-top: 25px;
    }

    .mobile-contact a {
        padding: 14px;
        border-radius: 8px;
        background: var(--dark);
        color: var(--white);
        text-align: center;
        font-weight: 800;
    }

    .mobile-contact a:last-child {
        background: var(--green);
    }


    .mobile-overlay.active {
        display: block;
    }

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

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

}


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

@media (max-width: 768px) {

    .container {
        width: min(
            calc(100% - 30px),
            var(--container)
        );
    }

    .section,
    .reviews-section,
    .faq-section,
    .contact-section {
        padding: 70px 0;
    }

    .inner-hero {
        min-height: 620px;
    }

    .inner-hero-content {
        padding: 75px 0;
    }

    .inner-hero h1 {
        font-size: 44px;
    }

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

    .two-column,
    .route-grid,
    .contact-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-image img,
    .route-image img {
        min-height: auto;
    }

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

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

    .contact-form {
        padding: 28px 20px;
    }

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

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

    .footer-cta-buttons {
        width: 100%;
    }

    .footer-call-button,
    .footer-whatsapp-button {
        flex: 1;
    }

}


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

@media (max-width: 480px) {

    .logo img {
        width: 160px;
    }

    .inner-hero h1 {
        font-size: 37px;
    }

    .breadcrumb {
        font-size: 12px;
    }

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

    .button {
        width: 100%;
    }

    .footer-cta-buttons {
        flex-direction: column;
    }

    .footer-call-button,
    .footer-whatsapp-button {
        width: 100%;
    }

    .floating-whatsapp {
        right: 15px;
        bottom: 15px;
        width: 54px;
        height: 54px;
    }

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

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 10px 18px 10px 10px;

    background: #25d366;
    color: #ffffff;

    border-radius: 999px;

    text-decoration: none;

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

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;

    -webkit-tap-highlight-color: transparent;
}


/* WHATSAPP ICON */

.whatsapp-icon {
    width: 48px;
    height: 48px;

    min-width: 48px;

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

    background: #ffffff;

    border-radius: 50%;
}


.whatsapp-icon svg {
    width: 28px;
    height: 28px;

    fill: #25d366;
}


/* TEXT AREA */

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

    line-height: 1.2;

    white-space: nowrap;
}


.whatsapp-content strong {
    font-size: 14px;
    font-weight: 700;

    color: #ffffff;
}


.whatsapp-content small {
    margin-top: 3px;

    font-size: 11px;

    color: rgba(255, 255, 255, 0.88);
}


/* HOVER */

.floating-whatsapp:hover {
    transform: translateY(-4px);

    background: #1ebe5d;

    box-shadow:
        0 16px 35px rgba(37, 211, 102, 0.38);
}


/* ACTIVE */

.floating-whatsapp:active {
    transform: translateY(-1px) scale(0.97);
}


/* KEYBOARD ACCESSIBILITY */

.floating-whatsapp:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.9);
    outline-offset: 3px;
}


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

@media (max-width: 768px) {

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;

        padding: 9px 14px 9px 9px;

        gap: 9px;

        max-width: calc(100vw - 32px);
    }


    .whatsapp-icon {
        width: 46px;
        height: 46px;

        min-width: 46px;
    }


    .whatsapp-icon svg {
        width: 26px;
        height: 26px;
    }


    .whatsapp-content strong {
        font-size: 13px;
    }


    .whatsapp-content small {
        font-size: 10px;
    }

}


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

@media (max-width: 480px) {

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;

        padding: 8px;

        width: 54px;
        height: 54px;

        justify-content: center;

        border-radius: 50%;
    }


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

        min-width: 42px;
    }


    .whatsapp-icon svg {
        width: 25px;
        height: 25px;
    }


    .whatsapp-content {
        display: none;
    }

}


/* =========================================
   SAFE AREA - IPHONE VE YENİ MOBİLLER
========================================= */

@supports (padding: max(0px)) {

    .floating-whatsapp {
        right: max(16px, env(safe-area-inset-right));

        bottom: max(16px, env(safe-area-inset-bottom));
    }

}