/* Package Page Styles - SRK Holidays */

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

body {
    font-family: 'Inter', sans-serif;
}

/* Hero Section */
/* Hero Section Slider */
.hero-gallery {
    position: relative;
    height: 70vh;
    height: 70dvh;
    min-height: 500px;
    overflow: hidden;
    background: #000;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.6) 100%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Highlights */
.highlight-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #fb923c;
}

/* Accordion Itinerary & FAQ */
.accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-header {
    padding: 18px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
    font-weight: 600;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: #f1f5f9;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0, 1, 0, 1);
    padding: 0 24px;
}

.accordion-item.active {
    border-color: #fb923c;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding: 20px 24px;
    transition: all 0.3s cubic-bezier(1, 0, 1, 0);
}

.accordion-item.active .accordion-header {
    background: #fff7ed;
    color: #ea580c;
}

.accordion-item .plus-minus {
    transition: transform 0.3s ease;
}

.accordion-item.active .plus-minus {
    transform: rotate(45deg);
}

/* Sticky Sidebar */
.sticky-sidebar {
    position: sticky;
    top: 120px;
    transition: all 0.3s ease;
}

/* Tables */
.package-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.package-table th {
    background: #f8fafc;
    padding: 16px;
    text-align: left;
    font-weight: 700;
    color: #475569;
    border-bottom: 1px solid #e2e8f0;
}

.package-table td {
    padding: 16px;
    border-bottom: 1px solid #f1f5f9;
    color: #64748b;
}

.package-table tr:last-child td {
    border-bottom: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}
