.hero-packages {
    position: relative;
    height: 90vh;
    min-height: 650px;
    /* KEY FIX: shift image focus upward slightly */
    background: url("img/m11.jpeg") center 20% / cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}


/* DARK OVERLAY (stronger + gradient for depth) */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}


/* CONTENT CONTAINER */

.hero-content {
    position: relative;
    max-width: 650px;
    padding: 20px;
    z-index: 2;
}


/* TYPOGRAPHY */

.hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1.1;
    font-weight: 600;
}

.hero-content .highlight {
    color: var(--orange-primary);
}

.hero-content p {
    margin-top: 15px;
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 500px;
}


/* BUTTONS */

.hero-buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}


/* PRIMARY */

.btn-primary {
    background: var(--orange-primary);
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-2px);
}


/* SECONDARY */

.btn-secondary {
    border: 1px solid #fff;
    color: #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
}


/* --- SERVICES SCROLL --- */

.services-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 10px 5px 18px;
    margin-bottom: 40px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* smoother feel */
    scroll-snap-type: x mandatory;
}

.services-scroll::-webkit-scrollbar {
    display: none;
}


/* CHIP STYLE (modern glass + hover lift) */

.chip {
    text-decoration: none;
    white-space: nowrap;
    padding: 11px 22px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-white);
    /* glass effect */
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    transition: all 0.25s ease;
    /* scroll snapping */
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
}


/* subtle glow animation effect */

.chip::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 120deg, transparent, rgba(255, 165, 0, 0.15), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}


/* HOVER */

.chip:hover {
    transform: translateY(-3px);
    border-color: var(--orange-primary);
    color: var(--orange-primary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.chip:hover::before {
    transform: translateX(100%);
}


/* ACTIVE STATE (optional for JS filter) */

.chip.active {
    background: var(--orange-primary);
    color: #000;
    border-color: var(--orange-primary);
    font-weight: 600;
}


/* --- PRICING SECTION --- */

.section-title {
    font-size: 1.8rem;
    /* Slightly smaller for mobile */
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.pricing-grid {
    display: grid;
    /* minmax(280px) ensures cards don't get too narrow on very small phones */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.price-card {
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    padding: 40px 25px;
    /* Tighter padding for mobile */
    border-radius: 12px;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.price-card.highlighted {
    border-color: var(--orange-primary);
    background: linear-gradient(145deg, #141414, #1a1a1a);
    /* On mobile, we remove the Y-translation to keep layout predictable */
    transform: none;
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--orange-primary);
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.price-card h3 {
    font-size: 1.1rem;
    color: var(--orange-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.pic-count {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.amount {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 5px;
}


/* --- USD STYLING --- */

.usd-amount {
    font-size: 1rem;
    color: var(--orange-primary);
    margin-bottom: 30px;
    font-weight: 600;
    opacity: 0.9;
}

.price-card.highlighted .usd-amount {
    color: #ffffff;
    opacity: 1;
}


/* --- BUTTONS --- */

.book-btn-link {
    display: block;
    text-decoration: none;
    text-align: center;
    border: 1px solid var(--orange-primary);
    color: var(--orange-primary);
    padding: 15px;
    font-weight: 700;
    border-radius: 6px;
    transition: 0.3s;
    margin-top: auto;
}

.book-btn-link:hover {
    background: var(--orange-primary);
    color: var(--bg-dark);
}


/* --- IMAGE SHOWCASE --- */

.image-showcase {
    margin: 40px 0;
}

.showcase-grid {
    display: grid;
    /* 2 columns on mobile is standard for photography sites */
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.showcase-item img {
    width: 100%;
    height: 180px;
    /* Slightly shorter height for mobile grid */
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
}


/* --- FOOTER --- */

.contact-footer {
    background: #141414;
    padding: 50px 20px;
    text-align: center;
    border-top: 1px solid var(--border-subtle);
}

.contact-container p {
    color: var(--orange-primary);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    color: var(--text-white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
}


/*Bo section*/


/* --- EVENTS SECTION --- */

.package-events {
    margin-top: 80px;
    padding-bottom: 60px;
}

.events-grid {
    display: grid;
    /* Flexible grid that stacks on mobile and expands on desktop */
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
    margin-bottom: 60px;
}

.event-card {
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    padding: 35px 15px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
}

.event-card h3 {
    font-size: 0.95rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.event-card:hover {
    border-color: var(--orange-primary);
    transform: translateY(-5px);
    background: rgba(255, 107, 0, 0.05);
    /* Subtle orange tint */
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-icon {
    font-size: 20px;
    color: var(--orange-primary);
}

.event-details i {
    margin-right: 8px;
    color: var(--orange-primary);
    width: 18px;
}

.event-details {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-top: 10px;
}

.event-card.active .event-details {
    max-height: 300px;
}

.event-details p {
    margin: 6px 0;
    font-size: 14px;
}

.price {
    font-weight: bold;
    color: var(--orange-primary);
    margin-top: 10px;
}

.book-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 14px;
    background: var(--orange-primary);
    color: #000;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}


/* --- PACKAGE INCLUDES --- */

.package-includes {
    background: var(--card-bg);
    /* Highlighting the inclusions with your brand color */
    border-left: 4px solid var(--orange-primary);
    padding: 40px;
    border-radius: 0 12px 12px 0;
}

.package-includes h3 {
    color: var(--orange-primary);
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
}

.package-includes ul {
    list-style: none;
    display: grid;
    /* Stays in two columns on larger mobile screens */
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.package-includes li {
    position: relative;
    padding-left: 30px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-white);
    opacity: 0.9;
}


/* Custom checkmark using your brand orange */

.package-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--orange-primary);
    font-weight: 900;
}


/*Back to the top section */


/* --- THEME VARIABLES --- */

:root {
    --bg-dark: #0D0D0D;
    --orange-primary: #FF6B00;
    --text-white: #F5F5DC;
    --card-bg: #141414;
    --border-subtle: rgba(255, 255, 255, 0.08);
}


/* Light Mode Variables */

[data-theme="light"] {
    --bg-dark: #F5F5F5;
    --text-white: #1A1A1A;
    --card-bg: #FFFFFF;
    --border-subtle: rgba(0, 0, 0, 0.1);
}


/* --- THEME TOGGLE BTN --- */

.theme-toggle {
    position: fixed;
    top: 25px;
    right: 20px;
    z-index: 2001;
    background: var(--card-bg);
    border: 1px solid var(--orange-primary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}


/* --- BACK TO TOP BTN --- */

#backToTop {
    position: fixed;
    bottom: 25px;
    right: 20px;
    z-index: 2000;
    background: var(--orange-primary);
    color: #000;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    /* Hidden by default */
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

#backToTop:hover,
.theme-toggle:hover {
    transform: translateY(-5px);
}


/* Mobile Adjustments */

@media (max-width: 600px) {
    .theme-toggle {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    #backToTop {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}


/*Packages mobile*/


/* =========================
   HERO PACKAGES MOBILE FIX
========================= */

@media (max-width: 1024px) {
    .hero-packages {
        height: 80vh;
        background-position: center 25%;
    }
    .hero-content {
        max-width: 90%;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    /* HERO */
    .hero-packages {
        height: auto;
        min-height: 70vh;
        padding: 80px 20px;
        background-position: center top;
    }
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }
    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    .hero-content p {
        font-size: 1rem;
        margin: 15px auto 0;
    }
    .hero-buttons {
        justify-content: center;
    }
    /* SERVICES SCROLL */
    .services-scroll {
        gap: 10px;
        padding: 10px 0 15px;
    }
    .chip {
        font-size: 0.85rem;
        padding: 10px 18px;
    }
    /* PRICING */
    .section-title {
        font-size: 1.5rem;
        text-align: center;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .price-card {
        padding: 30px 20px;
    }
    .price-card.highlighted {
        transform: none;
    }
    /* SHOWCASE */
    .showcase-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .showcase-item img {
        height: 160px;
    }
    /* EVENTS */
    .events-grid {
        grid-template-columns: 1fr 1fr;
    }
    .event-card {
        padding: 25px 12px;
    }
    /* PACKAGE INCLUDES */
    .package-includes {
        padding: 30px 20px;
    }
    .package-includes ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    /* HERO */
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-content p {
        font-size: 0.9rem;
    }
    /* CHIPS */
    .chip {
        font-size: 0.8rem;
        padding: 9px 15px;
    }
    /* PRICING */
    .pic-count {
        font-size: 1.6rem;
    }
    .amount {
        font-size: 1rem;
    }
    /* SHOWCASE */
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    .showcase-item img {
        height: 200px;
    }
    /* EVENTS */
    .events-grid {
        grid-template-columns: 1fr;
    }
    /* FOOTER */
    .contact-links {
        gap: 12px;
    }
}