.elementor-446 .elementor-element.elementor-element-167faf4 > .elementor-container{max-width:1600px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-9335291 *//* ==========================================
   TRAVEL GUIDES - MODERN DESIGN
========================================== */

.travel-guides {
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    color: #14202e;
    background: #ffffff;
    overflow: hidden;
}


/* ==========================================
   HERO
========================================== */

.guides-hero {
    position: relative;
    min-height: 330px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(255,255,255,0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #159c91,
            #087f78 55%,
            #075f63
        );

    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: 60px 20px;
}

.hero-small-title {
    display: inline-block;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;

    color: #c9fffa;

    margin-bottom: 15px;
}

.hero-content h1 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(42px, 6vw, 68px);
    font-weight: 800;

    letter-spacing: -2px;
}

.hero-content p {
    margin: 15px auto 0;

    max-width: 650px;

    color: rgba(255,255,255,0.85);

    font-size: 17px;
    line-height: 1.7;
}

.hero-line {
    width: 65px;
    height: 4px;

    margin: 25px auto 0;

    background: #7ef3e7;

    border-radius: 20px;
}


/* Decorative circles */

.hero-decoration {
    position: absolute;

    width: 300px;
    height: 300px;

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 50%;
}

.hero-decoration-1 {
    left: -130px;
    top: -130px;
}

.hero-decoration-2 {
    right: -120px;
    bottom: -150px;
}


/* ==========================================
   SECTION HEADING
========================================== */

.section-heading {
    text-align: center;
    margin-bottom: 42px;
}

.section-heading > span {
    display: inline-block;

    color: #159c91;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 8px;
}

.section-heading h2 {
    margin: 0;

    font-size: 32px;
    line-height: 1.2;

    color: #162333;
    font-weight: 800;
}

.section-heading p {
    margin: 12px 0 0;

    color: #71808c;

    font-size: 15px;
}


/* ==========================================
   QUICK GUIDES
========================================== */

.quick-section {
    padding: 75px 20px 85px;

    background:
        linear-gradient(
            180deg,
            #f7fbfb 0%,
            #ffffff 100%
        );
}

.quick-guides {
    max-width: 1120px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 16px;
}

.quick-card {
    position: relative;

    min-height: 155px;

    padding: 24px 14px;

    background: rgba(255,255,255,0.9);

    border: 1px solid #edf2f2;

    border-radius: 18px;

    text-align: center;

    text-decoration: none;

    box-shadow:
        0 8px 25px rgba(20,60,65,0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;

    overflow: hidden;
}

.quick-card::before {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 3px;

    background: linear-gradient(
        90deg,
        #159c91,
        #61e1d5
    );

    transform: scaleX(0);

    transform-origin: left;

    transition: transform 0.3s ease;
}

.quick-card:hover {
    transform: translateY(-9px);

    border-color: #bcece7;

    box-shadow:
        0 18px 35px rgba(20,80,80,0.12);
}

.quick-card:hover::before {
    transform: scaleX(1);
}

.quick-icon {
    width: 50px;
    height: 50px;

    margin: 0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: #d9faf6;

    color: #159c91;

    font-size: 23px;

    transition: 0.3s ease;
}

.quick-card:hover .quick-icon {
    transform: rotate(-6deg) scale(1.08);

    background: #159c91;
    color: #ffffff;
}

.quick-card h3 {
    margin: 0;

    color: #263442;

    font-size: 14px;
    font-weight: 700;
}

.quick-card p {
    margin: 3px 0 0;

    color: #66737d;

    font-size: 13px;
}

.quick-arrow {
    position: absolute;

    right: 13px;
    top: 13px;

    color: #159c91;

    opacity: 0;

    transform: translateX(-5px);

    transition: 0.3s ease;
}

.quick-card:hover .quick-arrow {
    opacity: 1;
    transform: translateX(0);
}


/* ==========================================
   DESTINATION SECTION
========================================== */

.destination-section {
    padding: 90px 20px 105px;

    background: #ffffff;
}

.destination-heading {
    margin-bottom: 50px;
}

.destination-grid {
    max-width: 1120px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 28px;
}


/* ==========================================
   DESTINATION CARD
========================================== */

.destination-card {
    background: #ffffff;

    border: 1px solid #edf0f1;

    border-radius: 20px;

    overflow: hidden;

    box-shadow:
        0 8px 28px rgba(17,40,50,0.07);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;

    position: relative;
}

.destination-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 25px 50px rgba(17,55,60,0.15);
}


/* IMAGE */

.destination-image {
    height: 220px;

    position: relative;

    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.6s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}


/* Image overlay */

.image-overlay {
    position: absolute;

    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(8,65,65,0.45);

    opacity: 0;

    transition: 0.35s ease;
}

.image-overlay span {
    padding: 10px 18px;

    border: 1px solid rgba(255,255,255,0.7);

    border-radius: 30px;

    color: #ffffff;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;

    backdrop-filter: blur(5px);

    transform: translateY(10px);

    transition: 0.35s ease;
}

.destination-card:hover .image-overlay {
    opacity: 1;
}

.destination-card:hover .image-overlay span {
    transform: translateY(0);
}


/* TAG */

.destination-tag {
    position: absolute;

    top: 15px;
    right: 15px;

    padding: 7px 12px;

    background: rgba(255,255,255,0.92);

    color: #168f86;

    border-radius: 30px;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.7px;

    box-shadow:
        0 4px 12px rgba(0,0,0,0.1);
}


/* CONTENT */

.destination-content {
    padding: 24px 20px 20px;
}

.destination-content h3 {
    margin: 0 0 9px;

    color: #172535;

    font-size: 19px;
    font-weight: 800;
}

.destination-content p {
    margin: 0;

    min-height: 48px;

    color: #697681;

    font-size: 14px;

    line-height: 1.6;
}


/* CARD BOTTOM */

.card-bottom {
    margin-top: 22px;

    padding-top: 15px;

    border-top: 1px solid #edf0f1;

    display: flex;

    align-items: center;
    justify-content: space-between;
}

.pages {
    color: #8a959d;

    font-size: 12px;
}

.card-bottom a {
    color: #159c91;

    font-size: 12px;
    font-weight: 800;

    text-decoration: none;

    transition: 0.25s ease;
}

.card-bottom a span {
    display: inline-block;

    margin-left: 4px;

    transition: 0.25s ease;
}

.card-bottom a:hover {
    color: #076f69;
}

.card-bottom a:hover span {
    transform: translateX(5px);
}


/* ==========================================
   CTA
========================================== */

.guide-cta {
    position: relative;

    padding: 90px 20px;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(21,156,145,0.25),
            transparent 40%
        ),
        #101a2b;

    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;

    max-width: 700px;

    margin: auto;
}

.cta-small {
    color: #63e4d8;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
}

.cta-content h2 {
    margin: 13px 0 12px;

    color: #ffffff;

    font-size: 36px;
    font-weight: 800;
}

.cta-content p {
    max-width: 600px;

    margin: auto;

    color: #aeb8c6;

    font-size: 15px;

    line-height: 1.7;
}

.download-btn {
    display: inline-flex;

    align-items: center;
    gap: 10px;

    margin-top: 30px;

    padding: 15px 28px;

    border-radius: 12px;

    background: linear-gradient(
        135deg,
        #18a99b,
        #087e77
    );

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    box-shadow:
        0 10px 25px rgba(11,157,145,0.25);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.download-btn span {
    font-size: 20px;
}

.download-btn:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(11,157,145,0.4);
}


/* CTA decorative glow */

.cta-glow {
    position: absolute;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    border: 1px solid rgba(80,220,210,0.08);

    left: 50%;
    top: -330px;

    transform: translateX(-50%);
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1000px) {

    .quick-guides {
        grid-template-columns: repeat(3, 1fr);
    }

    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 650px) {

    .guides-hero {
        min-height: 280px;
    }

    .hero-content {
        padding: 50px 20px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .quick-section {
        padding: 60px 15px;
    }

    .quick-guides {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .quick-card {
        min-height: 140px;
    }

    .destination-section {
        padding: 65px 15px 75px;
    }

    .destination-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .destination-image {
        height: 230px;
    }

    .section-heading h2 {
        font-size: 27px;
    }

    .cta-content h2 {
        font-size: 29px;
    }

    .guide-cta {
        padding: 70px 20px;
    }

}


@media (max-width: 400px) {

    .quick-guides {
        grid-template-columns: 1fr 1fr;
    }

    .quick-card {
        padding: 20px 8px;
    }

    .quick-icon {
        width: 44px;
        height: 44px;
    }

}/* End custom CSS */