:root {

    --primary: #d71920;
    --primary-dark: #a90e14;
    --dark: #07111f;
    --dark-soft: #0e2035;
    --text: #263342;
    --muted: #66758a;
    --light: #f5f7fa;
    --white: #ffffff;
    --border: #e5eaf0;
    --container: 1240px;

}


/* RESET */

* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;

}


body.mugla-menu-open {

    overflow: hidden;

}


a {

    text-decoration: none;
    color: inherit;

}


img {

    max-width: 100%;
    display: block;

}


button {

    font: inherit;

}


.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin: 0 auto;

}


/* SKIP */

.mugla-skip-link {

    position: fixed;
    top: -100px;
    left: 20px;
    z-index: 99999;

    background: var(--primary);
    color: #fff;

    padding: 12px 18px;
    border-radius: 8px;

}


.mugla-skip-link:focus {

    top: 20px;

}


/* HEADER */

.site-header {

    position: relative;
    z-index: 5000;

}


.header-top {

    background: var(--dark);
    color: rgba(255,255,255,.72);

    font-size: 13px;

}


.header-top-inner {

    min-height: 42px;

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

    gap: 20px;

}


.header-top-links {

    display: flex;
    gap: 20px;

}


.header-top-links a:hover {

    color: #fff;

}


.header-inner {

    min-height: 84px;

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

    gap: 30px;

}


.logo img {

    width: 190px;
    height: auto;

}


/* NAV */

.main-nav {

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

}


.main-nav > a,
.mega-trigger {

    font-size: 14px;
    font-weight: 700;
    color: #263342;

}


.main-nav > a:not(.nav-button) {

    position: relative;

}


.main-nav > a:not(.nav-button)::after {

    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--primary);

    transition: .25s;

}


.main-nav > a:hover::after {

    width: 100%;

}


.nav-button {

    background: var(--primary);
    color: #fff !important;

    padding: 11px 18px;

    border-radius: 8px;

}


.nav-button:hover {

    background: var(--primary-dark);

}


/* MEGA MENU */

.mega-item {

    position: relative;

}


.mega-trigger {

    border: 0;
    background: transparent;

    cursor: pointer;

    display: flex;
    align-items: center;

    gap: 6px;

}


.mega-trigger span {

    font-size: 18px;

}


.mega-menu {

    position: absolute;

    top: 42px;
    left: -250px;

    width: 900px;

    display: grid;

    grid-template-columns: 280px 1fr;

    gap: 30px;

    padding: 25px;

    background: #fff;

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

    border-radius: 18px;

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

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition: .25s;

}


.mega-item:hover .mega-menu,
.mega-item.is-open .mega-menu {

    opacity: 1;
    visibility: visible;

    transform: translateY(0);

}


.mega-feature {

    padding: 28px;

    border-radius: 14px;

    color: #fff;

    background:
        linear-gradient(
            145deg,
            #07111f,
            #18385a
        );

}


.mega-icon {

    display: flex;

    width: 54px;
    height: 54px;

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

    border-radius: 12px;

    background:
        rgba(255,255,255,.12);

    font-size: 25px;

    margin-bottom: 18px;

}


.mega-feature small {

    color: #ffb5b8;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

}


.mega-feature h2 {

    font-size: 22px;

    line-height: 1.3;

    margin: 12px 0;

}


.mega-feature p {

    font-size: 13px;

    color:
        rgba(255,255,255,.7);

    margin-bottom: 20px;

}


.mega-feature a {

    font-weight: 800;

    color: #fff;

    font-size: 13px;

}


.mega-content {

    display: grid;

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

    gap: 25px;

}


.mega-column h3 {

    font-size: 15px;

    margin-bottom: 15px;

}


.mega-column a {

    display: block;

    font-size: 13px;

    color: var(--muted);

    margin-bottom: 9px;

}


.mega-column a:hover {

    color: var(--primary);

}


/* MOBILE MENU */

.mobile-menu-toggle {

    display: none;

    width: 48px;
    height: 44px;

    background: #fff;

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

    border-radius: 8px;

    padding: 9px;

    cursor: pointer;

}


.mobile-menu-toggle span {

    display: block;

    width: 100%;
    height: 2px;

    background: var(--dark);

    margin: 5px 0;

    transition: .25s;

}


/* HERO */

.mugla-hero {

    min-height: 680px;

    position: relative;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: var(--dark);

}


.mugla-hero > img {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4,12,22,.94) 0%,
            rgba(5,17,30,.82) 48%,
            rgba(5,17,30,.35) 100%
        );

}


.hero-content {

    position: relative;

    z-index: 2;

    color: #fff;

    padding: 100px 0;

}


.breadcrumb {

    display: flex;

    flex-wrap: wrap;

    gap: 9px;

    align-items: center;

    font-size: 12px;

    color:
        rgba(255,255,255,.72);

    margin-bottom: 25px;

}


.section-kicker {

    display: inline-block;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 1.5px;

    color: var(--primary);

    margin-bottom: 14px;

}


.hero-kicker {

    color: #ffb6b8;

}


.hero-content h1 {

    max-width: 800px;

    font-size:
        clamp(44px,6vw,76px);

    line-height: 1.08;

    letter-spacing: -2px;

    margin-bottom: 20px;

}


.hero-content > p {

    max-width: 720px;

    font-size: 18px;

    color:
        rgba(255,255,255,.82);

}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;

}


.button {

    min-height: 54px;

    padding: 0 25px;

    display: inline-flex;

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

    border-radius: 9px;

    font-size: 14px;

    font-weight: 800;

    transition: .25s;

}


.button:hover {

    transform: translateY(-2px);

}


.button-primary {

    background: var(--primary);

    color: #fff;

}


.button-primary:hover {

    background: var(--primary-dark);

}


.button-light {

    background: #fff;

    color: var(--dark);

}


.button-dark {

    background: var(--dark);

    color: #fff;

}


.hero-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 28px;

}


.hero-tags span {

    padding: 8px 14px;

    border-radius: 30px;

    border:
        1px solid rgba(255,255,255,.22);

    background:
        rgba(255,255,255,.08);

    font-size: 12px;

}


/* GENERAL */

.section {

    padding: 105px 0;

}


.section-heading {

    max-width: 800px;

    margin-bottom: 50px;

}


.section-heading.center {

    text-align: center;

    margin-left: auto;
    margin-right: auto;

}


.section-heading h2 {

    color: var(--dark);

    font-size:
        clamp(30px,4vw,48px);

    line-height: 1.2;

    letter-spacing: -1px;

    margin-bottom: 15px;

}


.section-heading p {

    color: var(--muted);

}


.light-heading h2,
.light-heading p {

    color: #fff;

}


.light-heading .section-kicker {

    color: #ffb6b8;

}


/* INTRO */

.mugla-intro {

    background: #fff;

}


.intro-grid {

    display: grid;

    grid-template-columns:
        1.15fr .85fr;

    gap: 65px;

    align-items: center;

}


.intro-content h2 {

    font-size:
        clamp(30px,4vw,47px);

    line-height: 1.2;

    color: var(--dark);

    margin-bottom: 20px;

}


.intro-content > p {

    color: var(--muted);

    margin-bottom: 15px;

}


.intro-image {

    min-height: 560px;

    overflow: hidden;

    border-radius: 20px;

    box-shadow:
        0 20px 55px rgba(0,0,0,.12);

}


.intro-image img {

    width: 100%;
    height: 100%;

    min-height: 560px;

    object-fit: cover;

}


.mugla-feature-list {

    margin-top: 30px;

    display: grid;

    gap: 14px;

}


.mugla-feature-list > div {

    display: flex;

    gap: 18px;

    padding: 18px;

    background: var(--light);

    border-radius: 12px;

}


.mugla-feature-list strong {

    color: var(--primary);

    font-size: 16px;

}


.mugla-feature-list p {

    font-size: 14px;

    color: var(--muted);

}


.mugla-feature-list b {

    display: block;

    color: var(--dark);

}


/* DESTINATIONS */

.destinations-section {

    background: var(--light);

}


.destination-grid {

    display: grid;

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

    gap: 20px;

}


.destination-card {

    background: #fff;

    padding: 30px;

    border-radius: 16px;

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

    transition: .25s;

}


.destination-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 18px 40px rgba(0,0,0,.08);

}


.destination-card span {

    color: var(--primary);

    font-weight: 900;

    font-size: 14px;

}


.destination-card h3 {

    font-size: 19px;

    margin: 22px 0 10px;

}


.destination-card p {

    color: var(--muted);

    font-size: 14px;

}


/* SERVICES */

.services-section {

    background:
        radial-gradient(
            circle at top right,
            #263e59,
            transparent 35%
        ),
        var(--dark);

}


.service-grid {

    display: grid;

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

    gap: 20px;

}


.service-card {

    padding: 30px;

    border-radius: 16px;

    background:
        rgba(255,255,255,.06);

    border:
        1px solid rgba(255,255,255,.08);

    color: #fff;

    transition: .25s;

}


.service-card:hover {

    transform: translateY(-6px);

    background:
        rgba(255,255,255,.1);

}


.service-icon {

    width: 52px;
    height: 52px;

    display: flex;

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

    background:
        rgba(215,25,32,.2);

    border-radius: 12px;

    font-size: 23px;

    margin-bottom: 20px;

}


.service-card h3 {

    margin-bottom: 10px;

    font-size: 19px;

}


.service-card p {

    color:
        rgba(255,255,255,.65);

    font-size: 14px;

}


/* PROCESS */

.process-section {

    background: #fff;

}


.process-grid {

    display: grid;

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

    gap: 20px;

}


.process-grid article {

    padding: 30px;

    border-radius: 15px;

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

}


.process-grid span {

    display: block;

    color: var(--primary);

    font-size: 13px;

    font-weight: 900;

    margin-bottom: 25px;

}


.process-grid h3 {

    font-size: 19px;

    margin-bottom: 10px;

}


.process-grid p {

    color: var(--muted);

    font-size: 14px;

}


/* REVIEWS */

.review-section {

    background: var(--light);

}


.review-grid {

    display: grid;

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

    gap: 20px;

}


.review-card {

    background: #fff;

    padding: 26px;

    border-radius: 16px;

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

    transition: .25s;

}


.review-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 18px 45px rgba(0,0,0,.08);

}


.review-header {

    display: flex;

    align-items: center;

    gap: 12px;

}


.review-avatar {

    width: 48px;
    height: 48px;

    display: flex;

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

    border-radius: 50%;

    background: #fff0f1;

    color: var(--primary);

    font-weight: 900;

    font-size: 13px;

}


.review-header h3 {

    font-size: 15px;

}


.review-header span {

    font-size: 12px;

    color: var(--muted);

}


.stars {

    color: #f5a623;

    letter-spacing: 2px;

    margin: 20px 0 14px;

}


.review-card p {

    color: var(--muted);

    font-size: 14px;

    line-height: 1.75;

}


/* FAQ */

.faq-section {

    background: #fff;

}


.faq-container {

    max-width: 950px;

}


.faq-container details {

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

    border-radius: 12px;

    padding: 0 22px;

    margin-bottom: 12px;

}


.faq-container summary {

    position: relative;

    cursor: pointer;

    list-style: none;

    padding: 21px 30px 21px 0;

    font-size: 15px;

    font-weight: 800;

}


.faq-container summary::-webkit-details-marker {

    display: none;

}


.faq-container summary::after {

    content: "+";

    position: absolute;

    right: 0;

    color: var(--primary);

    font-size: 23px;

}


.faq-container details[open]
summary::after {

    content: "−";

}


.faq-container details p {

    color: var(--muted);

    font-size: 14px;

    padding-bottom: 20px;

}


/* CONTACT */

.contact-section {

    padding: 80px 0;

    background: var(--primary);

    color: #fff;

}


.contact-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

}


.contact-section .section-kicker {

    color:
        rgba(255,255,255,.72);

}


.contact-section h2 {

    font-size:
        clamp(30px,4vw,46px);

    line-height: 1.2;

    margin-bottom: 15px;

}


.contact-section p {

    max-width: 700px;

    color:
        rgba(255,255,255,.8);

}


.contact-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

}


/* FOOTER */

.site-footer {

    background: #050c16;

    color: #fff;

    padding-top: 75px;

}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.4fr 1fr 1.2fr 1fr;

    gap: 45px;

    padding-bottom: 60px;

}


.footer-logo img {

    width: 180px;

    margin-bottom: 20px;

}


.footer-about p {

    max-width: 340px;

    color:
        rgba(255,255,255,.6);

    font-size: 14px;

}


.footer-grid h3 {

    font-size: 16px;

    margin-bottom: 20px;

}


.footer-grid > div:not(.footer-about) {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 10px;

}


.footer-grid a:not(.footer-logo) {

    color:
        rgba(255,255,255,.6);

    font-size: 13px;

}


.footer-grid a:not(.footer-logo):hover {

    color: #fff;

}


.footer-bottom {

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

    padding: 22px 0;

    font-size: 12px;

    color:
        rgba(255,255,255,.45);

}


/* FLOATING */

.floating-whatsapp {

    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 3000;

    background: #1fad5b;

    color: #fff;

    padding: 15px 22px;

    border-radius: 50px;

    font-size: 13px;

    font-weight: 800;

    box-shadow:
        0 15px 35px rgba(31,173,91,.35);

    transition: .25s;

}


.floating-whatsapp:hover {

    transform: translateY(-3px);

}


/* RESPONSIVE */

@media (max-width: 1100px) {

    .main-nav {

        gap: 15px;

    }


    .destination-grid,
    .service-grid {

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

    }


    .review-grid {

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

    }


    .mega-menu {

        left: -350px;

    }

}


@media (max-width: 900px) {

    .header-top {

        display: none;

    }


    .header-inner {

        min-height: 76px;

    }


    .mobile-menu-toggle {

        display: block;

    }


    .main-nav {

        position: fixed;

        top: 76px;
        left: 0;
        right: 0;
        bottom: 0;

        background: #fff;

        padding: 25px 20px 100px;

        overflow-y: auto;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        opacity: 0;

        visibility: hidden;

        transform: translateX(100%);

        transition: .3s;

    }


    .main-nav.is-open {

        opacity: 1;

        visibility: visible;

        transform: translateX(0);

    }


    .main-nav > a,
    .mega-trigger {

        width: 100%;

        min-height: 55px;

        display: flex;

        align-items: center;

        justify-content: space-between;

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

    }


    .mega-menu {

        position: static;

        width: 100%;

        display: block;

        max-height: 0;

        overflow: hidden;

        padding: 0;

        border: 0;

        box-shadow: none;

        opacity: 1;

        visibility: visible;

        transform: none;

    }


    .mega-item.is-open .mega-menu {

        max-height: 1800px;

        padding: 15px 0;

    }


    .mega-feature {

        margin-bottom: 20px;

    }


    .mega-content {

        grid-template-columns:
            1fr;

    }


    .nav-button {

        margin-top: 20px;

        justify-content: center !important;

        border: 0 !important;

    }


    .intro-grid {

        grid-template-columns: 1fr;

    }


    .intro-image {

        min-height: 420px;

    }


    .process-grid {

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

    }


    .contact-inner {

        flex-direction: column;

        align-items: flex-start;

    }


    .footer-grid {

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

    }

}


@media (max-width: 600px) {

    .container {

        width:
            min(calc(100% - 28px), var(--container));

    }


    .section {

        padding: 75px 0;

    }


    .hero-content {

        padding: 75px 0;

    }


    .mugla-hero {

        min-height: 620px;

    }


    .hero-content h1 {

        font-size: 42px;

    }


    .hero-content > p {

        font-size: 16px;

    }


    .destination-grid,
    .service-grid,
    .process-grid,
    .review-grid {

        grid-template-columns: 1fr;

    }


    .hero-buttons,
    .contact-buttons {

        width: 100%;

        flex-direction: column;

    }


    .button {

        width: 100%;

    }


    .footer-grid {

        grid-template-columns: 1fr;

    }


    .floating-whatsapp {

        right: 14px;
        bottom: 14px;

        font-size: 12px;

    }

}