/* =====================================================
   WANDERLY - GLOBAL CSS
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: #17211b;
    background: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    border: none;
    cursor: pointer;
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* =====================================================
   NAVBAR
===================================================== */

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* Logo */

.logo {
    font-family: "Playfair Display", serif;
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -1px;
}

.logo span {
    color: #d9f36a;
}


/* Desktop Menu */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    position: relative;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #d9f36a;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: #d9f36a;
    transition: 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}


/* Navbar Button */

.nav-btn {
    padding: 12px 21px;
    border-radius: 50px;
    background: #d9f36a;
    color: #17211b;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s ease;
}

.nav-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
}


/* =====================================================
   MOBILE MENU BUTTON
===================================================== */

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #17211b;
    transition: 0.3s ease;
}


/* =====================================================
   MOBILE MENU
===================================================== */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(330px, 85%);
    height: 100vh;
    background: #ffffff;
    z-index: 999;
    padding: 110px 35px 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    transition: 0.4s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    color: #17211b;
    font-size: 18px;
    font-weight: 600;
}

.mobile-menu a:hover {
    color: #6f8718;
}

.mobile-book-btn {
    margin-top: 15px;
    padding: 14px 20px;
    text-align: center;
    border-radius: 50px;
    background: #d9f36a;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;

    background-image: url("https://images.unsplash.com/photo-1524492412937-b28074a5d7da?auto=format&fit=crop&w=2000&q=85");

    background-size: cover;
    background-position: center;
    overflow: hidden;
}


/* Overlay */

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(8, 17, 13, 0.82) 0%,
            rgba(8, 17, 13, 0.58) 45%,
            rgba(8, 17, 13, 0.18) 100%
        );
}


/* Hero Container */

.hero-container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* Hero Content */

.hero-content {
    max-width: 720px;
    padding-top: 80px;
}


/* Tag */

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 15px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    font-size: 13px;
    margin-bottom: 25px;
}

.tag-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d9f36a;
}


/* Heading */

.hero h1 {
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: clamp(58px, 7vw, 96px);
    line-height: 0.98;
    font-weight: 600;
    letter-spacing: -3px;
    max-width: 700px;
}

.hero h1 span {
    color: #d9f36a;
    font-style: italic;
}


/* Description */

.hero-content p {
    max-width: 550px;
    margin-top: 25px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.7;
}


/* Hero Buttons */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 35px;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s ease;
}

.primary-btn {
    background: #d9f36a;
    color: #17211b;
}

.primary-btn span {
    font-size: 18px;
}

.primary-btn:hover {
    background: #ffffff;
    transform: translateY(-3px);
}

.secondary-btn {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.secondary-btn:hover {
    background: #ffffff;
    color: #17211b;
    transform: translateY(-3px);
}


/* =====================================================
   HERO BOTTOM
===================================================== */

.hero-bottom {
    position: absolute;
    bottom: 35px;
    left: 0;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* Location */

.hero-location {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
}

.location-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(8px);
    font-size: 20px;
}

.hero-location small {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    font-size: 11px;
    margin-bottom: 3px;
}

.hero-location strong {
    font-size: 14px;
}


/* Stats */

.hero-stats {
    display: flex;
    align-items: center;
    gap: 45px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat strong {
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: 24px;
}

.stat span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 11px;
}


/* =====================================================
   RESPONSIVE - TABLET
===================================================== */

@media (max-width: 991px) {

    .nav-menu,
    .nav-btn {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: clamp(55px, 9vw, 78px);
    }

    .hero-bottom {
        bottom: 28px;
    }

    .hero-stats {
        gap: 25px;
    }

}


/* =====================================================
   RESPONSIVE - MOBILE
===================================================== */

@media (max-width: 767px) {

    .header {
        padding: 18px 0;
    }

    .logo {
        font-size: 27px;
    }

    .hero {
        min-height: 100svh;
        background-position: 60% center;
    }

    .hero-container {
        min-height: 100svh;
        justify-content: center;
    }

    .hero-content {
        padding-top: 60px;
    }

    .hero-tag {
        font-size: 11px;
        margin-bottom: 18px;
    }

    .hero h1 {
        font-size: clamp(46px, 14vw, 65px);
        letter-spacing: -2px;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-top: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        margin-top: 27px;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
    }

    .hero-bottom {
        position: relative;
        left: auto;
        bottom: auto;
        margin-top: 50px;
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .hero-stats {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }

    .stat strong {
        font-size: 20px;
    }

    .stat span {
        font-size: 10px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 420px) {

    .container {
        width: 90%;
    }

    .hero h1 {
        font-size: 45px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .hero-stats {
        gap: 8px;
    }

    .stat strong {
        font-size: 18px;
    }

}

/* =====================================================
   DESTINATIONS SECTION
===================================================== */

.destinations-section {
    padding: 120px 0;
    background: #f7f7f2;
}


/* Section Heading */

.section-heading {
    margin-bottom: 55px;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6f8718;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.section-label span {
    width: 28px;
    height: 2px;
    background: #6f8718;
}


.heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
}

.heading-row h2 {
    max-width: 620px;
    font-family: "Playfair Display", serif;
    font-size: clamp(45px, 5vw, 70px);
    line-height: 1.05;
    font-weight: 600;
    color: #17211b;
    letter-spacing: -2px;
}

.heading-row h2 em {
    display: block;
    color: #758c22;
    font-weight: 500;
}

.heading-row p {
    max-width: 360px;
    color: #697069;
    font-size: 14px;
    line-height: 1.8;
    padding-bottom: 5px;
}


/* Destination Grid */

.destination-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}


/* Card */

.destination-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 8px 30px rgba(23, 33, 27, 0.05);
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(23, 33, 27, 0.12);
}


/* Image */

.destination-image {
    position: relative;
    height: 310px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: 0.6s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.08);
}


/* Image Gradient */

.destination-image::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 40%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.45),
        transparent
    );
    pointer-events: none;
}


/* Tag */

.destination-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    padding: 7px 13px;
    border-radius: 50px;
    background: #d9f36a;
    color: #17211b;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}


/* Arrow */

.destination-arrow {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 3;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #ffffff;
    color: #17211b;

    font-size: 19px;

    opacity: 0;
    transform: translateY(10px);

    transition: 0.35s ease;
}

.destination-card:hover .destination-arrow {
    opacity: 1;
    transform: translateY(0);
}

.destination-arrow:hover {
    background: #d9f36a;
}


/* Content */

.destination-content {
    padding: 23px 22px 25px;
}


/* Location */

.destination-location {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #7a817b;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 10px;
}

.destination-location span {
    color: #7c9420;
    font-size: 16px;
}


/* Title */

.destination-content h3 {
    font-family: "Playfair Display", serif;
    font-size: 27px;
    color: #17211b;
    font-weight: 600;
    margin-bottom: 10px;
}


/* Description */

.destination-content p {
    color: #727871;
    font-size: 13px;
    line-height: 1.7;
    min-height: 66px;
}


/* Bottom */

.destination-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 17px;
    border-top: 1px solid #eceee8;
}

.destination-bottom > span {
    color: #929891;
    font-size: 11px;
}

.destination-bottom strong {
    color: #17211b;
    font-size: 17px;
    margin-left: 3px;
}


/* Explore Link */

.destination-bottom a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #596b14;
    font-size: 12px;
    font-weight: 700;
    transition: 0.3s ease;
}

.destination-bottom a span {
    font-size: 17px;
    transition: 0.3s ease;
}

.destination-bottom a:hover {
    color: #17211b;
}

.destination-bottom a:hover span {
    transform: translateX(4px);
}


/* View All Button */

.destinations-button {
    display: flex;
    justify-content: center;
    margin-top: 55px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 15px 24px;

    border-radius: 50px;

    background: #17211b;
    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    transition: 0.3s ease;
}

.view-all-btn span {
    font-size: 18px;
}

.view-all-btn:hover {
    background: #758c22;
    transform: translateY(-3px);
}


/* =====================================================
   DESTINATIONS - TABLET
===================================================== */

@media (max-width: 991px) {

    .destinations-section {
        padding: 90px 0;
    }

    .heading-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .heading-row p {
        max-width: 600px;
    }

    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .destination-image {
        height: 280px;
    }

}


/* =====================================================
   DESTINATIONS - MOBILE
===================================================== */

@media (max-width: 767px) {

    .destinations-section {
        padding: 75px 0;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .heading-row {
        gap: 17px;
    }

    .heading-row h2 {
        font-size: 45px;
        letter-spacing: -1.5px;
    }

    .heading-row p {
        font-size: 13px;
        line-height: 1.7;
    }

    .destination-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .destination-image {
        height: 300px;
    }

    .destination-arrow {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 420px) {

    .destinations-section {
        padding: 65px 0;
    }

    .heading-row h2 {
        font-size: 40px;
    }

    .destination-image {
        height: 270px;
    }

    .destination-content h3 {
        font-size: 25px;
    }

}


/* =====================================================
   ACTIVITIES SECTION
===================================================== */

.activities-section {
    padding: 120px 0;
    background: #17211b;
    color: #ffffff;
}


/* Top */

.activities-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 55px;
}

.activities-top .section-label {
    color: #d9f36a;
}

.activities-top .section-label span {
    background: #d9f36a;
}

.activities-top h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(45px, 5vw, 70px);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -2px;
}

.activities-top h2 em {
    color: #d9f36a;
    font-weight: 500;
}

.activities-top > p {
    max-width: 350px;
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    line-height: 1.8;
}


/* Grid */

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 330px 330px;
    gap: 18px;
}


/* Activity Card */

.activity-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    min-height: 330px;
}

.activity-large {
    grid-row: span 2;
}

.activity-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: 0.7s ease;
}

.activity-card:hover img {
    transform: scale(1.08);
}


/* Overlay */

.activity-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(5, 12, 8, 0.9) 0%,
            rgba(5, 12, 8, 0.25) 55%,
            rgba(5, 12, 8, 0.05) 100%
        );

    transition: 0.4s ease;
}

.activity-card:hover .activity-overlay {
    background:
        linear-gradient(
            to top,
            rgba(5, 12, 8, 0.95) 0%,
            rgba(5, 12, 8, 0.35) 70%,
            rgba(5, 12, 8, 0.1) 100%
        );
}


/* Content */

.activity-content {
    position: absolute;
    inset: 0;

    padding: 25px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    z-index: 2;
}


/* Number */

.activity-number {
    align-self: flex-end;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 50%;

    color: rgba(255,255,255,0.8);
    font-size: 11px;
}


/* Type */

.activity-type {
    display: inline-block;
    margin-bottom: 8px;

    color: #d9f36a;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
}


/* Heading */

.activity-content h3 {
    font-family: "Playfair Display", serif;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 8px;
}


/* Paragraph */

.activity-content p {
    max-width: 280px;

    color: rgba(255,255,255,0.68);

    font-size: 12px;
    line-height: 1.6;
}


/* Arrow */

.activity-arrow {
    position: absolute;
    right: 25px;
    bottom: 25px;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #d9f36a;
    color: #17211b;

    font-size: 19px;

    opacity: 0;
    transform: translateY(12px);

    transition: 0.35s ease;
}

.activity-card:hover .activity-arrow {
    opacity: 1;
    transform: translateY(0);
}

.activity-arrow:hover {
    background: #ffffff;
}


/* =====================================================
   ACTIVITIES TABLET
===================================================== */

@media (max-width: 991px) {

    .activities-section {
        padding: 90px 0;
    }

    .activities-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .activities-top > p {
        max-width: 600px;
    }

    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 300px 300px 300px;
    }

    .activity-large {
        grid-row: span 2;
    }

}


/* =====================================================
   ACTIVITIES MOBILE
===================================================== */

@media (max-width: 767px) {

    .activities-section {
        padding: 75px 0;
    }

    .activities-top {
        margin-bottom: 35px;
    }

    .activities-top h2 {
        font-size: 45px;
        letter-spacing: -1px;
    }

    .activities-top > p {
        font-size: 13px;
    }

    .activities-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 15px;
    }

    .activity-card,
    .activity-large {
        min-height: 390px;
        height: 390px;
        grid-row: auto;
    }

    .activity-arrow {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 420px) {

    .activity-card,
    .activity-large {
        min-height: 350px;
        height: 350px;
    }

    .activity-content h3 {
        font-size: 27px;
    }

}

/* =====================================================
   PACKAGES SECTION
===================================================== */

.packages-section {
    padding: 120px 0;
    background: #f7f7f2;
}


/* Heading */

.packages-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.packages-heading .section-label {
    justify-content: center;
}

.packages-heading h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(48px, 5vw, 70px);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -2px;
    color: #17211b;
}

.packages-heading h2 em {
    color: #758c22;
    font-weight: 500;
}

.packages-heading > p {
    max-width: 530px;
    margin: 20px auto 0;
    color: #727871;
    font-size: 14px;
    line-height: 1.8;
}


/* Grid */

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}


/* Card */

.package-card {
    position: relative;
    padding: 35px 30px 30px;
    background: #ffffff;
    border: 1px solid #e8ebe4;
    border-radius: 22px;

    display: flex;
    flex-direction: column;

    transition: 0.4s ease;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(23, 33, 27, 0.12);
}


/* Featured */

.package-featured {
    background: #17211b;
    color: #ffffff;
    border-color: #17211b;
    transform: translateY(-12px);
}

.package-featured:hover {
    transform: translateY(-20px);
}


/* Popular Badge */

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;

    padding: 7px 12px;

    background: #d9f36a;
    color: #17211b;

    border-radius: 50px;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.7px;
}


/* Top */

.package-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.package-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: #eef4cf;
    color: #687d17;

    font-size: 20px;
}

.package-featured .package-icon {
    background: #d9f36a;
    color: #17211b;
}

.package-label {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #7a827a;
}

.package-featured .package-label {
    color: rgba(255,255,255,0.55);
}


/* Title */

.package-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 31px;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 13px;
}

.package-description {
    color: #747b74;
    font-size: 13px;
    line-height: 1.7;
    min-height: 66px;
}

.package-featured .package-description {
    color: rgba(255,255,255,0.62);
}


/* Price */

.package-price {
    margin-top: 27px;
}

.package-price small {
    display: block;
    color: #8a9089;
    font-size: 10px;
    margin-bottom: 4px;
}

.package-featured .package-price small {
    color: rgba(255,255,255,0.5);
}

.package-price div {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.package-price strong {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    color: #17211b;
}

.package-featured .package-price strong {
    color: #d9f36a;
}

.package-price span {
    color: #8a9089;
    font-size: 11px;
}


/* Divider */

.package-divider {
    width: 100%;
    height: 1px;
    background: #e9ebe6;
    margin: 25px 0;
}

.package-featured .package-divider {
    background: rgba(255,255,255,0.13);
}


/* Features */

.package-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555e56;
    font-size: 12px;
}

.package-features li span {
    width: 20px;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eef4cf;
    color: #637616;

    font-size: 10px;
    font-weight: 800;
}

.package-featured .package-features li {
    color: rgba(255,255,255,0.72);
}

.package-featured .package-features li span {
    background: rgba(217,243,106,0.15);
    color: #d9f36a;
}


/* Button */

.package-btn {
    margin-top: auto;

    min-height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    border-radius: 50px;

    background: #17211b;
    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    transition: 0.3s ease;
}

.package-btn span {
    font-size: 17px;
    transition: 0.3s ease;
}

.package-btn:hover {
    background: #758c22;
}

.package-btn:hover span {
    transform: translateX(4px);
}

.package-featured .package-btn {
    background: #d9f36a;
    color: #17211b;
}

.package-featured .package-btn:hover {
    background: #ffffff;
}


/* =====================================================
   PACKAGES TABLET
===================================================== */

@media (max-width: 991px) {

    .packages-section {
        padding: 90px 0;
    }

    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .package-featured {
        transform: none;
    }

    .package-featured:hover {
        transform: translateY(-8px);
    }

    .package-card:last-child {
        grid-column: span 2;
    }

}


/* =====================================================
   PACKAGES MOBILE
===================================================== */

@media (max-width: 767px) {

    .packages-section {
        padding: 75px 0;
    }

    .packages-heading {
        margin-bottom: 40px;
    }

    .packages-heading h2 {
        font-size: 45px;
        letter-spacing: -1px;
    }

    .packages-heading > p {
        font-size: 13px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .package-card:last-child {
        grid-column: auto;
    }

    .package-card {
        padding: 30px 25px 25px;
    }

    .package-featured {
        transform: none;
    }

    .package-featured:hover {
        transform: translateY(-6px);
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 420px) {

    .packages-heading h2 {
        font-size: 40px;
    }

    .package-card h3 {
        font-size: 28px;
    }

    .package-price strong {
        font-size: 37px;
    }

}

/* =====================================================
   GALLERY SECTION
===================================================== */

.gallery-section {
    padding: 120px 0;
    background: #ffffff;
}


/* Heading */

.gallery-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 55px;
}

.gallery-heading h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(45px, 5vw, 70px);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -2px;
    color: #17211b;
}

.gallery-heading h2 em {
    display: block;
    color: #758c22;
    font-weight: 500;
}

.gallery-heading > p {
    max-width: 350px;
    color: #727871;
    font-size: 14px;
    line-height: 1.8;
}


/* Gallery Grid */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 280px 280px;
    gap: 15px;
}


/* Gallery Item */

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: 0.7s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}


/* Overlay */

.gallery-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    padding: 22px;

    background:
        linear-gradient(
            to top,
            rgba(5, 12, 8, 0.7),
            transparent 60%
        );

    opacity: 0;
    transition: 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay > span {
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: 22px;
}


/* View Button */

.gallery-view {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #d9f36a;
    color: #17211b;

    font-size: 18px;

    transition: 0.3s ease;
}

.gallery-view:hover {
    background: #ffffff;
    transform: rotate(10deg);
}


/* Bottom */

.gallery-bottom {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-top: 20px;

    color: #858b85;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-line {
    width: 45px;
    height: 1px;
    background: #cdd1c9;
}


/* =====================================================
   LIGHTBOX
===================================================== */

.lightbox {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    background: rgba(5, 10, 7, 0.94);

    opacity: 0;
    visibility: hidden;

    transition: 0.35s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}


/* Content */

.lightbox-content {
    position: relative;

    width: min(1100px, 95%);
    max-height: 90vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}


/* Image */

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;

    object-fit: contain;

    border-radius: 12px;

    transform: scale(0.92);
    transition: 0.35s ease;
}

.lightbox.active .lightbox-content img {
    transform: scale(1);
}


/* Caption */

.lightbox-caption {
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: 22px;
}


/* Close */

.lightbox-close {
    position: absolute;

    top: 25px;
    right: 30px;

    width: 48px;
    height: 48px;

    z-index: 2;

    border-radius: 50%;

    background: #ffffff;
    color: #17211b;

    font-size: 30px;
    line-height: 1;

    transition: 0.3s ease;
}

.lightbox-close:hover {
    background: #d9f36a;
    transform: rotate(90deg);
}


/* =====================================================
   GALLERY TABLET
===================================================== */

@media (max-width: 991px) {

    .gallery-section {
        padding: 90px 0;
    }

    .gallery-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .gallery-heading > p {
        max-width: 600px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 280px 280px 280px;
    }

    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item-wide {
        grid-column: span 2;
    }

}


/* =====================================================
   GALLERY MOBILE
===================================================== */

@media (max-width: 767px) {

    .gallery-section {
        padding: 75px 0;
    }

    .gallery-heading {
        margin-bottom: 35px;
    }

    .gallery-heading h2 {
        font-size: 45px;
        letter-spacing: -1px;
    }

    .gallery-heading > p {
        font-size: 13px;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 12px;
    }

    .gallery-item,
    .gallery-item-large,
    .gallery-item-wide {
        grid-column: auto;
        grid-row: auto;

        height: 300px;
    }

    .gallery-overlay {
        opacity: 1;
    }

    .gallery-overlay > span {
        font-size: 20px;
    }

    .lightbox {
        padding: 20px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 420px) {

    .gallery-heading h2 {
        font-size: 40px;
    }

    .gallery-item,
    .gallery-item-large,
    .gallery-item-wide {
        height: 260px;
    }

    .lightbox-caption {
        font-size: 18px;
    }

}


/* =====================================================
   TESTIMONIALS SECTION
===================================================== */

.testimonials-section {
    padding: 120px 0;
    background: #17211b;
    color: #ffffff;
}


/* Heading */

.testimonials-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 55px;
}

.testimonials-heading .section-label {
    justify-content: center;
    color: #d9f36a;
}

.testimonials-heading .section-label span {
    background: #d9f36a;
}

.testimonials-heading h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(48px, 5vw, 70px);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -2px;
}

.testimonials-heading h2 em {
    color: #d9f36a;
    font-weight: 500;
}

.testimonials-heading p {
    max-width: 500px;
    margin: 20px auto 0;
    color: rgba(255,255,255,0.62);
    font-size: 14px;
    line-height: 1.8;
}


/* Slider */

.testimonial-slider {
    max-width: 850px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}


/* Card */

.testimonial-card {
    min-width: 100%;
    padding: 55px 70px 50px;

    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 25px;

    background: rgba(255,255,255,0.04);
}


/* Quote */

.quote-mark {
    font-family: "Playfair Display", serif;
    color: #d9f36a;
    font-size: 70px;
    line-height: 0.5;
    margin-bottom: 25px;
}


/* Stars */

.stars {
    color: #d9f36a;
    font-size: 14px;
    letter-spacing: 4px;
    margin-bottom: 25px;
}


/* Review */

.testimonial-text {
    max-width: 680px;

    color: rgba(255,255,255,0.85);

    font-family: "Playfair Display", serif;
    font-size: clamp(21px, 2.2vw, 28px);
    line-height: 1.55;
}


/* User */

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 35px;
}

.testimonial-user img {
    width: 52px;
    height: 52px;

    border-radius: 50%;

    object-fit: cover;
}

.testimonial-user strong {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
}

.testimonial-user span {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 11px;
}


/* Controls */

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;

    margin-top: 30px;
}


/* Buttons */

.testimonial-prev,
.testimonial-next {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,0.08);
    color: #ffffff;

    font-size: 18px;

    transition: 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: #d9f36a;
    color: #17211b;
}


/* Dots */

.testimonial-dots {
    display: flex;
    align-items: center;
    gap: 7px;
}

.testimonial-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: rgba(255,255,255,0.25);

    transition: 0.3s ease;
}

.testimonial-dot.active {
    width: 22px;
    border-radius: 10px;
    background: #d9f36a;
}


/* =====================================================
   TESTIMONIALS TABLET
===================================================== */

@media (max-width: 991px) {

    .testimonials-section {
        padding: 90px 0;
    }

    .testimonial-card {
        padding: 45px 45px;
    }

}


/* =====================================================
   TESTIMONIALS MOBILE
===================================================== */

@media (max-width: 767px) {

    .testimonials-section {
        padding: 75px 0;
    }

    .testimonials-heading {
        margin-bottom: 35px;
    }

    .testimonials-heading h2 {
        font-size: 45px;
        letter-spacing: -1px;
    }

    .testimonials-heading p {
        font-size: 13px;
    }

    .testimonial-card {
        padding: 40px 25px;
        border-radius: 20px;
    }

    .quote-mark {
        font-size: 60px;
    }

    .testimonial-text {
        font-size: 20px;
        line-height: 1.5;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 420px) {

    .testimonials-heading h2 {
        font-size: 40px;
    }

    .testimonial-card {
        padding: 35px 20px;
    }

    .testimonial-text {
        font-size: 18px;
    }

}

/* =====================================================
   FAQ SECTION
===================================================== */

.faq-section {
    padding: 120px 0;
    background: #f7f7f2;
}


/* Wrapper */

.faq-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 100px;
    align-items: start;
}


/* Intro */

.faq-intro {
    position: sticky;
    top: 100px;
}

.faq-intro h2 {
    max-width: 480px;

    font-family: "Playfair Display", serif;
    font-size: clamp(45px, 5vw, 65px);
    line-height: 1.03;
    font-weight: 600;

    color: #17211b;

    letter-spacing: -2px;
}

.faq-intro h2 em {
    display: block;
    color: #758c22;
    font-weight: 500;
}

.faq-intro > p {
    max-width: 400px;

    margin-top: 22px;

    color: #727871;

    font-size: 14px;
    line-height: 1.8;
}


/* Contact Button */

.faq-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-top: 30px;

    padding: 14px 20px;

    border-radius: 50px;

    background: #17211b;
    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    transition: 0.3s ease;
}

.faq-contact-btn span {
    font-size: 17px;
    transition: 0.3s ease;
}

.faq-contact-btn:hover {
    background: #758c22;
}

.faq-contact-btn:hover span {
    transform: translateX(4px);
}


/* FAQ List */

.faq-list {
    border-top: 1px solid #dfe2da;
}


/* Item */

.faq-item {
    border-bottom: 1px solid #dfe2da;
}


/* Question */

.faq-question {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 25px 0;

    background: transparent;

    color: #17211b;

    text-align: left;

    font-size: 15px;
    font-weight: 700;
}


/* Icon */

.faq-icon {
    flex-shrink: 0;

    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e9eddb;
    color: #647718;

    font-size: 20px;
    font-weight: 400;

    transition: 0.3s ease;
}

.faq-item.active .faq-icon {
    background: #d9f36a;
    color: #17211b;
}


/* Answer */

.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition: max-height 0.4s ease;
}

.faq-answer p {
    max-width: 650px;

    padding: 0 55px 25px 0;

    color: #737a73;

    font-size: 13px;
    line-height: 1.8;
}


/* Active */

.faq-item.active .faq-answer {
    max-height: 200px;
}


/* =====================================================
   FAQ TABLET
===================================================== */

@media (max-width: 991px) {

    .faq-section {
        padding: 90px 0;
    }

    .faq-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .faq-intro {
        position: static;
    }

    .faq-intro h2 {
        max-width: 600px;
    }

    .faq-intro > p {
        max-width: 600px;
    }

}


/* =====================================================
   FAQ MOBILE
===================================================== */

@media (max-width: 767px) {

    .faq-section {
        padding: 75px 0;
    }

    .faq-wrapper {
        gap: 40px;
    }

    .faq-intro h2 {
        font-size: 45px;
        letter-spacing: -1px;
    }

    .faq-intro > p {
        font-size: 13px;
    }

    .faq-question {
        padding: 20px 0;

        font-size: 13px;

        gap: 15px;
    }

    .faq-icon {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    .faq-answer p {
        padding: 0 35px 22px 0;
        font-size: 12px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 420px) {

    .faq-intro h2 {
        font-size: 40px;
    }

    .faq-question {
        font-size: 12px;
    }

}

/* =====================================================
   BOOKING CTA
===================================================== */

.booking-section {
    padding: 100px 0;
    background: #f7f7f2;
}

.booking-box {
    position: relative;
    overflow: hidden;

    min-height: 430px;

    display: flex;
    align-items: center;

    padding: 70px;

    border-radius: 30px;

    background:
        linear-gradient(
            120deg,
            #26352b,
            #17211b
        );

    color: #ffffff;
}

.booking-content {
    position: relative;
    z-index: 2;

    max-width: 650px;
}

.booking-content .section-label {
    color: #d9f36a;
}

.booking-content .section-label span {
    background: #d9f36a;
}

.booking-content h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(48px, 5vw, 70px);

    line-height: 1;
    letter-spacing: -2px;

    font-weight: 600;
}

.booking-content h2 em {
    display: block;

    color: #d9f36a;

    font-weight: 500;
}

.booking-content p {
    max-width: 500px;

    margin-top: 20px;

    color: rgba(255,255,255,0.65);

    font-size: 14px;
    line-height: 1.8;
}


/* Booking Button */

.booking-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    margin-top: 30px;

    padding: 15px 22px;

    border-radius: 50px;

    background: #d9f36a;
    color: #17211b;

    font-size: 12px;
    font-weight: 800;

    transition: 0.3s ease;
}

.booking-btn span {
    font-size: 18px;

    transition: 0.3s ease;
}

.booking-btn:hover {
    background: #ffffff;
}

.booking-btn:hover span {
    transform: translate(3px, -3px);
}


/* Decoration */

.booking-decoration {
    position: absolute;

    right: -50px;
    bottom: -85px;

    display: flex;
    flex-direction: column;

    transform: rotate(-15deg);

    pointer-events: none;
}

.booking-decoration span {
    font-family: "Playfair Display", serif;

    font-size: clamp(100px, 14vw, 190px);

    line-height: 0.7;

    color: rgba(255,255,255,0.035);

    white-space: nowrap;
}


/* =====================================================
   CONTACT
===================================================== */

.contact-section {
    padding: 120px 0;

    background: #ffffff;
}

.contact-wrapper {
    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 100px;

    align-items: start;
}


/* Contact Info */

.contact-info h2 {
    max-width: 500px;

    font-family: "Playfair Display", serif;

    font-size: clamp(48px, 5vw, 68px);

    line-height: 1;

    letter-spacing: -2px;

    color: #17211b;
}

.contact-info h2 em {
    display: block;

    color: #758c22;

    font-weight: 500;
}

.contact-info > p {
    max-width: 450px;

    margin-top: 22px;

    color: #727871;

    font-size: 14px;

    line-height: 1.8;
}


/* Details */

.contact-details {
    display: flex;

    flex-direction: column;

    gap: 22px;

    margin-top: 40px;
}

.contact-detail {
    display: flex;

    align-items: center;

    gap: 15px;
}

.contact-detail-icon {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eef4cf;

    color: #647718;

    font-size: 17px;
}

.contact-detail span {
    display: block;

    margin-bottom: 4px;

    color: #8a9089;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.contact-detail strong {
    display: block;

    color: #17211b;

    font-size: 13px;
}


/* Form */

.contact-form-wrapper {
    padding: 40px;

    border-radius: 24px;

    background: #f7f7f2;

    border: 1px solid #e7e9e2;
}

.contact-form {
    display: flex;

    flex-direction: column;

    gap: 20px;
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.form-group {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.form-group label {
    color: #4f584f;

    font-size: 11px;

    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    border: 1px solid #dfe2da;

    border-radius: 10px;

    padding: 14px 15px;

    background: #ffffff;

    color: #17211b;

    font-family: inherit;

    font-size: 12px;

    outline: none;

    transition: 0.3s ease;
}

.form-group input,
.form-group select {
    height: 48px;
}

.form-group textarea {
    resize: vertical;

    min-height: 120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #758c22;

    box-shadow: 0 0 0 3px rgba(117,140,34,0.1);
}


/* Submit */

.contact-submit {
    width: 100%;

    min-height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    border-radius: 50px;

    background: #17211b;

    color: #ffffff;

    font-size: 12px;

    font-weight: 800;

    transition: 0.3s ease;
}

.contact-submit span {
    font-size: 18px;

    transition: 0.3s ease;
}

.contact-submit:hover {
    background: #758c22;
}

.contact-submit:hover span {
    transform: translateX(4px);
}


/* Success */

.form-success {
    display: none;

    padding: 12px;

    border-radius: 10px;

    background: #eaf3c7;

    color: #506313;

    text-align: center;

    font-size: 12px;

    font-weight: 700;
}


/* =====================================================
   BOOKING + CONTACT TABLET
===================================================== */

@media (max-width: 991px) {

    .booking-section,
    .contact-section {
        padding: 90px 0;
    }

    .booking-box {
        padding: 55px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .contact-info h2 {
        max-width: 650px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .booking-section {
        padding: 75px 0;
    }

    .booking-box {
        min-height: 450px;

        padding: 40px 25px;

        border-radius: 22px;
    }

    .booking-content h2 {
        font-size: 45px;

        letter-spacing: -1px;
    }

    .booking-content p {
        font-size: 13px;
    }

    .booking-decoration {
        right: -80px;

        bottom: -35px;
    }

    .booking-decoration span {
        font-size: 100px;
    }


    .contact-section {
        padding: 75px 0;
    }

    .contact-wrapper {
        gap: 40px;
    }

    .contact-info h2 {
        font-size: 45px;

        letter-spacing: -1px;
    }

    .contact-info > p {
        font-size: 13px;
    }

    .contact-form-wrapper {
        padding: 25px 20px;

        border-radius: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 20px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 420px) {

    .booking-content h2,
    .contact-info h2 {
        font-size: 40px;
    }

    .booking-box {
        padding: 35px 20px;
    }

}


/* ======================================================
   FOOTER
====================================================== */

.site-footer {
    background: #111827;
    color: #ffffff;
    margin-top: 80px;
}


/* Main Footer */

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 70px 20px 55px;

    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 50px;
}


/* Footer Brand */

.footer-logo {
    display: inline-block;

    font-size: 30px;
    font-weight: 800;

    color: #ffffff;
    text-decoration: none;

    margin-bottom: 20px;
}

.footer-logo span {
    color: #f97316;
}

.footer-brand p {
    max-width: 320px;

    color: #cbd5e1;

    font-size: 15px;
    line-height: 1.8;

    margin: 0 0 25px;
}


/* Footer Headings */

.footer-column h3 {
    position: relative;

    font-size: 19px;
    font-weight: 700;

    margin: 0 0 25px;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 40px;
    height: 3px;

    background: #f97316;
    border-radius: 10px;
}


/* Footer Lists */

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 13px;
}

.footer-column ul li a {
    color: #cbd5e1;

    text-decoration: none;

    font-size: 15px;

    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: #f97316;
    padding-left: 6px;
}


/* Social Icons */

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;

    color: #ffffff;
    text-decoration: none;

    font-size: 17px;

    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #f97316;
    border-color: #f97316;

    transform: translateY(-4px);
}


/* Contact */

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    color: #cbd5e1;

    font-size: 15px;
    line-height: 1.6;

    margin: 0 0 17px;
}

.footer-contact strong {
    min-width: 22px;

    color: #f97316;

    font-size: 17px;
}

.footer-contact a {
    color: #cbd5e1;
    text-decoration: none;

    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #f97316;
}


/* Footer Bottom */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-container {
    max-width: 1200px;
    margin: auto;

    padding: 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    margin: 0;

    color: #94a3b8;

    font-size: 13px;
}


/* ======================================================
   TABLET
====================================================== */

@media (max-width: 991px) {

    .footer-container {
        grid-template-columns: 1fr 1fr;

        gap: 45px 35px;

        padding: 60px 25px 45px;
    }

}


/* ======================================================
   MOBILE
====================================================== */

@media (max-width: 600px) {

    .site-footer {
        margin-top: 60px;
    }

    .footer-container {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 50px 20px 40px;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-column h3 {
        margin-bottom: 20px;
    }

    .footer-bottom-container {
        flex-direction: column;

        text-align: center;

        padding: 18px 20px;
    }

}


/* ======================================================
   SMALL MOBILE
====================================================== */

@media (max-width: 400px) {

    .footer-logo {
        font-size: 27px;
    }

    .footer-column h3 {
        font-size: 18px;
    }

    .footer-column ul li a,
    .footer-contact p {
        font-size: 14px;
    }

    .footer-social a {
        width: 37px;
        height: 37px;
    }

}