﻿/* =====================================================
   GLOBAL DESIGN SYSTEM
   YASH TRAVEL HOLIDAYS
===================================================== */

:root {
    /* =========================================
       PRIMARY BRAND COLORS
    ========================================= */

    --primary: #0b66d0;
    --primary-dark: #084ea3;
    --primary-light: #4da3ff;
    /* =========================================
       ACCENT COLORS
    ========================================= */

    --accent: #ff6b00;
    --accent-dark: #e65c00;
    --accent-light: #ff9f43;
    /* =========================================
       PREMIUM HIGHLIGHT
    ========================================= */

    --warning: #ffc107;
    --warning-dark: #e0a800;
    /* =========================================
       TEXT COLORS
    ========================================= */

    --text-dark: #1e1e1e;
    --text-light: #666;
    --text-muted: #888;
    --text-white: #ffffff;
    /* =========================================
       BACKGROUND COLORS
    ========================================= */

    --bg-light: #fffaf5;
    --bg-white: #ffffff;
    --bg-blue-light: #f4f8ff;
    --bg-orange-light: #fff3eb;
    /* =========================================
       BORDER COLORS
    ========================================= */

    --border-light: #ececec;
    --border-orange: rgba(255,107,0,0.12);
    --border-blue: rgba(11,102,208,0.12);
    /* =========================================
       SHADOWS
    ========================================= */

    --shadow-sm: 0 5px 15px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 18px 45px rgba(0,0,0,0.12);
    /* =========================================
       GRADIENTS
    ========================================= */

    --gradient-primary: linear-gradient(135deg,#0b66d0,#4da3ff);
    --gradient-accent: linear-gradient(135deg,#ff6b00,#ff9f43);
    --gradient-mixed: linear-gradient(135deg,#0b66d0,#ff6b00);
    /* =========================================
       BORDER RADIUS
    ========================================= */

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    /* =========================================
       TRANSITIONS
    ========================================= */

    --transition: all 0.35s ease;
    /* =========================================
       FOOTER
    ========================================= */

    --footer-bg: #111111;
}

/* =====================================================
   SAFE RESET
===================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    color: var(--text-dark);
    background: #fff;
    line-height: 1.7;
}

img,
video {
    display: block;
    max-width: 100%;
    height: auto;
}

a,
button,
.btn {
    transition: 0.3s ease;
}

/* =====================================================
   TYPOGRAPHY
===================================================== */
h1 {
    font-size: 40px;
    font-weight: 700;
}

h2 {
    font-size: 28px;
    font-weight: 600;
}

h3 {
    font-size: 20px;
}

p {
    font-size: 15px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }
}

/* =====================================================
   TOP TRUST BAR
===================================================== */
.top-trust-bar {
    position: sticky;
    top: 0;
    z-index: 1050;
    padding: 6px 10px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-align: center;
    background: linear-gradient(90deg, #ff6600, #ff8c00);
}

    .top-trust-bar:hover {
        background: linear-gradient(90deg, #ff5a00, #ff7a00);
    }

@media (max-width: 768px) {
    .top-trust-bar {
        padding: 5px;
        font-size: 12px;
    }
}

/* =====================================================
   LAYOUT
===================================================== */
.container {
    max-width: 1200px;
}

.site-main {
    overflow: hidden;
}

.site-section,
.section,
.site-section.bg-light,
.section-light {
    padding: 70px 0;
}

    .bg-light,
    .section-light,
    .site-section.bg-light {
        background: var(--bg-light) !important;
    }

.section-title,
.section-header {
    text-align: center;
}

.section-title {
    margin-bottom: 50px;
}

    .section-title h2 {
        margin-bottom: 10px;
        font-size: 30px;
        font-weight: 700;
    }

    .section-title p,
    .section-copy,
    .section-links {
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
    }

    .section-title p {
        max-width: 600px;
        color: var(--text-light);
    }

.section-header {
    max-width: 760px;
    margin: 0 auto 50px;
}

.section-copy {
    font-size: 15px;
    color: var(--text-light);
}

    .section-copy strong {
        color: var(--text-dark);
    }

.section-actions {
    margin-top: 24px;
}

.section-links {
    text-align: center;
}

@media (max-width: 768px) {
    .site-section,
    .section,
    .site-section.bg-light,
    .section-light {
        padding: 40px 0;
    }
}

/* =====================================================
   HEADER / NAVIGATION
===================================================== */
.site-header {
    z-index: 1040;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 3px solid var(--accent);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
}

    /* Required when .top-trust-bar is sticky above the header */
    .site-header.sticky-top {
        top: 31px;
    }

.navbar-brand {
    padding: 0;
}

.navbar-brand-logo {
    height: 50px;
}

.navbar-nav .nav-link {
    position: relative;
    padding: 0.75rem 0.95rem;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 600;
}

    .navbar-nav .nav-link::after {
        content: "";
        position: absolute;
        left: 0.95rem;
        right: 0.95rem;
        bottom: 6px;
        height: 3px;
        background: var(--accent);
        border-radius: 999px;
        opacity: 0;
        transform: scaleX(0);
        transform-origin: center;
        transition: 0.3s ease;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus,
    .navbar-nav .nav-item.active > .nav-link {
        color: var(--accent);
    }

        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link:focus::after,
        .navbar-nav .nav-item.active > .nav-link::after {
            opacity: 1;
            transform: scaleX(1);
        }

.navbar-nav .nav-item.active > .nav-link {
    font-weight: 700;
}

.dropdown-menu {
    padding: 10px 0;
    border: 1px solid #e8edf5;
    border-top: 3px solid var(--accent);
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(15, 34, 58, 0.12);
}

.dropdown-item {
    padding: 10px 18px;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
}

    .dropdown-item:hover,
    .dropdown-item:focus {
        color: var(--accent);
        background: rgba(255, 102, 0, 0.08);
    }

.header-btn,
.header-book-btn {
    font-weight: 600;
    border-radius: 999px;
}

.header-btn {
    padding: 6px 14px;
}

.header-book-btn {
    padding: 10px 18px;
    font-size: 14px;
}

.header-social-link {
    color: var(--text-dark);
    font-size: 20px;
}

    .header-social-link:hover {
        color: var(--accent);
    }

.header-trust {
    padding: 6px;
    color: #333;
    font-size: 13px;
    background: #fff3e6;
}

@media (max-width: 991.98px) {
    .site-header.sticky-top {
        top: 30px;
    }

    .navbar-collapse {
        margin-top: 12px;
        padding: 12px 0;
        background: #fff;
        border-top: 2px solid var(--accent);
    }

    .navbar-nav {
        gap: 6px;
        padding-top: 12px;
    }

        .navbar-nav .nav-link,
        .header-book-btn {
            width: 100%;
            text-align: left;
        }

            .navbar-nav .nav-link::after {
                left: 0;
                right: auto;
                bottom: 4px;
                width: 42px;
            }

    .header-trust {
        font-size: 12px;
    }
}
/* =====================================================
   HERO SECTION
===================================================== */

.hero-modern {
    position: relative;
}

.site-blocks-cover,
.hero-section,
.hero-slide {
    position: relative;
    display: flex;
    align-items: center;
    /* CHANGED ONLY THIS */
    min-height: 78vh;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

/* =====================================================
   HERO OVERLAY
===================================================== */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.30) 45%, rgba(0,0,0,0.12) 100% );
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

/* =====================================================
   HERO GLASS CARD
===================================================== */

.hero-glass {
    padding: 50px;
    border-radius: 28px;
    background: rgba(0,0,0,0.34);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    animation: fadeUp 1s ease;
}

    /* =====================================================
   FIX TEXT COLORS
===================================================== */

    .hero-glass,
    .hero-glass h1,
    .hero-glass h2,
    .hero-glass p,
    .hero-glass a,
    .hero-glass span {
        color: #fff;
    }

/* =====================================================
   HERO BADGE
===================================================== */

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .3px;
}

/* =====================================================
   HERO HEADING
===================================================== */

.hero-heading {
    margin-bottom: 24px;
    color: #fff !important;
    font-size: 68px;
    font-weight: 800;
    line-height: 1.08;
    text-shadow: 0 4px 18px rgba(0,0,0,0.45);
}

    .hero-heading span {
        color: var(--warning);
    }

/* =====================================================
   HERO TEXT
===================================================== */

.hero-subtext {
    margin-bottom: 34px;
    color: rgba(255,255,255,0.92) !important;
    font-size: 18px;
    line-height: 1.8;
}

/* =====================================================
   HERO BUTTONS
===================================================== */

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

    .hero-buttons .btn {
        padding: 15px 34px;
        border-radius: 999px;
        font-size: 15px;
        font-weight: 700;
        transition: var(--transition);
    }

    /* PRIMARY BUTTON */

    .hero-btn-primary,
    .hero-buttons .btn-primary {
        color: #fff !important;
        border: none;
        background: linear-gradient(135deg,#ff6b00,#ff9f43);
        box-shadow: 0 12px 30px rgba(255,107,0,0.28);
    }

        .hero-btn-primary:hover,
        .hero-buttons .btn-primary:hover {
            color: #fff !important;
            transform: translateY(-3px);
            box-shadow: 0 18px 40px rgba(255,107,0,0.38);
        }

/* LIGHT BUTTON */

.hero-btn-light {
    color: #111 !important;
    background: #fff;
}

    .hero-btn-light:hover {
        background: #f4f4f4;
        color: #111 !important;
        transform: translateY(-3px);
    }

/* =====================================================
   OWL DOTS
===================================================== */

.slide-one-item .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 25px;
    z-index: 20;
    text-align: center;
}

.slide-one-item .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    transition: .35s ease;
}

.slide-one-item .owl-dot.active span {
    width: 34px;
    border-radius: 30px;
    background: #fff;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .hero-slide {
        min-height: 700px;
    }

    .hero-glass {
        padding: 40px;
    }

    .hero-heading {
        font-size: 52px;
    }

    .hero-subtext {
        font-size: 17px;
    }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .site-blocks-cover,
    .hero-section,
    .hero-slide {
        min-height: 620px;
        background-position: center;
    }

    .hero-content {
        margin: auto;
        text-align: center;
    }

    .hero-glass {
        margin: 0 10px;
        padding: 28px 24px;
        border-radius: 22px;
    }

    .hero-heading {
        font-size: 38px;
        line-height: 1.2;
    }

    .hero-subtext {
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-badge {
        font-size: 12px;
        padding: 8px 14px;
    }

    .hero-buttons {
        flex-direction: column;
    }

        .hero-buttons .btn {
            width: 100%;
        }
}

/* =====================================================
   OWL CAROUSEL FIX
===================================================== */

.slide-one-item .owl-stage-outer {
    width: 100%;
    overflow: hidden;
}

.slide-one-item .owl-stage {
    display: flex !important;
}

.slide-one-item .owl-item {
    display: block !important;
    min-height: 1px;
}

/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.6);
    }

    50% {
        transform: scale(1.08);
    }

    70% {
        transform: scale(1.08);
        box-shadow: 0 0 0 10px rgba(255, 102, 0, 0);
    }

    100% {
        transform: scale(1);
    }
}
/* =====================================================
   QUICK LINKS SECTION
===================================================== */

.quick-links-section {
    background: #fff;
}

/* =====================================================
   SECTION TAG
===================================================== */

.section-tag {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255,107,0,0.10);
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
}

/* =====================================================
   QUICK CARD
===================================================== */

.quick-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 28px;
    text-decoration: none;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    transition: var(--transition);
}

    .quick-card:hover {
        transform: translateY(-8px);
    }

    /* =====================================================
   IMAGE
===================================================== */

    .quick-card .card-img {
        position: relative;
        height: 420px;
        overflow: hidden;
    }

        .quick-card .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .7s ease;
        }

    .quick-card:hover .card-img img {
        transform: scale(1.08);
    }

    /* =====================================================
   OVERLAY
===================================================== */

    .quick-card .card-overlay {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 30px;
        background: linear-gradient( 180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.58) 100% );
    }

/* =====================================================
   TAG
===================================================== */

.quick-card-tag {
    display: inline-block;
    width: fit-content;
    margin-bottom: 14px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    color: #fff !important;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .3px;
}

/* =====================================================
   TITLE
===================================================== */

.quick-card h3 {
    margin: 0;
    color: #fff !important;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 3px 12px rgba(0,0,0,0.45);
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .quick-card .card-img {
        height: 320px;
    }

    .quick-card h3 {
        font-size: 24px;
    }

    .quick-card .card-overlay {
        padding: 22px;
    }
}


/* =====================================================
   PACKAGES / DESTINATION CARDS
===================================================== */
.dom-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    transition: 0.4s;
}

    .dom-card img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        transition: 0.4s;
    }

    .dom-card::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
    }

    .dom-card:hover {
        transform: translateY(-8px);
    }

        .dom-card:hover img {
            transform: scale(1.08);
        }

.dom-overlay-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    color: #fff;
}

    .dom-overlay-content h4 {
        margin-bottom: 5px;
        font-size: 20px;
        font-weight: 600;
    }

    .dom-overlay-content span {
        display: inline-block;
        font-size: 14px;
        opacity: 0.9;
        transition: 0.3s;
    }

.dom-card:hover .dom-overlay-content span {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .dom-card img {
        height: 180px;
    }
}

/* =====================================================
   VIDEO SECTION
===================================================== */

.video-section {
    padding: 80px 0;
    overflow: hidden;
    background: linear-gradient( 180deg, #ffffff 0%, #f8fbff 100% );
}

/* =====================================================
   VIDEO CONTENT
===================================================== */

.video-title {
    margin-bottom: 18px;
    color: var(--primary);
    font-size: 38px;
    font-weight: 800;
    line-height: 1.3;
}

.video-text {
    max-width: 520px;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.9;
}

/* =====================================================
   VIDEO BOX
===================================================== */

.video-box {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

    .video-box::before {
        content: "";
        display: block;
        padding-top: 56.25%;
    }

    .video-box video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 24px;
    }

/* =====================================================
   BUTTON
===================================================== */

.video-section .btn {
    padding: 14px 34px;
    border-radius: 999px;
    font-weight: 700;
    background: var(--gradient-accent);
    border: none;
    box-shadow: 0 14px 34px rgba(255,107,0,0.25);
    transition: var(--transition);
}

    .video-section .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 42px rgba(255,107,0,0.35);
    }

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .video-section {
        padding: 50px 0;
    }

    .video-title {
        font-size: 28px;
        text-align: center;
        line-height: 1.4;
    }

    .video-text {
        margin: auto;
        text-align: center;
        font-size: 15px;
    }

    .video-section .btn {
        display: block;
        width: 100%;
        margin: 20px auto 0;
    }

    .video-box {
        margin-top: 30px;
        border-radius: 18px;
    }

        .video-box video {
            border-radius: 18px;
        }
}
/* =====================================================
   BLOG
===================================================== */
.blog-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.card {
    overflow: hidden;
    border-radius: 14px;
    transition: 0.3s ease;
}

    .card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    }

.blog-img {
    height: 230px;
    object-fit: cover;
    transition: 0.4s;
}

.card:hover .blog-img {
    transform: scale(1.05);
}

.card-title a {
    color: var(--primary) !important;
    font-weight: 600;
    text-decoration: none;
}

    .card-title a:hover {
        color: var(--accent-dark) !important;
        text-decoration: underline;
    }

.card-text {
    font-size: 14px;
    line-height: 1.6;
}

.card-footer {
    font-size: 13px;
}

.blog-divider {
    width: 60px;
    margin: 0 auto;
    border: 2px solid #ff7f50;
    opacity: 1;
}

@media (max-width: 768px) {
    .blog-img {
        height: 180px;
    }
}
/* =====================================================
   POPULAR LINKS SECTION
===================================================== */

.popular-links-section {
    background: #fff;
}

/* =====================================================
   POPULAR LINKS
===================================================== */

.popular-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

    .popular-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px 22px;
        border-radius: 999px;
        background: rgba(11,102,208,0.08);
        color: var(--primary);
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        transition: var(--transition);
    }

        .popular-links a:hover {
            background: var(--gradient-primary);
            color: #fff;
            transform: translateY(-3px);
        }

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .popular-links {
        gap: 10px;
    }

        .popular-links a {
            padding: 9px 18px;
            font-size: 13px;
        }
}



/* =====================================================
   UTILITIES
===================================================== */
.text-orange {
    color: var(--accent);
}

.shadow-sm {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08) !important;
}

.breadcrumb {
    background: transparent;
}

.pulse-btn {
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 rgba(255, 102, 0, 0.7);
}

/* =====================================================
   FOOTER
===================================================== */
.site-footer {
    padding: 60px 0 30px;
    color: #ccc;
    background: var(--footer-bg);
    border-top: 1px solid #333;
}

    .site-footer .footer-heading {
        margin-bottom: 18px;
        color: #fff;
        font-size: 18px;
        font-weight: 600;
    }

    .site-footer .footer-text,
    .site-footer .footer-links-list {
        color: #bbb;
        font-size: 14px;
        line-height: 1.7;
    }

    .site-footer .footer-links-list {
        padding-left: 0;
    }

        .site-footer .footer-links-list li {
            margin-bottom: 8px;
        }

    .site-footer .footer-link,
    .site-footer .footer-social-link,
    .site-footer .footer-dropdown-toggle {
        color: #ccc;
        text-decoration: none;
    }

        .site-footer .footer-link:hover,
        .site-footer .footer-social-link:hover,
        .site-footer .footer-dropdown-toggle:hover {
            color: var(--accent);
        }

    .site-footer .footer-contact-link {
        color: #ffcc66;
    }

        .site-footer .footer-contact-link:hover {
            color: #fff;
        }

    .site-footer .footer-whatsapp-link {
        display: inline-flex;
        align-items: center;
        color: #25d366;
        font-weight: 600;
    }

        .site-footer .footer-whatsapp-link:hover {
            color: #56e58a;
        }

    .site-footer .footer-whatsapp-icon {
        height: 20px;
        margin-right: 6px;
    }

    .site-footer .footer-trust {
        margin-top: 10px;
        color: var(--accent);
        font-size: 15px;
        font-weight: 600;
    }

    .site-footer .footer-social-link {
        margin-right: 12px;
        font-size: 20px;
    }

    .site-footer .btn {
        padding: 10px 15px;
        font-size: 14px;
        border-radius: 30px;
    }

        .site-footer .btn + .btn {
            margin-top: 10px;
        }

    .site-footer .row > div {
        margin-bottom: 25px;
    }

    .site-footer .footer-bottom {
        margin-top: 40px;
        padding-top: 20px;
        text-align: center;
        border-top: 1px solid #333 !important;
    }

    .site-footer .footer-bottom-copy {
        margin: 0;
        color: #888;
        font-size: 13px;
    }

@media (max-width: 992px) {
    .site-footer {
        text-align: center;
    }

    .footer-text,
    .footer-trust {
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-links-list {
        text-align: center;
    }

    .site-footer .btn {
        display: block;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .site-footer .footer-social-link {
        margin: 0 8px;
    }
}

@media (max-width: 768px) {
    .site-footer .footer-bottom-copy {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .site-footer {
        padding: 40px 0 20px;
    }

    .footer-heading {
        font-size: 16px;
    }

    .footer-text {
        font-size: 13px;
    }
}

/* =====================================================
   FOOTER REVIEWS
===================================================== */
.footer-reviews {
    margin-top: 15px;
}

.footer-review-text {
    margin-bottom: 10px;
    color: #ffcc66;
    font-size: 14px;
}

.footer-review-btn {
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
}

/* =====================================================
   POPULAR LINKS
===================================================== */

.popular-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

    .popular-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px 20px;
        border-radius: 999px;
        background: rgba(255,102,0,.08);
        color: var(--accent);
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        transition: .3s ease;
    }

        .popular-links a:hover {
            background: var(--accent);
            color: #fff;
            transform: translateY(-2px);
        }

/* =====================================================
   POPUP OVERLAY
===================================================== */

.ct-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(5px);
}

    .ct-popup-overlay.show {
        display: flex;
    }


/* =====================================================
   POPUP BOX
===================================================== */

.ct-popup {
    width: 100%;
    max-width: 430px;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.35);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.4);
    animation: popupFade .35s ease;
}


/* =====================================================
   ANIMATION
===================================================== */

@keyframes popupFade {

    from {
        opacity: 0;
        transform: translateY(30px) scale(.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


/* =====================================================
   HEADER
===================================================== */

.ct-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: linear-gradient(135deg,#ff7a00,#ffb300);
}

.ct-popup-title {
    margin: 0;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
}

.ct-popup-close {
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: .3s;
}

    .ct-popup-close:hover {
        transform: rotate(90deg);
    }


/* =====================================================
   BODY
===================================================== */

.ct-popup-body {
    padding: 18px;
}


/* =====================================================
   OFFER TEXT
===================================================== */

.ct-offer {
    margin-bottom: 18px;
    color: #0d47a1;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
}


/* =====================================================
   FORM FIELDS
===================================================== */

.ct-field {
    margin-bottom: 13px;
}

    .ct-field label {
        display: block;
        margin-bottom: 5px;
        font-size: 14px;
        font-weight: 600;
        color: #222;
    }

    .ct-field input,
    .ct-field textarea {
        width: 100%;
        padding: 11px 14px;
        border: 1.5px solid #ddd;
        border-radius: 12px;
        font-size: 15px;
        transition: .3s;
        background: rgba(255,255,255,0.75);
    }

    .ct-field textarea {
        min-height: 95px;
        resize: none;
    }

        .ct-field input:focus,
        .ct-field textarea:focus {
            outline: none;
            border-color: #ff7a00;
            box-shadow: 0 0 0 4px rgba(255,122,0,.12);
        }


/* =====================================================
   BUTTON AREA
===================================================== */

.ct-actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}


/* =====================================================
   COMMON BUTTON
===================================================== */

.ct-button {
    border: 0;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}


    /* =====================================================
   SUBMIT BUTTON
===================================================== */

    .ct-button.primary {
        flex: 1;
        padding: 13px;
        color: #fff;
        background: linear-gradient(135deg,#ff7a00,#ff9800);
    }

        .ct-button.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(255,122,0,.25);
        }


    /* =====================================================
   LATER BUTTON
===================================================== */

    .ct-button.ghost {
        padding: 13px 18px;
        background: rgba(255,255,255,0.7);
        color: #0d47a1;
        border: 2px solid #0d47a1;
    }

        .ct-button.ghost:hover {
            background: #0d47a1;
            color: #fff;
        }


    /* =====================================================
   WHATSAPP BUTTON
===================================================== */

    .ct-button.whatsapp {
        display: block;
        width: 100%;
        margin-top: 14px;
        padding: 13px;
        border-radius: 12px;
        text-align: center;
        text-decoration: none;
        color: #fff;
        font-size: 15px;
        font-weight: 700;
        background: linear-gradient(135deg,#0d47a1,#1565c0);
    }

        .ct-button.whatsapp:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(13,71,161,.25);
        }


/* =====================================================
   NOTE
===================================================== */

.ct-note {
    margin-top: 14px;
    text-align: center;
    font-size: 13px;
    color: #777;
}


/* =====================================================
   SUCCESS MESSAGE
===================================================== */

.ct-success {
    position: fixed;
    top: 25px;
    right: 25px;
    z-index: 999999;
    padding: 14px 20px;
    border-radius: 14px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    background: linear-gradient(135deg,#00b894,#00cec9);
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
    animation: successSlide .4s ease;
}

@keyframes successSlide {

    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:576px) {

    .ct-popup {
        max-width: 100%;
        border-radius: 18px;
    }

    .ct-popup-title {
        font-size: 21px;
    }

    .ct-offer {
        font-size: 18px;
    }

    .ct-actions {
        flex-direction: column;
    }

    .ct-button {
        width: 100%;
    }
}

/* =====================================================
   FLOATING WHATSAPP / INSTAGRAM BUTTONS
===================================================== */
.whatsapp-button,
.instagram-button {
    position: fixed;
    right: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-button {
    bottom: 25px;
    background: #25d366;
}

.instagram-button {
    bottom: 85px;
    background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf);
}

.whatsapp-button-icon {
    width: 24px;
    height: 24px;
    pointer-events: none;
}

.instagram-button i {
    color: #fff;
    font-size: 18px;
}

.whatsapp-button:hover,
.instagram-button:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .whatsapp-button,
    .instagram-button {
        width: 42px;
        height: 42px;
    }
}

/* =====================================================
   WHATSAPP CHAT POPUP
===================================================== */
.whatsapp-chat {
    position: fixed;
    right: 20px;
    bottom: 90px;
    z-index: 9999;
    display: none;
    width: 260px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

    .whatsapp-chat.open {
        display: block;
    }

    .whatsapp-chat .header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px;
        color: #fff;
        background: #25d366;
        border-radius: 10px 10px 0 0;
    }

.whatsapp-header-icon {
    width: 20px;
    margin-right: 6px;
}

.whatsapp-close {
    font-size: 18px;
    cursor: pointer;
}

.whatsapp-chat .body {
    padding: 10px;
}

    .whatsapp-chat .body p {
        margin-bottom: 10px;
        color: #333;
        font-size: 14px;
    }

.start-chat {
    display: block;
    padding: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    background: #25d366;
    border-radius: 6px;
}

    .start-chat:hover {
        background: #1ebe5d;
    }

@media (max-width: 768px) {
    .whatsapp-chat {
        right: 5%;
        width: 90%;
    }
}







/* =====================================================
   ABOUT HERO SECTION
===================================================== */

/* =====================================================
   ABOUT COMPANY SECTION
===================================================== */

.about-company-section {
    position: relative;
    padding: 90px 0;
    background: #fff;
}

/* =====================================================
   IMAGE
===================================================== */

.about-company-image {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
}

    .about-company-image img {
        width: 100%;
        border-radius: 24px;
        transition: .5s ease;
    }

    .about-company-image:hover img {
        transform: scale(1.04);
    }

/* =====================================================
   CONTENT
===================================================== */

.about-company-content {
    padding-left: 30px;
}

/* Small label */

.about-section-tag {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255,102,0,.08);
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .3px;
}

/* Heading */

.about-company-content h2 {
    margin-bottom: 22px;
    color: var(--text-dark);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.25;
}

/* Description */

.about-company-content p {
    margin-bottom: 18px;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.9;
}

/* =====================================================
   FEATURE LIST
===================================================== */

.about-feature-list {
    margin-top: 28px;
}

/* Single feature */

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    color: var(--text-dark);
    font-weight: 600;
}

/* Icon */

.about-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,102,0,.10);
    color: var(--accent);
    font-size: 14px;
    flex-shrink: 0;
}

/* =====================================================
   BUTTONS
===================================================== */

.about-company-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

    .about-company-actions .btn {
        min-width: 180px;
        padding: 12px 26px;
        border-radius: 999px;
        font-weight: 700;
    }

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:991px) {

    .about-company-content {
        padding-left: 0;
    }
}

@media(max-width:768px) {

    .about-company-section {
        padding: 70px 0;
    }

    .about-company-content h2 {
        font-size: 30px;
    }

    .about-company-content p {
        font-size: 15px;
    }

    .about-company-actions {
        flex-direction: column;
    }

        .about-company-actions .btn {
            width: 100%;
        }
}



/* =====================================================
   ABOUT TEAM SECTION
===================================================== */

.about-team-section {
    position: relative;
    padding: 90px 0;
    background: linear-gradient( to bottom, #fff 0%, #f8fafc 100% );
}

/* =====================================================
   SECTION HEADING
===================================================== */

.about-team-heading {
    margin-bottom: 60px;
}

    .about-team-heading h2 {
        margin-bottom: 18px;
        color: var(--text-dark);
        font-size: 42px;
        font-weight: 800;
        line-height: 1.25;
    }

    .about-team-heading p {
        color: var(--text-light);
        font-size: 16px;
        line-height: 1.9;
    }

/* =====================================================
   TEAM CARD
===================================================== */

.team-card {
    height: 100%;
    padding: 34px 26px;
    border-radius: 24px;
    background: #fff;
    text-align: center;
    border: 1px solid rgba(255,102,0,.08);
    box-shadow: 0 18px 50px rgba(15,34,58,.08);
    transition: .35s ease;
}

    /* Hover */

    .team-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 24px 60px rgba(15,34,58,.14);
    }

/* =====================================================
   IMAGE
===================================================== */

.team-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    overflow: hidden;
}

    .team-image img {
        width: 140px;
        height: 140px;
        object-fit: cover;
        object-position: center;
        display: block;
        border-radius: 50%;
        border: 5px solid #fff;
        box-shadow: 0 12px 34px rgba(15,34,58,.14);
        transition: .35s ease;
    }

/* Hover */

.team-card:hover .team-image img {
    transform: scale(1.05);
}
/* =====================================================
   CONTENT
===================================================== */

.team-content h4 {
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 22px;
    font-weight: 700;
}

/* Designation */

.team-content span {
    display: block;
    margin-bottom: 16px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 700;
}

/* Description */

.team-content p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.9;
}

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:768px) {

    .about-team-section {
        padding: 70px 0;
    }

    .about-team-heading {
        margin-bottom: 40px;
    }

        .about-team-heading h2 {
            font-size: 30px;
        }

    .team-card {
        padding: 28px 22px;
    }

    .team-image img {
        width: 120px;
        height: 120px;
    }
}

/* =====================================================
   BLOG HERO SECTION
===================================================== */

/* =====================================================
   BLOG SECTION
===================================================== */

.blog-grid-section {
    padding: 100px 0;
    background: #f8fafc;
}

/* =====================================================
   HEADING
===================================================== */

.blog-section-heading {
    margin-bottom: 65px;
}

.blog-section-tag {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255,102,0,.1);
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
}

.blog-section-heading h2 {
    margin-bottom: 18px;
    color: #111827;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
}

.blog-section-heading p {
    color: #6b7280;
    font-size: 17px;
    line-height: 1.8;
}

/* =====================================================
   BLOG CARD
===================================================== */

.premium-blog-card {
    height: 100%;
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(255,102,0,.08);
    box-shadow: 0 14px 40px rgba(15,34,58,.06);
    transition: .35s ease;
}

    .premium-blog-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 24px 60px rgba(15,34,58,.12);
    }

/* =====================================================
   IMAGE
===================================================== */

.premium-blog-image {
    height: 200px;
    overflow: hidden;
}

    .premium-blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .45s ease;
    }

.premium-blog-card:hover .premium-blog-image img {
    transform: scale(1.05);
}

/* =====================================================
   CONTENT
===================================================== */

.premium-blog-content {
    padding: 22px;
}

/* Category */

.premium-blog-category {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Title */

.premium-blog-content h3 {
    margin-bottom: 12px;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.35;
}

    .premium-blog-content h3 a {
        color: #111827;
        text-decoration: none;
        transition: .3s ease;
    }

        .premium-blog-content h3 a:hover {
            color: var(--accent);
        }

/* Meta */

.premium-blog-meta {
    margin-bottom: 14px;
    color: #6b7280;
    font-size: 13px;
    font-weight: 600;
}

/* Description */

.premium-blog-content p {
    margin-bottom: 18px;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Button */

.premium-blog-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(255,102,0,.22);
    transition: .3s ease;
}

    .premium-blog-btn:hover {
        background: var(--accent-dark);
        color: #fff;
        transform: translateY(-2px);
    }

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:768px) {

    .blog-grid-section {
        padding: 70px 0;
    }

    .blog-section-heading {
        margin-bottom: 45px;
    }

        .blog-section-heading h2 {
            font-size: 34px;
        }

    .premium-blog-content {
        padding: 20px;
    }

        .premium-blog-content h3 {
            font-size: 21px;
        }

    .premium-blog-image {
        height: 190px;
    }
}

/* =====================================================
   FEATURED BLOG SECTION
===================================================== */

.featured-blog-section {
    padding: 100px 0;
    background: #fff;
}

/* =====================================================
   HEADING
===================================================== */

.featured-blog-heading {
    margin-bottom: 60px;
}

.featured-blog-tag {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255,102,0,.1);
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
}

.featured-blog-heading h2 {
    margin-bottom: 18px;
    color: #111827;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
}

.featured-blog-heading p {
    color: #6b7280;
    font-size: 17px;
    line-height: 1.8;
}

/* =====================================================
   CARD
===================================================== */

.featured-blog-card {
    overflow: hidden;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(255,102,0,.08);
    box-shadow: 0 24px 70px rgba(15,34,58,.08);
}

/* =====================================================
   IMAGE
===================================================== */

.featured-blog-image {
    height: 100%;
}

    .featured-blog-image img {
        width: 100%;
        height: 100%;
        min-height: 520px;
        object-fit: cover;
    }

/* =====================================================
   CONTENT
===================================================== */

.featured-blog-content {
    padding: 60px;
}

.featured-category {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-blog-content h3 {
    margin-bottom: 22px;
    color: #111827;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
}

.featured-blog-content p {
    margin-bottom: 30px;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.9;
}

/* =====================================================
   FEATURES
===================================================== */

.featured-points {
    margin-bottom: 34px;
}

.featured-point {
    margin-bottom: 12px;
    color: #111827;
    font-size: 15px;
    font-weight: 600;
}

/* =====================================================
   BUTTONS
===================================================== */

.featured-blog-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

    .featured-blog-actions .btn {
        min-width: 180px;
        padding: 13px 28px;
        border-radius: 999px;
        font-weight: 700;
    }

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:768px) {

    .featured-blog-section {
        padding: 70px 0;
    }

    .featured-blog-heading {
        margin-bottom: 45px;
    }

        .featured-blog-heading h2 {
            font-size: 34px;
        }

    .featured-blog-image img {
        min-height: 260px;
    }

    .featured-blog-content {
        padding: 30px 24px;
    }

        .featured-blog-content h3 {
            font-size: 28px;
        }

    .featured-blog-actions {
        flex-direction: column;
    }

        .featured-blog-actions .btn {
            width: 100%;
        }
}

/* =====================================================
   POPULAR DESTINATION TAGS
===================================================== */

.popular-destination-section {
    padding: 90px 0;
    background: #fff;
}

/* =====================================================
   HEADING
===================================================== */

.destination-heading {
    margin-bottom: 55px;
}

.destination-tag {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255,102,0,.1);
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
}

.destination-heading h2 {
    margin-bottom: 18px;
    color: #111827;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
}

.destination-heading p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.8;
}

/* =====================================================
   TAGS
===================================================== */

.destination-tags-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.destination-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(255,102,0,.15);
    color: #111827;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(15,34,58,.05);
    transition: .3s ease;
}

    .destination-chip:hover {
        background: var(--accent);
        border-color: var(--accent);
        color: #fff;
        transform: translateY(-3px);
    }

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:768px) {

    .popular-destination-section {
        padding: 70px 0;
    }

    .destination-heading {
        margin-bottom: 40px;
    }

        .destination-heading h2 {
            font-size: 32px;
        }

    .destination-tags-wrap {
        gap: 12px;
    }

    .destination-chip {
        width: 100%;
        padding: 14px 20px;
        font-size: 14px;
    }
}

/* =====================================================
   TRAVEL CATEGORY SECTION
===================================================== */

.travel-category-section {
    padding: 90px 0;
    background: #f8fafc;
}

/* =====================================================
   HEADING
===================================================== */

.travel-category-heading {
    margin-bottom: 60px;
}

.travel-category-tag {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255,102,0,.1);
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
}

.travel-category-heading h2 {
    margin-bottom: 18px;
    color: #111827;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
}

.travel-category-heading p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.8;
}

/* =====================================================
   CARD
===================================================== */

.travel-category-card {
    height: 100%;
    padding: 34px 28px;
    border-radius: 24px;
    background: #fff;
    text-align: center;
    border: 1px solid rgba(255,102,0,.08);
    box-shadow: 0 14px 40px rgba(15,34,58,.05);
    transition: .35s ease;
}

    .travel-category-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 22px 60px rgba(15,34,58,.1);
    }

/* =====================================================
   ICON
===================================================== */

.travel-category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: rgba(255,102,0,.08);
    font-size: 32px;
}

/* =====================================================
   CONTENT
===================================================== */

.travel-category-card h3 {
    margin-bottom: 16px;
    color: #111827;
    font-size: 24px;
    font-weight: 700;
}

.travel-category-card p {
    margin-bottom: 0;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.8;
}

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:768px) {

    .travel-category-section {
        padding: 70px 0;
    }

    .travel-category-heading {
        margin-bottom: 45px;
    }

        .travel-category-heading h2 {
            font-size: 32px;
        }

    .travel-category-card {
        padding: 28px 22px;
    }
}

/* =====================================================
   WHY READ GUIDES SECTION
===================================================== */

.why-read-guides-section {
    padding: 100px 0;
    background: #fff;
}

/* =====================================================
   IMAGE
===================================================== */

.why-read-image {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(15,34,58,.08);
}

    .why-read-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* =====================================================
   CONTENT
===================================================== */

.why-read-content {
    padding-left: 30px;
}

.why-read-tag {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255,102,0,.1);
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
}

.why-read-content h2 {
    margin-bottom: 22px;
    color: #111827;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
}

.why-read-content p {
    margin-bottom: 30px;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.9;
}

/* =====================================================
   POINTS
===================================================== */

.why-read-points {
    margin-bottom: 34px;
}

.why-read-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    color: #111827;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.8;
}

/* Check */

.why-read-check {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,102,0,.1);
    color: var(--accent);
    font-size: 14px;
    font-weight: 700;
}

/* =====================================================
   BUTTON
===================================================== */

.why-read-btn {
    padding: 14px 30px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(255,102,0,.22);
}

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:991px) {

    .why-read-content {
        padding-left: 0;
    }
}

@media(max-width:768px) {

    .why-read-guides-section {
        padding: 70px 0;
    }

    .why-read-content h2 {
        font-size: 32px;
    }

    .why-read-content p {
        font-size: 15px;
    }
}

/* =================================================================================================================
   CONTACT not remove 
===================================================== */

/* =====================================================
   CONTACT SECTION
===================================================== */

.contact-main-section {
    padding: 100px 0;
    background: #f8fafc;
}

/* =====================================================
   FORM CARD
===================================================== */

.contact-form-card {
    padding: 50px;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(15,34,58,.08);
}

/* =====================================================
   FORM HEADING
===================================================== */

.contact-form-heading {
    margin-bottom: 38px;
}

    .contact-form-heading span {
        display: inline-block;
        margin-bottom: 14px;
        padding: 8px 18px;
        border-radius: 999px;
        background: rgba(255,102,0,.1);
        color: var(--accent);
        font-size: 13px;
        font-weight: 700;
    }

    .contact-form-heading h2 {
        margin-bottom: 18px;
        color: #111827;
        font-size: 42px;
        font-weight: 800;
        line-height: 1.2;
    }

    .contact-form-heading p {
        color: #6b7280;
        font-size: 15px;
        line-height: 1.9;
    }

/* =====================================================
   FORM
===================================================== */

.contact-form-card label {
    margin-bottom: 10px;
    color: #111827;
    font-size: 15px;
    font-weight: 700;
}

/* Form Group */

.contact-form-card .form-group {
    margin-bottom: 24px;
}

/* Inputs */

.contact-form-card .form-control {
    width: 100%;
    height: 60px;
    padding: 0 18px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #fff;
    box-shadow: none;
    color: #111827;
    font-size: 15px;
    transition: .3s ease;
}

    /* Focus */

    .contact-form-card .form-control:focus {
        border-color: var(--accent);
        box-shadow: 0 0 0 4px rgba(255,102,0,.08);
    }

/* Textarea */

.contact-form-card textarea.form-control {
    min-height: 160px;
    padding: 18px;
    resize: none;
}

/* Placeholder */

.contact-form-card .form-control::placeholder {
    color: #9ca3af;
}

/* =====================================================
   BUTTON
===================================================== */

.contact-submit-btn {
    height: 60px;
    border: none;
    border-radius: 999px;
    background: linear-gradient( 135deg, #0d6efd 0%, #0056d6 100% );
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 14px 34px rgba(13,110,253,.22);
    transition: .35s ease;
}

    .contact-submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 44px rgba(13,110,253,.28);
    }

/* =====================================================
   OFFICE CARD
===================================================== */

.contact-office-card {
    position: relative;
    overflow: hidden;
    padding: 50px;
    border-radius: 30px;
    background: linear-gradient( 135deg, var(--accent) 0%, #ff8c00 100% );
    box-shadow: 0 24px 70px rgba(255,102,0,.22);
}

    /* Circle Effect */

    .contact-office-card::before {
        content: "";
        position: absolute;
        top: -120px;
        right: -120px;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
    }

/* =====================================================
   OFFICE TAG
===================================================== */

.contact-office-tag {
    position: relative;
    z-index: 2;
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(6px);
}

/* =====================================================
   OFFICE TITLE
===================================================== */

.contact-office-card h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 18px;
    color: #fff;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
}

/* Description */

.contact-office-card p {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,.92);
    font-size: 15px;
    line-height: 1.9;
}

/* =====================================================
   OFFICE ITEM
===================================================== */

.contact-office-item {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-top: 30px;
}

/* Icon */

.contact-office-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,.14);
    color: #fff;
    font-size: 18px;
    backdrop-filter: blur(6px);
}

/* Title */

.contact-office-item h4 {
    margin-bottom: 6px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

/* Links */

.contact-office-item a {
    color: rgba(255,255,255,.95);
    text-decoration: none;
    transition: .3s ease;
}

    .contact-office-item a:hover {
        color: #fff;
    }

/* =====================================================
   SEO CONTENT
===================================================== */

.contact-seo-content {
    position: relative;
    z-index: 2;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,.18);
}

    /* Links */

    .contact-seo-content a {
        color: #fff;
        font-weight: 700;
    }

    /* List */

    .contact-seo-content ul {
        margin-top: 20px;
        padding-left: 18px;
    }

    .contact-seo-content li {
        margin-bottom: 10px;
        color: rgba(255,255,255,.92);
        line-height: 1.8;
    }

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:768px) {

    .contact-main-section {
        padding: 70px 0;
    }

    .contact-form-card,
    .contact-office-card {
        padding: 30px;
    }

        .contact-form-heading h2,
        .contact-office-card h3 {
            font-size: 30px;
        }

    .contact-office-item {
        gap: 14px;
    }

    .contact-office-icon {
        min-width: 48px;
        height: 48px;
    }
}
/* =====================================================
   BRAND LOGO
===================================================== */
/* =====================================================
   SIDE BRAND LOGO
===================================================== */

.contact-side-logo {
    margin-top: 35px;
    text-align: center;
}

    .contact-side-logo img {
        max-width: 240px;
        opacity: .10;
        filter: grayscale(100%);
        transition: .3s ease;
    }

        .contact-side-logo img:hover {
            opacity: .16;
            transform: scale(1.03);
        }
/* =====================================================
   MAP SECTION
===================================================== */

.contact-map-section {
    padding: 100px 0;
    background: #fff;
}

/* =====================================================
   HEADING
===================================================== */

.contact-map-heading {
    margin-bottom: 55px;
}

    .contact-map-heading span {
        display: inline-block;
        margin-bottom: 16px;
        padding: 8px 18px;
        border-radius: 999px;
        background: rgba(255,102,0,.1);
        color: var(--accent);
        font-size: 13px;
        font-weight: 700;
    }

    .contact-map-heading h2 {
        margin-bottom: 18px;
        color: #111827;
        font-size: 42px;
        font-weight: 800;
    }

    .contact-map-heading p {
        color: #6b7280;
        font-size: 16px;
        line-height: 1.9;
    }

/* =====================================================
   MAP CARD
===================================================== */

.contact-map-card {
    overflow: hidden;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(15,34,58,.08);
}

/* =====================================================
   MAP
===================================================== */

.map-responsive {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 0;
    padding-bottom: 42%;
}

    .map-responsive iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

/* =====================================================
   BOTTOM INFO
===================================================== */

.contact-map-info {
    padding: 35px 40px;
    background: #fff;
}

/* =====================================================
   LOCATION
===================================================== */

.contact-map-location {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

/* Icon */

.contact-map-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,102,0,.1);
    color: var(--accent);
    font-size: 20px;
}

/* Text */

.contact-map-location h4 {
    margin-bottom: 8px;
    color: #111827;
    font-size: 20px;
    font-weight: 700;
}

.contact-map-location p {
    margin-bottom: 0;
    color: #6b7280;
    line-height: 1.8;
}

/* =====================================================
   BUTTON
===================================================== */

.contact-map-btn {
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;
}

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:768px) {

    .contact-map-section {
        padding: 70px 0;
    }

    .contact-map-heading {
        margin-bottom: 40px;
    }

        .contact-map-heading h2 {
            font-size: 32px;
        }

    .contact-map-info {
        padding: 28px 24px;
    }

    .map-responsive {
        padding-bottom: 70%;
    }

    .contact-map-btn {
        width: 100%;
        margin-top: 20px;
    }
}
