:root {
    --primary: #c9151d;
    --primary-dark: #a90f16;
    --dark: #071b31;
    --dark-2: #0d2947;
    --text: #1b2a3a;
    --muted: #687686;
    --light: #f5f7fa;
    --white: #ffffff;
    --border: #e3e8ee;
    --whatsapp: #20b957;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: #ffffff;
}

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

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

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

button {
    cursor: pointer;
}

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


/* TOP BAR */

.top-bar {
    background: var(--dark);
    color: #ffffff;
    font-size: 12px;
}

.top-bar-content {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar-left {
    display: flex;
    gap: 25px;
}

.top-bar a:hover {
    color: #ffffff;
}


/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #ffffff;
    box-shadow: 0 3px 20px rgba(0,0,0,.07);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 185px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: var(--primary);
    color: #ffffff;
    border-radius: 50%;
    font-size: 22px;
}

.logo-text {
    line-height: 1;
    font-size: 24px;
}

.logo-text strong {
    color: var(--dark);
}

.logo-text > span {
    color: var(--primary);
    font-weight: bold;
}

.logo-text small {
    display: block;
    margin-top: 5px;
    font-size: 7px;
    letter-spacing: .8px;
    color: #718091;
}

.desktop-menu {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
}

.desktop-menu > a,
.mega-menu-button {
    border: 0;
    background: none;
    font-size: 11px;
    font-weight: bold;
    color: var(--text);
}

.desktop-menu > a:hover,
.mega-menu-button:hover {
    color: var(--primary);
}


/* MEGA MENU */

.mega-menu-wrapper {
    position: relative;
}

.mega-menu {
    display: none;
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    padding: 24px;
    background: #ffffff;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
}

.mega-menu.show {
    display: block;
}

.mega-menu-title {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.mega-menu-title strong,
.mega-menu-title span {
    display: block;
}

.mega-menu-title strong {
    color: var(--dark);
    font-size: 15px;
}

.mega-menu-title span {
    margin-top: 5px;
    font-size: 12px;
    color: var(--muted);
}

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

.mega-menu-grid a {
    padding: 9px;
    font-size: 12px;
    border-radius: 5px;
}

.mega-menu-grid a:hover {
    background: #f5f7fa;
    color: var(--primary);
}


/* WHATSAPP HEADER */

.header-whatsapp {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--whatsapp);
    color: #ffffff;
    border-radius: 9px;
}

.whatsapp-icon {
    font-size: 22px;
}

.header-whatsapp small,
.header-whatsapp strong {
    display: block;
}

.header-whatsapp small {
    font-size: 9px;
}

.header-whatsapp strong {
    font-size: 11px;
}


/* MOBILE MENU */

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 42px;
    border: 0;
    background: var(--primary);
    border-radius: 7px;
}

.mobile-menu-button span {
    display: block;
    width: 21px;
    height: 2px;
    margin: 5px auto;
    background: #ffffff;
}

.mobile-menu {
    display: none;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu-content {
    padding: 10px 4% 25px;
    border-top: 1px solid var(--border);
}

.mobile-menu-content > a,
.mobile-dropdown-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border: 0;
    border-bottom: 1px solid var(--border);
    background: none;
    text-align: left;
    font-weight: bold;
    font-size: 13px;
}

.mobile-dropdown {
    display: none;
    background: #f6f8fa;
    padding: 8px 15px;
}

.mobile-dropdown.open {
    display: grid;
}

.mobile-dropdown a {
    padding: 10px 0;
    font-size: 12px;
    border-bottom: 1px solid #e5e9ee;
}

.mobile-call {
    margin-top: 20px;
    padding: 14px !important;
    display: block !important;
    text-align: center;
    background: var(--primary);
    color: #ffffff;
    border-radius: 7px;
}


/* HERO SLIDER */

.hero-slider {
    position: relative;
    height: 780px;
    overflow: hidden;
    background: var(--dark);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .7s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(5,20,38,.92) 0%,
            rgba(5,20,38,.70) 45%,
            rgba(5,20,38,.20) 100%
        );
}

.slide-content {
    position: relative;
    z-index: 2;
    padding-top: 125px;
    color: #ffffff;
}

.slide-kicker {
    display: inline-block;
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
}

.slide h1,
.slide h2 {
    max-width: 700px;
    margin: 0 0 20px;
    font-size: 50px;
    line-height: 1.13;
}

.slide-content p {
    max-width: 780px;
    line-height: 1.8;
    font-size: 16px;
    color: #edf2f7;
}

.slide-buttons {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.button {
    padding: 15px 23px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: bold;
}

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

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

.button-light {
    border: 1px solid #ffffff;
    color: #ffffff;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 48px;
    height: 48px;
    transform: translateY(-50%);
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 50%;
    background: rgba(0,0,0,.2);
    color: #ffffff;
    font-size: 32px;
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    z-index: 5;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.slider-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
}

.slider-dots button.active {
    background: var(--primary);
}


/* QUICK SERVICES */

.quick-services {
    background: #ffffff;
    box-shadow: 0 4px 25px rgba(0,0,0,.07);
}

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

.quick-services-grid > div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 25px;
    border-right: 1px solid var(--border);
}

.quick-services-grid > div:last-child {
    border-right: 0;
}

.quick-services-grid > div > span {
    font-size: 25px;
    color: var(--primary);
}

.quick-services-grid strong,
.quick-services-grid small {
    display: block;
}

.quick-services-grid strong {
    font-size: 13px;
}

.quick-services-grid small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 11px;
}


/* GENERAL SECTION */

.section {
    padding: 85px 0;
}

.section-heading {
    max-width: 780px;
    margin: 0 auto 45px;
    text-align: center;
}

.section-heading > span,
.section-kicker {
    color: var(--primary);
    font-size: 12px;
    font-weight: bold;
    letter-spacing: .8px;
}

.section-heading h2,
.contact-information h2,
.why-content h2,
.faq-content h2 {
    font-size: 34px;
    line-height: 1.25;
}

.section-heading p {
    color: var(--muted);
    line-height: 1.8;
}


/* SERVICE CARDS */

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

.service-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 40px rgba(0,0,0,.1);
}

.service-image {
    height: 180px;
    background: #e8edf2;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-icon {
    width: 52px;
    height: 52px;
    margin: -26px 20px 0;
    position: relative;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    font-size: 22px;
}

.service-content {
    padding: 18px 20px 25px;
}

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

.service-content p {
    min-height: 70px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.service-content a {
    color: var(--primary);
    font-size: 12px;
    font-weight: bold;
}


/* WHY SECTION */

.why-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--dark);
    color: #ffffff;
}

.why-image {
    min-height: 600px;
    background: #0e2945;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-content {
    padding: 80px 9%;
}

.why-content p {
    color: #c2ceda;
    line-height: 1.8;
}

.why-list {
    margin-top: 30px;
    display: grid;
    gap: 20px;
}

.why-list > div {
    display: flex;
    gap: 15px;
}

.why-list > div > span {
    min-width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary);
}

.why-list h3 {
    margin: 0 0 7px;
    font-size: 15px;
}

.why-list p {
    margin: 0;
    font-size: 12px;
}


/* CITIES */

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

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

.cities-grid a {
    padding: 17px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #ffffff;
    font-size: 13px;
    font-weight: bold;
}

.cities-grid a::before {
    content: "✈";
    margin-right: 8px;
    color: var(--primary);
}

.cities-grid a:hover {
    background: var(--primary);
    color: #ffffff;
}

.cities-grid a:hover::before {
    color: #ffffff;
}


/* CONTACT */

.contact-section {
    padding: 90px 0;
    background:
        linear-gradient(
            135deg,
            #f5f8fb,
            #ffffff
        );
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.contact-information > p {
    color: var(--muted);
    line-height: 1.9;
}

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

.contact-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #ffffff;
}

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

.contact-box-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--dark);
    color: #ffffff;
}

.whatsapp-box .contact-box-icon {
    background: var(--whatsapp);
}

.contact-box strong,
.contact-box span {
    display: block;
}

.contact-box strong {
    font-size: 12px;
}

.contact-box span {
    margin-top: 5px;
    font-size: 12px;
    color: var(--muted);
}


/* FORM */

.contact-form-wrapper {
    padding: 35px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 25px 60px rgba(5,20,38,.12);
}

.form-header {
    display: flex;
    gap: 15px;
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--border);
}

.form-plane {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: var(--dark);
    color: #ffffff;
    font-size: 25px;
}

.form-header h3 {
    margin: 5px 0;
}

.form-header p {
    margin: 0;
    font-size: 12px;
    color: var(--muted);
}

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

.contact-form label {
    display: grid;
    gap: 7px;
    font-size: 12px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 13px;
    border: 1px solid #d8e1e9;
    border-radius: 8px;
    background: #ffffff;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: 2px solid rgba(201,21,29,.15);
    border-color: var(--primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.whatsapp-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    border: 0;
    border-radius: 9px;
    background: var(--whatsapp);
    color: #ffffff;
    font-weight: bold;
}

.whatsapp-submit span {
    font-size: 20px;
}

.whatsapp-submit b {
    margin-left: 5px;
}

.form-security {
    margin: 0;
    text-align: center;
    font-size: 10px;
    color: var(--muted);
}


/* FAQ */

.faq-section {
    background: #f7f8fa;
}

.faq-container {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 50px;
    align-items: center;
}

.faq-item {
    margin-bottom: 10px;
    border: 1px solid var(--border);
    background: #ffffff;
}

.faq-item button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 18px;
    border: 0;
    background: none;
    text-align: left;
    font-size: 13px;
    font-weight: bold;
}

.faq-item button span {
    color: var(--primary);
    font-size: 18px;
}

.faq-answer {
    display: none;
    padding: 0 18px 18px;
}

.faq-answer p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-visual {
    min-height: 430px;
    background: #e7ecf1;
}

.faq-visual img {
    width: 100%;
    height: 430px;
    object-fit: cover;
}


/* CTA */

.bottom-cta {
    padding: 25px 0;
    background: var(--primary);
    color: #ffffff;
}

.bottom-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.bottom-cta-content > div:first-child {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bottom-cta-content > div:first-child > span {
    font-size: 35px;
}

.bottom-cta strong,
.bottom-cta p {
    display: block;
}

.bottom-cta p {
    margin: 5px 0 0;
    font-size: 12px;
}

.bottom-cta-buttons {
    display: flex;
    gap: 10px;
}

.bottom-cta-buttons a {
    padding: 14px 18px;
    border-radius: 8px;
    background: #ffffff;
    color: var(--primary);
    font-size: 12px;
    font-weight: bold;
}

.bottom-cta-buttons a:last-child {
    background: var(--whatsapp);
    color: #ffffff;
}


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

.site-footer {
    margin: 0;
    padding: 0;
    background: #071b31;
    color: #b9c7d5;
}


/* FOOTER CTA */

.footer-cta {
    background:
        linear-gradient(
            135deg,
            #c9151d,
            #9f1017
        );
}

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

.footer-cta-text {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #ffffff;
}

.footer-cta-icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
    font-size: 27px;
}

.footer-cta-text strong {
    display: block;
    font-size: 20px;
}

.footer-cta-text p {
    margin: 7px 0 0;
    font-size: 13px;
    color: rgba(255,255,255,.85);
}

.footer-cta-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.footer-call-button,
.footer-whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    transition: .25s ease;
}

.footer-call-button {
    background: #ffffff;
    color: #071b31;
}

.footer-whatsapp-button {
    background: #20b957;
    color: #ffffff;
}

.footer-call-button:hover,
.footer-whatsapp-button:hover {
    transform: translateY(-3px);
}


/* MAIN FOOTER */

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

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

.footer-brand {
    padding-right: 15px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
}

.footer-logo img {
    display: block;
    width: 220px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-brand > p {
    margin: 22px 0;
    max-width: 330px;
    color: #9cadbc;
    font-size: 13px;
    line-height: 1.9;
}


/* FOOTER CONTACT */

.footer-contact-mini {
    display: grid;
    gap: 12px;
}

.footer-contact-mini > a {
    display: flex;
    align-items: center;
    gap: 11px;
}

.footer-contact-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #102b47;
    color: #ffffff;
}

.footer-contact-mini small,
.footer-contact-mini strong {
    display: block;
}

.footer-contact-mini small {
    margin-bottom: 3px;
    color: #7f91a1;
    font-size: 10px;
}

.footer-contact-mini strong {
    color: #ffffff;
    font-size: 12px;
}


/* FOOTER COLUMNS */

.footer-column h3 {
    position: relative;
    margin: 8px 0 22px;
    padding-bottom: 13px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 2px;
    background: #c9151d;
}

.footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column li {
    margin-bottom: 11px;
}

.footer-column a {
    position: relative;
    display: inline-block;
    padding-left: 13px;
    color: #9cadbc;
    font-size: 12px;
    line-height: 1.5;
    transition: .2s ease;
}

.footer-column a::before {
    content: "›";
    position: absolute;
    left: 0;
    color: #c9151d;
    font-size: 16px;
    line-height: 16px;
}

.footer-column a:hover {
    padding-left: 17px;
    color: #ffffff;
}


/* SEO TEXT */

.footer-seo {
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: #06172a;
}

.footer-seo p {
    max-width: 1000px;
    margin: 0 auto;
    padding: 23px 0;
    color: #8496a6;
    font-size: 11px;
    line-height: 1.9;
    text-align: center;
}

.footer-seo a {
    color: #d2dae1;
}

.footer-seo a:hover {
    color: #ffffff;
}


/* FOOTER BOTTOM */

.footer-bottom {
    background: #051421;
}

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

.footer-copyright {
    color: #718393;
    font-size: 11px;
}

.footer-copyright a {
    color: #ffffff;
    font-weight: 700;
}

.footer-copyright span {
    margin-left: 5px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-bottom-links a {
    color: #8293a2;
    font-size: 11px;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}


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

@media (max-width: 1100px) {

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

    .footer-brand {
        grid-column: span 3;
        padding-right: 0;
    }

    .footer-brand > p {
        max-width: 650px;
    }

    .footer-cta-content {
        padding: 25px 0;
        flex-direction: column;
        align-items: flex-start;
    }

}


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

@media (max-width: 700px) {

    .footer-main {
        padding: 50px 0 25px;
    }

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

    .footer-brand {
        grid-column: span 2;
    }

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

    .footer-cta-text {
        align-items: flex-start;
    }

    .footer-cta-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .footer-cta-text strong {
        font-size: 17px;
        line-height: 1.4;
    }

    .footer-cta-text p {
        font-size: 12px;
        line-height: 1.6;
    }

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

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

    .footer-bottom-content {
        min-height: auto;
        padding: 20px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        gap: 10px 18px;
    }

}


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

@media (max-width: 450px) {

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

    .footer-brand {
        grid-column: span 1;
    }

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

    .footer-column h3 {
        margin-top: 0;
    }

}
/* FIXED WHATSAPP */

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 998;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px 10px 10px;
    border-radius: 14px;
    background: var(--whatsapp);
    color: #ffffff;
    box-shadow: 0 12px 35px rgba(0,0,0,.25);
}

.floating-whatsapp-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #ffffff;
    color: var(--whatsapp);
    font-size: 22px;
}

.floating-whatsapp strong,
.floating-whatsapp span {
    display: block;
}

.floating-whatsapp strong {
    font-size: 12px;
}

.floating-whatsapp span {
    margin-top: 3px;
    font-size: 10px;
}


/* TABLET */

@media (max-width: 1000px) {

    .desktop-menu,
    .header-whatsapp {
        display: none;
    }

    .mobile-menu-button {
        display: block;
        margin-left: auto;
    }

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

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

    .why-image {
        min-height: 400px;
    }

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

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

}


/* MOBILE */

@media (max-width: 650px) {

    .top-bar-content {
        justify-content: center;
    }

    .top-bar-right,
    .top-bar-left a:nth-child(2) {
        display: none;
    }

    .header-container {
        min-height: 70px;
    }

    .logo {
        min-width: auto;
    }

    .logo-text {
        font-size: 20px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .hero-slider {
        height: 580px;
    }

    .slide-content {
        padding-top: 100px;
    }

    .slide h1,
    .slide h2 {
        font-size: 34px;
    }

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

    .slider-arrow {
        display: none;
    }

    .slide-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .quick-services-grid > div {
        padding: 18px 10px;
        border-bottom: 1px solid var(--border);
    }

    .section {
        padding: 60px 0;
    }

    .section-heading h2,
    .contact-information h2,
    .why-content h2,
    .faq-content h2 {
        font-size: 27px;
    }

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

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

    .why-content {
        padding: 55px 7%;
    }

    .why-image {
        min-height: 280px;
    }

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

    .contact-form-wrapper {
        padding: 22px;
    }

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

    .faq-visual,
    .faq-visual img {
        min-height: 260px;
        height: 260px;
    }

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

    .bottom-cta-buttons {
        width: 100%;
        flex-direction: column;
    }

    .bottom-cta-buttons a {
        text-align: center;
    }

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

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

    .floating-whatsapp {
        right: 12px;
        bottom: 12px;
        padding: 8px 12px 8px 8px;
    }

}
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    display: block;
    width: 220px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Mobil */
@media (max-width: 650px) {

    .logo img {
        width: 170px;
    }

}
.slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.slider-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
}

.slider-dots button.active {
    width: 28px;
    border-radius: 20px;
}
a:focus-visible,
button:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 4px;
}
main a:focus-visible,
.light-section a:focus-visible,
.contact-section a:focus-visible {
    outline: 3px solid #071b31;
    outline-offset: 4px;
}
a:not(.btn):not(.button) {
    text-decoration: underline;
    text-underline-offset: 3px;
}

a:not(.btn):not(.button):hover,
a:not(.btn):not(.button):focus-visible {
    text-decoration-thickness: 2px;
}

a:focus-visible {
    outline: 3px solid currentColor;
    outline-offset: 3px;
}.nav-menu a,
.mega-menu a,
.mobile-menu a {
    position: relative;
}

.nav-menu a::after,
.mega-menu a::after,
.mobile-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after,
.mega-menu a:hover::after,
.mega-menu a:focus-visible::after,
.mobile-menu a:hover::after,
.mobile-menu a:focus-visible::after {
    transform: scaleX(1);
}
.nav-menu a,
.mega-menu a,
.mobile-menu a {
    position: relative;
}

.nav-menu a::after,
.mega-menu a::after,
.mobile-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after,
.mega-menu a:hover::after,
.mega-menu a:focus-visible::after,
.mobile-menu a:hover::after,
.mobile-menu a:focus-visible::after {
    transform: scaleX(1);
}
.footer-column a,
.footer-bottom-links a {
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.footer-column a:hover,
.footer-bottom-links a:hover {
    text-decoration-thickness: 2px;
}