    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    overflow-x: hidden;
}

/* ==========================
   HERO SECTION
========================== */

.hero-section {
    background: #f1f3f5;
    position: relative;
    min-height: 100vh;
    padding-top: env(safe-area-inset-top);
}

.bg-text {
    position: absolute;
    left: 20px;
    top: 100px;
    font-size: 170px;
    font-weight: 700;
    color: #e8e8e8;
    opacity: .8;
    z-index: 0;
    user-select: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.small-title {
    font-size: 60px;
    font-weight: 700;
    color: #071c18;
}

.main-title {
    font-size: 100px;
    font-weight: 800;
    line-height: 0.95;
    color: #071c18;
    margin-bottom: 25px;
}

.hero-text {
    max-width: 500px;
    color: #555;
    line-height: 1.9;
    font-size: 17px;
}

.tour-btn {
    background: #fff;
    border: 1px solid #29c3d3;
    color: #29c3d3;
    padding: 14px 28px;
    border-radius: 8px;
    transition: .3s;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}

.tour-btn:hover {
    background: #29c3d3;
    color: #fff;
}

.video-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.pulse {
    position: absolute;
    border-radius: 50%;
    background: rgba(54, 209, 220, .18);
}

.pulse-1 {
    width: 120px;
    height: 120px;
}

.pulse-2 {
    width: 85px;
    height: 85px;
    background: rgba(54, 209, 220, .28);
}

.play-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
    z-index: 10;
    font-size: 22px;
}

.hero-form {
    background: #fff;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.hero-form h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #0f172a;
}

.hero-form .form-control,
.hero-form .form-select {
    height: 55px;
    border-radius: 12px;
    border: 1px solid #dbe3ec;
    box-shadow: none;
}

.hero-form .form-control:focus,
.hero-form .form-select:focus {
    border-color: #ff7a00;
    box-shadow: none;
}

.hero-submit-btn {
    width: 100%;
    height: 58px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff7a00, #ff4d4d);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    transition: .3s;
}

.hero-submit-btn:hover {
    transform: translateY(-3px);
}

/* Hero Responsive */
@media (max-width: 1200px) {
    .main-title { font-size: 80px; }
    .small-title { font-size: 50px; }
    .bg-text { font-size: 130px; }
}

@media (max-width: 991px) {
    .hero-section { min-height: auto; padding: 100px 0 60px; }
    .hero-content { text-align: center; margin-bottom: 40px; }
    .hero-text { margin: 0 auto; }
    .main-title { font-size: 65px; }
    .small-title { font-size: 38px; }
    .bg-text { display: none; }
    .hero-content .d-flex { justify-content: center; }
    .hero-form { margin-top: 20px; }
}

@media (max-width: 767px) {
    .main-title { font-size: 52px; }
    .small-title { font-size: 30px; }
    .hero-text { font-size: 15px; }
    .hero-form { padding: 25px 20px; }
    .hero-form h3 { font-size: 22px; }
    .video-wrapper { width: 80px; height: 80px; }
    .pulse-1 { width: 80px; height: 80px; }
    .pulse-2 { width: 58px; height: 58px; }
}

@media (max-width: 480px) {
    .main-title { font-size: 42px; }
    .small-title { font-size: 26px; }
    .hero-content .d-flex { flex-wrap: wrap; gap: 20px !important; }
    .tour-btn { width: 100%; text-align: center; }
    .video-wrapper { margin: 0 auto; }
}

/* ==========================
   ABOUT SECTION
========================== */

.about-section {
    padding: 100px 0;
    background: #f4f4f4;
    position: relative;
    overflow: hidden;
}

.image-wrapper { text-align: center; }

.traveler-img { max-width: 100%; }

.section-tag {
    color: #25c7d9;
    font-size: 26px;
    font-family: cursive;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title {
    font-size: 60px;
    font-weight: 800;
    color: #05051a;
    line-height: 1.15;
    margin-bottom: 25px;
}

.highlight {
    position: relative;
    z-index: 1;
}

.highlight::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 100%;
    height: 18px;
    background: #11d3ea;
    z-index: -1;
}

.section-desc {
    font-size: 18px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 35px;
}

.info-box {
    background: #fff;
    padding: 18px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    margin-bottom: 18px;
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center;
}

.feature-list li:last-child { margin-bottom: 0; }

.feature-list i {
    width: 28px;
    height: 28px;
    background: #d6f7fb;
    color: #25c7d9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 14px;
    flex-shrink: 0;
}

.video-box {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.video-box img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.video-box .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    font-size: 20px;
    backdrop-filter: blur(3px);
    box-shadow: none;
}

.shape {
    position: absolute;
    background: #d9f4fb;
    border-radius: 50%;
}

.shape-1 { width: 120px; height: 120px; left: -40px; bottom: 50px; }
.shape-2 { width: 160px; height: 160px; right: -70px; bottom: 20px; }

/* About Responsive */
@media (max-width: 1200px) {
    .section-title { font-size: 50px; }
}

@media (max-width: 991px) {
    .about-section { padding: 70px 0; text-align: center; }
    .section-title { font-size: 40px; }
    .feature-list li { justify-content: center; }
    .image-wrapper { margin-bottom: 40px; }
}

@media (max-width: 767px) {
    .about-section { padding: 60px 0; }
    .section-title { font-size: 32px; }
    .section-desc { font-size: 15px; }
    .section-tag { font-size: 20px; }
}

@media (max-width: 480px) {
    .section-title { font-size: 28px; }
    .info-box { padding: 15px; }
}

/* ==========================
   POPULAR DESTINATIONS
========================== */

.trekking-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, #d9eefc 0%, #d9eefc 45%, #c8eadf 100%);
}

.trekking-section::before {
    content: "";
    position: absolute;
    left: -100px;
    bottom: 0;
    width: 400px;
    height: 250px;
    background: #a9d8cd;
    border-radius: 50%;
}

.trekking-section::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -20px;
    width: 350px;
    height: 350px;
    background: #ea6ca5;
    border-radius: 50%;
}

.sub-title {
    font-family: cursive;
    color: #18c8d9;
    font-size: 18px;
    display: block;
    margin-bottom: 10px;
}

.section-heading h2 {
    font-size: 48px;
    font-weight: 800;
    color: #071221;
    line-height: 1.2;
}

.trek-card {
    background: #fff;
    padding: 10px;
    border-radius: 4px;
    transition: .3s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    position: relative;
    z-index: 2;
    height: 100%;
}

.trek-card:hover { transform: translateY(-8px); }

.card-image { position: relative; }

.card-image img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.price-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #1fd6ea;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 3px;
}

.trip-meta {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: #fff;
    padding: 6px 10px;
    font-size: 11px;
    display: flex;
    justify-content: space-between;
    border-radius: 3px;
}

.card-body-custom { padding: 18px 8px 10px; }

.card-body-custom h5 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.rating { color: #ff9f1a; margin-bottom: 15px; }

.card-body-custom p {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
}

.card-footer-custom {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-footer-custom a {
    text-decoration: none;
    color: #071221;
    font-size: 13px;
    font-weight: 600;
}

.slider-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    margin: 0 4px;
}

.slider-dots span.active { background: #18c8d9; }

/* Destinations Responsive */
@media (max-width: 991px) {
    .trekking-section { padding: 70px 0; }
    .section-heading h2 { font-size: 38px; }
}

@media (max-width: 767px) {
    .trekking-section { padding: 60px 0; }
    .section-heading h2 { font-size: 30px; }
    .trek-card { max-width: 360px; margin: 0 auto; }
}

@media (max-width: 480px) {
    .section-heading h2 { font-size: 26px; }
    .card-image img { height: 180px; }
}

/* ==========================
   EXCLUSIVE DEALS / DISCOUNT
========================== */

.discount-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.overlay {
    position: absolute;
    inset: 0;
}

.discount-section .container {
    position: relative;
    z-index: 2;
}

.offer-text {
    display: inline-block;
    color: #f81100;
    font-size: 32px;
    font-family: cursive;
    margin-bottom: 20px;
}

.discount-section h2 {
    font-size: 70px;
    font-weight: 700;
    line-height: 1.2;
    color: #39d6df;
    margin-bottom: 25px;
}

.discount-section p {
    color: rgba(41, 40, 40, 0.85);
    font-size: 20px;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 40px;
}

.read-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: #fff;
    color: #39d6df;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    border-radius: 6px;
    transition: .4s;
}

.read-btn:hover {
    background: #39d6df;
    color: #615f5f;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.logo-box {
    height: 220px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .25);
    transition: .4s;
}

.logo-box:hover { transform: translateY(-8px); }

.logo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Discount Responsive */
@media (max-width: 1199px) {
    .discount-section h2 { font-size: 55px; }
}

@media (max-width: 991px) {
    .discount-section { padding: 70px 0; }
    .discount-section h2 { font-size: 42px; }
    .logo-grid { margin-top: 50px; }
    .discount-section p { font-size: 17px; }
}

@media (max-width: 767px) {
    .offer-text { font-size: 24px; }
    .discount-section h2 { font-size: 34px; }
    .discount-section p { font-size: 15px; }
    .logo-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .logo-box { height: 170px; border-radius: 16px; }
    .read-btn { padding: 14px 28px; font-size: 16px; }
}

@media (max-width: 480px) {
    .discount-section h2 { font-size: 28px; }
    .logo-grid { grid-template-columns: 1fr; }
    .logo-box { height: 220px; }
    .offer-text { font-size: 20px; }
}

/* ==========================
   WHY CHOOSE US
========================== */

.why-choose-section {
    padding: 100px 0;
    background: #f8f8f8;
    overflow: hidden;
}

.section-title { margin-bottom: 60px; }

.section-title h2 {
    font-size: 60px;
    font-weight: 700;
    color: #091d3e;
    margin: 0;
}

.feature-box {
    text-align: left;
    max-width: 260px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    border: 1px solid #d8d8d8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: .4s;
}

.feature-icon i {
    font-size: 24px;
    color: #35d3e6;
}

.feature-box:hover .feature-icon { background: #35d3e6; }
.feature-box:hover .feature-icon i { color: #fff; }

.feature-box h4 {
    font-size: 28px;
    font-weight: 600;
    color: #091d3e;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 15px;
    color: #6b6b6b;
    line-height: 1.8;
}

.center-image img {
    max-width: 100%;
    width: 500px;
}

/* Why Choose Responsive */
@media (max-width: 1199px) {
    .section-title h2 { font-size: 48px; }
    .feature-box { max-width: 100%; }
}

@media (max-width: 991px) {
    .why-choose-section { padding: 70px 0; }
    .section-title h2 { font-size: 36px; }
    .feature-box {
        text-align: center;
        max-width: 100%;
        margin-bottom: 35px;
    }
    .feature-icon { margin: 0 auto 20px; }
    .center-image { margin-bottom: 20px; }
}

@media (max-width: 767px) {
    .why-choose-section { padding: 60px 0; }
    .section-title h2 { font-size: 28px; }
    .feature-box h4 { font-size: 22px; }
    .feature-box p { font-size: 14px; }
    .section-title { margin-bottom: 40px; }
}

@media (max-width: 480px) {
    .section-title h2 { font-size: 24px; }
    .feature-box h4 { font-size: 20px; }
    .feature-icon { width: 58px; height: 58px; }
}

/* ==========================
   TRAVEL FAQ
========================== */

.travel-faq-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #eef6ff 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.travel-faq-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 149, 0, .08);
    top: -250px;
    right: -200px;
}

.travel-faq-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(0, 157, 255, .08);
    bottom: -180px;
    left: -150px;
}

.faq-tag {
    display: inline-block;
    background: #fff3e8;
    color: #34d3e6;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 14px;
}

.faq-left h2 {
    font-size: 55px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
}

.faq-left h2 span { color: #34d3e6; }

.faq-left p {
    margin: 25px 0;
    color: #64748b;
    line-height: 1.8;
    font-size: 16px;
}

.faq-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.stat-card {
    flex: 1;
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.stat-card h3 {
    font-size: 32px;
    color: #34d3e6;
    margin: 0;
    font-weight: 800;
}

.stat-card span { color: #64748b; font-size: 14px; }

.faq-image img {
    width: 100%;
    border-radius: 30px;
    height: 320px;
    object-fit: cover;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
}

.travel-faq .accordion-item {
    border: none;
    margin-bottom: 18px;
    border-radius: 22px !important;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.travel-faq .accordion-button {
    padding: 22px 25px;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    box-shadow: none !important;
    background: #fff;
}

.travel-faq .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #34d3e6, #00a8ff);
    color: #fff;
}

.travel-faq .accordion-body {
    padding: 20px 25px;
    color: #64748b;
    line-height: 1.9;
    font-size: 14px;
}

.travel-faq .accordion-item:hover {
    transform: translateY(-4px);
    transition: .3s;
}

/* FAQ Responsive */
@media (max-width: 991px) {
    .travel-faq-section { padding: 80px 0; }
    .faq-left h2 { font-size: 40px; }
    .faq-image { margin-bottom: 30px; }
    .stat-card { padding: 18px; }
    .stat-card h3 { font-size: 26px; }
}

@media (max-width: 767px) {
    .travel-faq-section { padding: 60px 0; }
    .faq-left h2 { font-size: 30px; }
    .faq-stats { flex-direction: column; gap: 14px; }
    .travel-faq .accordion-button { font-size: 14px; padding: 18px 20px; }
    .travel-faq .accordion-body { padding: 16px 20px; }
    .faq-image img { height: 240px; border-radius: 20px; }
}

@media (max-width: 480px) {
    .faq-left h2 { font-size: 26px; }
    .faq-tag { font-size: 12px; padding: 8px 16px; }
    .stat-card h3 { font-size: 22px; }
    .travel-faq .accordion-button { font-size: 13px; }
}
