/* ==========================================================================
   TRAVEL CEYLON NOW - UI Component Library
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. HERO SECTION & IMAGE SLIDER CAROUSEL
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: calc(var(--header-height) + 1rem);
    padding-bottom: 4rem;
    background-color: var(--bg-primary);
    overflow: hidden;
}

/* Background Image Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s ease;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.42) contrast(1.1) grayscale(20%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 12, 0.65) 0%, rgba(10, 10, 12, 0.35) 50%, rgba(10, 10, 12, 0.95) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 0;
    color: #ffffff !important;
}

.hero .badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
}

.hero-title {
    font-size: clamp(2.75rem, 5.5vw, 5.25rem);
    margin: 1rem 0 1.25rem;
    color: #ffffff !important;
    line-height: 1.08;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-title .text-gold {
    color: #FACC15 !important;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    color: #ffffff !important;
    opacity: 0.95;
    max-width: 680px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

/* Hero CTA Buttons - High Contrast & Visibility */
.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.hero .btn-primary {
    background-color: #ffffff !important;
    color: #0f172a !important;
    border: 1px solid #ffffff !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero .btn-primary:hover {
    background-color: #f8fafc !important;
    color: #0f172a !important;
    transform: translateY(-2px);
}

.hero .btn-outline {
    background-color: rgba(255, 255, 255, 0.18) !important;
    color: #ffffff !important;
    border: 1.5px solid #ffffff !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-weight: 700 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.hero .btn-outline:hover {
    background-color: #ffffff !important;
    color: #0f172a !important;
    border-color: #ffffff !important;
    transform: translateY(-2px);
}

/* Slider Controls & Dots */
.hero-slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-slider-dots {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.hero-dot.active {
    width: 32px;
    border-radius: 20px;
    background-color: var(--text-primary);
    border-color: var(--text-primary);
}

.hero-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: rgba(10, 10, 12, 0.5);
    backdrop-filter: blur(6px);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.hero-arrow:hover {
    border-color: var(--text-primary);
    background: var(--text-primary);
    color: var(--text-inverse);
}

/* --------------------------------------------------------------------------
   2. FLOATING QUICK INQUIRY BUTTON (BOTTOM CENTER) & WHATSAPP BUTTON (BOTTOM RIGHT)
   -------------------------------------------------------------------------- */
.floating-inquiry-btn {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1500;
    background: #0f172a !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.85rem 1.85rem;
    border-radius: 50px;
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.2);
    transition: all var(--transition-smooth);
    cursor: pointer;
}

.floating-inquiry-btn:hover {
    transform: translateX(-50%) translateY(-3px);
    background: #1e293b !important;
    color: #ffffff !important;
    border-color: #334155;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.7);
}

/* Floating WhatsApp Button (Bottom Right Corner) */
.whatsapp-float-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1500;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #25D366;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.65);
}

.whatsapp-float-btn svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

/* --------------------------------------------------------------------------
   3. PACKAGE CARDS (GRID & ALIGNMENT FIXES)
   -------------------------------------------------------------------------- */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    width: 100%;
}

.package-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    min-width: 0;
}

.package-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-subtle);
}

.package-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.package-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.05);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.package-card:hover .package-image-wrapper img {
    transform: scale(1.08);
}

.package-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.88) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    color: #000000 !important;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.688rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700 !important;
    border: 1px solid rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18) !important;
}

.package-rating {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(8px);
    color: #FACC15;
    padding: 0.35rem 0.65rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    border: 1px solid var(--border-light);
}

.package-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 0;
}

.package-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.813rem;
    margin-bottom: 0.75rem;
}

.package-meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.package-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    transition: color var(--transition-fast);
    line-height: 1.25;
}

.package-card:hover .package-title {
    color: var(--accent-silver);
}

.package-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 100%;
}

.package-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-light);
    margin-top: auto;
    gap: 1rem;
}

.package-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.688rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.price-value {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
}

.price-value span {
    font-size: 0.813rem;
    font-family: var(--font-body);
    color: var(--text-secondary);
    font-weight: 400;
}

/* --------------------------------------------------------------------------
   4. SINGLE PACKAGE DETAIL VIEW COMPONENTS
   -------------------------------------------------------------------------- */
.package-detail-header {
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}

.package-header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.package-badges-row {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 1rem;
    margin: 2rem 0 3rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    width: 100%;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-width: 0;
}

.gallery-item:first-child {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.view-all-photos-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.813rem;
    font-weight: 600;
    border: 1px solid var(--border-light);
}

/* Two Column Layout Grid Fix */
.package-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 3.5rem;
    width: 100%;
}

.package-main-content {
    min-width: 0;
}

.detail-section {
    margin-bottom: 3.5rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid var(--border-light);
    min-width: 0;
}

.detail-section:last-child {
    border-bottom: none;
}

.detail-section-title {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.highlight-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-light);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    min-width: 0;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-glass-card);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Day-by-Day Itinerary Accordion Timeline */
.itinerary-timeline {
    position: relative;
    padding-left: 2rem;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 15px;
    bottom: 15px;
    width: 2px;
    background-color: var(--border-light);
}

.itinerary-day {
    position: relative;
    margin-bottom: 1.5rem;
    min-width: 0;
}

.itinerary-day-node {
    position: absolute;
    left: -2rem;
    top: 1.25rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--bg-primary);
    border: 2px solid var(--text-primary);
    z-index: 2;
}

.itinerary-day.active .itinerary-day-node {
    background-color: var(--text-primary);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

.itinerary-header {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.75rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: border-color var(--transition-fast);
}

.itinerary-header:hover {
    border-color: var(--border-hover);
}

.itinerary-title-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.day-badge {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    flex-shrink: 0;
}

.itinerary-header h4 {
    font-size: 1.25rem;
}

.itinerary-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-light);
    border-top: none;
    border-bottom-left-radius: var(--radius-md);
    border-bottom-right-radius: var(--radius-md);
    padding: 0 1.75rem;
}

.itinerary-day.active .itinerary-content {
    max-height: 800px;
    padding: 1.5rem 1.75rem;
}

.itinerary-day.active .itinerary-header {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-color: var(--border-hover);
}

.itinerary-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

.itinerary-meta-box {
    background: var(--bg-glass-card);
    border: 1px solid var(--border-light);
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.813rem;
}

.itinerary-meta-box h6 {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.688rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

/* Included / Excluded Split List */
.included-excluded-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.checklist-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2rem;
}

.checklist-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.938rem;
    color: var(--text-secondary);
}

.checklist-item svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.check-inc svg { color: #22C55E; }
.check-exc svg { color: #EF4444; }

/* Sticky Booking Widget Sidebar */
.package-sidebar {
    min-width: 0;
}

.booking-sidebar-widget {
    position: sticky;
    top: calc(var(--header-height) + 1.5rem);
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-subtle);
    width: 100%;
}

.widget-price-header {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.booking-form-group {
    margin-bottom: 1.25rem;
}

.booking-form-group label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.booking-input {
    width: 100%;
    padding: 0.85rem 1rem;
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.938rem;
    transition: border-color var(--transition-fast);
}

.booking-input:focus {
    border-color: var(--text-primary);
}

.tier-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.tier-option {
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    text-align: center;
    cursor: pointer;
    font-size: 0.813rem;
    transition: all var(--transition-fast);
}

.tier-option.active {
    border-color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.08);
}

.widget-summary {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-light);
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin: 1.5rem 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.summary-row.total {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.125rem;
    padding-top: 0.5rem;
    margin-bottom: 0;
    border-top: 1px solid var(--border-light);
}

/* --------------------------------------------------------------------------
   5. BLOG CARDS & LAYOUT COMPONENTS
   -------------------------------------------------------------------------- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2.5rem;
    width: 100%;
}

.blog-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
}

.blog-card-image {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.06);
}

.blog-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.blog-title {
    font-size: 1.625rem;
    line-height: 1.25;
    margin-bottom: 0.85rem;
    color: var(--text-primary);
}

.blog-excerpt {
    color: var(--text-secondary);
    font-size: 0.938rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* --------------------------------------------------------------------------
   6. ABOUT US WIDE TEAM IMAGE & SERVICES
   -------------------------------------------------------------------------- */
.wide-team-banner {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    margin: 3rem 0 5rem;
}

.wide-team-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75) contrast(1.08);
}

.wide-team-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    background: linear-gradient(0deg, rgba(10, 10, 12, 0.95) 0%, rgba(10, 10, 12, 0.4) 60%, transparent 100%);
    color: #FFFFFF;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2.25rem;
    transition: border-color var(--transition-fast);
}

.service-card:hover {
    border-color: var(--border-hover);
}

/* --------------------------------------------------------------------------
   7. MODALS & POPUPS
   -------------------------------------------------------------------------- */
.modal-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-smooth);
    padding: 1.5rem;
}

.modal-wrapper.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 600px;
    padding: 2.5rem;
    position: relative;
    transform: scale(0.95);
    transition: transform var(--transition-smooth);
    box-shadow: var(--shadow-subtle);
}

.modal-wrapper.active .modal-content {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.modal-close-btn:hover {
    color: var(--text-primary);
    border-color: var(--text-primary);
}

/* --------------------------------------------------------------------------
   8. RESPONSIVE BREAKPOINTS FOR COMPONENTS
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .package-layout {
        grid-template-columns: 1fr;
    }
    .booking-sidebar-widget {
        position: static;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px;
    }
    .wide-team-banner {
        height: 360px;
    }
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    .included-excluded-grid {
        grid-template-columns: 1fr;
    }
    .itinerary-details-grid {
        grid-template-columns: 1fr;
    }
    .wide-team-banner {
        height: 280px;
    }
    .floating-inquiry-btn {
        bottom: 1.25rem;
        padding: 0.75rem 1.4rem;
        font-size: 0.75rem;
    }
    .whatsapp-float-btn {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 48px;
        height: 48px;
    }
    .whatsapp-float-btn svg {
        width: 24px;
        height: 24px;
    }
}
