﻿/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: url('/index/indexhero.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
        animation: shimmer 3s infinite;
    }

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-title {
    font-size: 2.5rem !important;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 500 !important;
    backdrop-filter: blur(30px);
    padding: 20px;
    box-shadow: var(--shadow-xl);
    border: solid 0.5px white;
    border-radius: 10px;
}


.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgb(243 17 17 / 32%);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    background: rgb(243 17 17 / 32%);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Booking Form */
.booking-form {
    backdrop-filter: blur(20px);
    padding: 1rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

    .booking-form::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--secondary-color);
    }

.form-title {
    color: white;
    font-weight: 800;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.form-control {
    height: 60px;
    font-size: 1rem;
    transition: var(--transition);
    background-color: transparent;
    border: 1px solid white;
    border-radius: 10px;
    color: white;
}

    .form-control:focus {
        border-color: var(--accent-color);
        box-shadow: none;
        background-color: transparent;
        color: white;
    }
.form-control::placeholder{
    color:white !important;
}
/* Section Styling */
.section {
    padding: 2rem 0;
}

.section-title {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    font-size: clamp(2rem, 4vw, 2.5rem);
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 0;
        width: 60px;
        height: 4px;
        background: var(--secondary-color);
        border-radius: 2px;
    }

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Package Cards */
.package-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 0;
    background: white;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .package-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

.package-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.package-card:hover .package-img {
    transform: scale(1.05);
}

.package-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent 50%);
    opacity: 0.8;
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgb(243 17 17 / 32%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.package-price {
    color: var(--secondary-color);
    font-weight: 800;
    font-size: 1.75rem;
    line-height: 1;
}

.package-rating {
    color: #fbbf24;
    font-weight: 600;
}

.card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
}

.card-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Enhanced Book Now Button */
.btn-container {
    display: inline-block;
    position: relative;
    overflow: hidden;
    border-radius: 50px; /* Match your button's border-radius */
}

.btn-booknow {
    border: 2px solid var(--secondary-color);
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

    .btn-booknow i {
        transition: all 0.4s ease;
        color: white;
    }

    /* Hover Effects */
    .btn-booknow:hover {
        border-color: var(--secondary-color);
        background-color: var(--secondary-color);
        color: white !important;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

        .btn-booknow:hover i {
            color: white;
            transform: translateX(3px);
        }

    /* Optional: Ripple Effect */
    .btn-booknow::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 5px;
        height: 5px;
        background: rgba(255, 255, 255, 0.5);
        opacity: 0;
        border-radius: 100%;
        transform: scale(1, 1) translate(-50%);
        transform-origin: 50% 50%;
    }

    .btn-booknow:hover::after {
        animation: ripple 1s ease-out;
    }

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }

    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

/* Enhanced Destination Cards */
.destination-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 380px;
    margin-bottom: 0;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

    .destination-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }

.destination-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.destination-card:hover .destination-img {
    transform: scale(1.08);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    padding: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.destination-card:hover .destination-overlay {
    padding-bottom: 2rem;
}

.destination-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.destination-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgb(243 17 17 / 32%);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
    border: 1px solid rgba(255,255,255,0.2);
}

/* Badge color variations */
.badge {
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Enhanced Feature Cards */
.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--secondary-color);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .feature-card:hover {
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        transform: translateY(-10px) !important;
    }

        .feature-card:hover::before {
            opacity: 1;
        }

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
}

.feature-icon {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.feature-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-text {
    color: var(--text-color);
}

.feature-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced Safety Section */
.safety-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

    .safety-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 100%;
        height: 200%;
        background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
        z-index: 0;
    }

.section-header {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-tagline {
    display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.safety-features-grid {
    display: grid;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.safety-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.75rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-left: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

    .safety-feature::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--gradient-primary);
        opacity: 0;
        transition: all 0.3s ease;
        z-index: -1;
    }

    .safety-feature:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
        border-left-color: var(--secondary-color);
    }

        .safety-feature:hover::before {
            opacity: 0.03;
        }

.safety-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

.icon-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: var(--gradient-primary);
    animation: pulse 2s infinite;
    opacity: 0;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.1);
        opacity: 0;
    }

    100% {
        transform: scale(0.95);
        opacity: 0;
    }
}

.safety-content {
    flex: 1;
}

.safety-title {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.safety-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.safety-link {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

    .safety-link i {
        margin-left: 0.5rem;
        transition: transform 0.3s ease;
    }

    .safety-link:hover {
        color: var(--secondary-color);
    }

        .safety-link:hover i {
            transform: translateX(3px);
        }

.safety-visual {
    position: relative;
    padding-left: 2rem;
}

.safety-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.4s ease;
}

    .safety-image-wrapper:hover {
        transform: perspective(1000px) rotateY(0deg);
    }

.safety-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s ease;
}

.safety-image-wrapper:hover .safety-main-image {
    transform: scale(1.03);
}

.safety-badge {
    position: absolute;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

    .safety-badge i {
        color: var(--primary-color);
    }

.safety-badge-1 {
    top: 10%;
    left: -5%;
    animation: float 4s ease-in-out infinite;
}

.safety-badge-2 {
    top: 50%;
    right: -5%;
    transform: translateY(-50%);
    animation: float 4s ease-in-out infinite 0.5s;
}

.safety-badge-3 {
    bottom: 10%;
    left: 10%;
    animation: float 4s ease-in-out infinite 1s;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* FAQ Section Styles */
.faq-section {
    max-width: 900px;
    margin: 2.5rem auto;
    padding: 0 1.5rem;
}

.faq-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

    .faq-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        height: 4px;
        background: var(--secondary-color);
        border-radius: 2px;
    }

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1.2rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    background-color: #da2d3517;
}

    .faq-question:hover {
        background-color: #da2d3540;
    }

    .faq-question.active {
        background-color: #da2d3540;
        color: var(--primary-color);
    }

.faq-icon {
    transition: all 0.3s ease;
    font-size: 1.3rem;
    color: var(--secondary-color);
    min-width: 30px;
    text-align: center;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
    color: #e74c3c;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
}

.faq-answer-content {
    padding: 0 1.8rem;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 1.8rem 1.8rem;
}

.highlight {
    color: #e74c3c;
    font-weight: 600;
}

.activity-list {
    columns: 2;
    column-gap: 2rem;
    margin: 1rem 0;
}

    .activity-list li {
        margin-bottom: 0.5rem;
        position: relative;
        padding-left: 1.5rem;
    }

        .activity-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #2ecc71;
            font-weight: bold;
        }

/* Base Styles */
.kashmir-tour-packages {
    color: #333;
    line-height: 1.6;
    background-color: #f6f9fb;
}

.section-header {
    text-align: center;
    padding: 2rem 2rem;
}

    .section-header h2 {
        font-size: 2.8rem;
        color: var(--primary-color);
        margin: 1rem 1rem;
        font-weight: 700;
    }

.divider {
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 0 auto 1.5rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.cta-button {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

    .cta-button:hover {
        background: #c0392b;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

/* Feature Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 25px auto;
    max-width: 1200px;
    padding:20px;
}

.feature-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

.icon-circle {
    width: 80px;
    height: 80px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Seasons Section */
.season-section {
    background: #f9f9f9;
    padding: 2rem 2rem;
}

.season-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.season-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 10px;
    color: white;
    transition: all 0.3s ease;
}

    .season-card:hover {
        transform: translateY(-10px);
    }

.spring {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: black;
}

    .spring:hover {
        background: var(--secondary-color);
        transition: all 0.3s ease;
        color: white;
    }

        .spring:hover .season-icon {
            color: white;
        }

.season-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.season-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Activities Section */
.activities-section {
    background: #f9f9f9;
    padding: 2rem 2rem;
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.activity-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .activity-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        background: var(--secondary-color) !important;
    }

        .activity-card:hover .activity-icon {
            color: white !important;
        }

        .activity-card:hover h3 {
            color: white !important;
        }

        .activity-card:hover p {
            color: white !important;
        }

        .activity-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
        }

.activity-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Booking CTA */
.booking-cta {
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: white;
    text-align: center;
    padding: 5rem 2rem;
}

    .booking-cta h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .booking-cta p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
        min-height: 100vh;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .booking-form {
        padding: 2rem;
        margin-top: 2rem;
    }

    .section {
        padding: 4rem 0;
    }

    .activity-list {
        columns: 1;
    }

    .faq-title {
        font-size: 2.2rem;
    }

    .faq-question {
        font-size: 1.1rem;
        padding: 1.2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .destination-tabs {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .safety-visual {
        padding-left: 0;
        margin-top: 3rem;
    }

    .safety-image-wrapper {
        transform: none;
    }

    .safety-badge-1,
    .safety-badge-2,
    .safety-badge-3 {
        animation: none;
    }
}

@media (max-width: 576px) {
    .safety-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .safety-icon {
        margin-bottom: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .season-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .hero-title, .hero-subtitle, .hero-feature {
        display: none;
    }

    .btn-booknow {
        color: white !important;
    }

    .destination-card {
        height: 300px;
    }

    .destination-overlay {
        padding: 1rem;
    }

    .destination-title {
        font-size: 1.25rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }

    .feature-icon {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Background Variations */
.bg-gradient {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}



/* Floating Scroll Buttons */
.floating-scroll-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.scroll-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0.8;
}

    .scroll-btn:hover {
        opacity: 1;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    .scroll-btn:active {
        transform: translateY(1px);
    }

.scroll-up {
    background: var(--secondary-color);
}

.scroll-down {
    background: var(--secondary-color);
}

/* Hide down button when at bottom of page */
body.at-bottom .scroll-down {
    display: none;
}

/* Hide up button when at top of page */
body.at-top .scroll-up {
    display: none;
}

.btn-donate {
    background: var(--gradient-red);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    transition: all var(--transition-normal);
    box-shadow: 0 4px 12px rgba(237, 27, 36, 0.3);
    border: none;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

    .btn-donate::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: var(--gradient-red-hover);
        transition: all var(--transition-normal);
        z-index: -1;
    }

    .btn-donate:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(237, 27, 36, 0.4);
        color: var(--white);
    }

        .btn-donate:hover::before {
            left: 0;
        }

    .btn-donate i {
        transition: transform var(--transition-normal);
    }

    .btn-donate:hover i {
        transform: scale(1.2);
    }