<style>
:root {
    --primary-teal: #00a9b5;
    --dark-navy: #081c24;
    --soft-white: #f8fbfc;
    --text-grey: #667085;
    --light-grey: #f2f4f6;
    --transition: all 0.3s ease;
    --shadow-sm: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-md: 0 20px 40px rgba(0,0,0,0.12);
}


body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: white;
    color: var(--dark-navy);
    line-height: 1.6;
}

/* Fixed Header (common across all pages) */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

header.scrolled {
    padding: 15px 8%;
    background: rgba(255,255,255,0.98);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--dark-navy);
}

.logo i { color: #e6c900 font-size: 2rem; }

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav a {
    text-decoration: none;
    color: var(--dark-navy);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: var(--transition);
}

nav a::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px;
    background: #e6c900 transition: var(--transition);
}

nav a:hover::after { width: 100%; }

.auth-btns { display: flex; gap: 15px; align-items: center; }

.btn-login { color: var(--dark-navy); font-weight: 600; text-decoration: none; }

.btn-signup {
    background: #e6c900 color: white; padding: 12px 28px;
    border-radius: 12px; text-decoration: none; font-weight: 600;
    transition: var(--transition);
}

.btn-signup:hover { background: #008d97; transform: translateY(-2px); }

.mobile-menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--dark-navy);
    cursor: pointer;
}

/* Common Sections */
.section { padding: 100px 8%; background: white; }

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.section-header h2 { font-size: 2.5rem; font-weight: 800; }

.section h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 40px; text-align: center; }

/* Buttons */
.btn-explore, .btn-book, .btn-contact, .btn-submit-review, .btn-load {
    background: #e6c900
    color: white;
    padding: 18px 40px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: #e6c900;
    display: inline-block;
}

.btn-explore:hover, .btn-book:hover, .btn-contact:hover, .btn-submit-review:hover, .btn-load:hover {
    background: #008d97;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,169,181,0.4);
}

.btn-submit {
    width: 100%;
    background: #e6c900
    color: white;
    border: none;
    padding: 18px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: #008d97;
    transform: translateY(-3px);
}

/* Footer (common) */
footer {
    padding: 80px 8% 40px;
    background: #f9fafb;
    color: var(--text-grey);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    color: var(--dark-navy);
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.social-icons {
    display: flex; gap: 20px; font-size: 1.8rem; margin-top: 20px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--dark-navy);
}

.footer-col ul li a {
    color: var(--text-grey);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover { color: #e6c900 }

/* Home Page Specific */
.hero {
    position: relative;
    height: 100vh;
    margin-top: 80px;
    overflow: hidden;
    color: white;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(8,28,36,0.5), rgba(8,28,36,0.7)), url() center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide:nth-child(1) { background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920&q=80'); }
.hero-slide:nth-child(2) { background-image: url('https://images.unsplash.com/photo-1519904981063-b0cf448d479e?auto=format&fit=crop&w=1920&q=80'); }
.hero-slide:nth-child(3) { background-image: url('https://images.unsplash.com/photo-1559523195-5b2c3e5d7f9d?auto=format&fit=crop&w=1920&q=80'); }

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-content h1 span { color: #e6c900 }

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: white;
    transform: scale(1.3);
}

.filter-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab {
    padding: 12px 28px;
    border-radius: 50px;
    border: 1px solid #ddd;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.tab:hover { border-color: #e6c900 }

.tab.active {
    background: #e6c900
    color: white;
    border-color: #e6c900
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.card {
    border-radius: 24px;
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.card-info {
    padding: 30px;
}

.card-info h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.deal-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-grey);
    font-size: 0.9rem;
    margin: 15px 0;
}

.price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-navy);
}

.view-link {
    color: #e6c900
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.view-link:hover { text-decoration: underline; }

.destinations .card-info {
    position: relative;
    height: 120px;
    margin-top: -120px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
    padding: 30px;
}

.destinations h3 {
    font-size: 1.6rem;
    margin: 0 0 8px 0;
    font-weight: 700;
}

.destinations .package-count {
    font-size: 1rem;
    opacity: 0.9;
}

.reviews {
    background: var(--light-grey);
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
}

.review-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.stars {
    color: #ffb400;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.review-text {
    font-style: italic;
    margin-bottom: 25px;
    color: #444;
    font-size: 1.1rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h4 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.app-section {
    background: var(--dark-navy);
    padding: 120px 8%;
    color: white;
    display: flex;
    align-items: center;
    gap: 80px;
}

.app-content { flex: 1; }

.app-content h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 800;
}

.app-content p {
    opacity: 0.8;
    margin-bottom: 40px;
    max-width: 550px;
    font-size: 1.1rem;
}

.download-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.store-link {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: white;
    text-decoration: none;
    padding: 18px 32px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
    min-width: 220px;
}

.store-link:hover {
    background: #e6c900
    transform: translateY(-5px);
}

.store-link i { font-size: 2.2rem; }

.store-link div span {
    display: block;
    font-size: 0.8rem;
    opacity: 0.7;
}

.store-link div b { font-size: 1.3rem; }

/* About Page */
.about-hero {
    position: relative;
    height: 80vh;
    margin-top: 80px;
    background: linear-gradient(rgba(8,28,36,0.5), rgba(8,28,36,0.7)),
                url('https://images.unsplash.com/photo-1533105079780-92b9be482077?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: white;
    padding: 0 8%;
}

.about-hero-content { max-width: 800px; }

.about-hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.about-hero h1 span { color: #e6c900 }

.about-hero p {
    font-size: 1.4rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.story {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

.story-text { flex: 1; }

.story-text p {
    font-size: 1.1rem;
    color: var(--text-grey);
    margin-bottom: 20px;
}

.story-image {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 120px;
}

.mv-card {
    background: var(--light-grey);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.mv-card h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #e6c900
}

.mv-card p {
    font-size: 1.1rem;
    color: var(--text-grey);
}

.values {
    background: var(--light-grey);
    padding: 120px 0;
    margin: 0 -8%;
}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 8%;
}

.values h2 {
    color: var(--dark-navy);
    text-align: center;
    margin-bottom: 80px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: #e6c900
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon i {
    font-size: 2.5rem;
    color: white;
}

.value-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.value-content p {
    color: var(--text-grey);
    font-size: 1.1rem;
}

.about-cta {
    text-align: center;
    padding: 80px;
    background: var(--light-grey);
    border-radius: 24px;
    margin: 120px auto 0;
    max-width: 1000px;
}

.about-cta h2 { margin-bottom: 20px; }

.about-cta p {
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-grey);
    font-size: 1.1rem;
}

/* Contact Page */
.contact-hero {
    position: relative;
    height: 70vh;
    margin-top: 80px;
    background: linear-gradient(rgba(8,28,36,0.5), rgba(8,28,36,0.7)),
                url('https://images.unsplash.com/photo-1516026672322-bc52d61a55d5?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 8%;
}

.contact-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-hero h1 span { color: #e6c900 }

.contact-hero p {
    font-size: 1.4rem;
    max-width: 800px;
    opacity: 0.9;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.contact-card {
    background: var(--light-grey);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }

.contact-card i {
    font-size: 3rem;
    color: #e6c900
    margin-bottom: 20px;
}

.contact-card h3 { font-size: 1.6rem; margin-bottom: 15px; }

.contact-card a { color: #e6c900 text-decoration: none; }

.contact-form {
    max-width: 800px;
    margin: 0 auto 80px;
    background: var(--light-grey);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.location-map {
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin: 80px auto 0;
    max-width: 1200px;
}



.faqs-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.faqs-hero h1 span { color: #e6c900 }

.faqs-hero p {
    font-size: 1.4rem;
    max-width: 800px;
    opacity: 0.9;
}

.faq-accordion {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-grey);
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover { box-shadow: var(--shadow-md); }

.faq-question {
    padding: 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.3rem;
}

.faq-question i {
    font-size: 1.5rem;
    color: #e6c900
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
    padding: 0 30px 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: var(--text-grey);
    font-size: 1.1rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 40px;
}

.faq-cta {
    text-align: center;
    margin-top: 80px;
    padding: 60px;
    background: var(--light-grey);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.faq-cta h2 { margin-bottom: 20px; }

.faq-cta p {
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-grey);
    font-size: 1.1rem;
}

/* Package Details Page */
.package-hero {
    position: relative;
    height: 80vh;
    margin-top: 80px;
    
    display: flex;
    align-items: center;
    color: white;
    padding: 0 8%;
}

.package-hero-content { max-width: 800px; }

.package-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.package-hero h1 span { color: #e6c900 }

.package-meta {
    display: flex;
    gap: 40px;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.package-meta i { margin-right: 10px; color: #e6c900 }

.price-from {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
}

.price-from span { font-size: 1.2rem; font-weight: normal; }

.overview p { font-size: 1.1rem; margin-bottom: 20px; color: var(--text-grey); max-width: 800px; }

.itinerary { background: var(--light-grey); }

.day {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.day h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #e6c900
}

.gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery img:hover { transform: scale(1.05); box-shadow: var(--shadow-md); }

.inclusions, .exclusions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.incl-item, .excl-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.incl-item i { color: #e6c900 font-size: 1.5rem; margin-top: 5px; }

.excl-item i { color: #e74c3c; font-size: 1.5rem; margin-top: 5px; }

.reviews-section { background: var(--light-grey); }

/* Reviews Page */
.reviews-hero {
    position: relative;
    height: 70vh;
    margin-top: 80px;
    background: linear-gradient(rgba(8,28,36,0.5), rgba(8,28,36,0.7)),
                url('https://images.unsplash.com/photo-1516426122078-cecafe251b60?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 8%;
}

.reviews-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.reviews-hero h1 span { color: #e6c900 }

.reviews-hero p {
    font-size: 1.4rem;
    max-width: 800px;
    opacity: 0.9;
}

.overall-rating { text-align: center; margin-bottom: 80px; }

.rating-score {
    font-size: 5rem;
    font-weight: 800;
    color: #e6c900
    margin-bottom: 10px;
}

.stars-large {
    font-size: 2.5rem;
    color: #ffb400;
    margin-bottom: 20px;
}

.rating-based {
    font-size: 1.2rem;
    color: var(--text-grey);
}

.load-more { text-align: center; margin-bottom: 80px; }

.add-review {
    max-width: 900px;
    margin: 0 auto 80px;
    background: var(--light-grey);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.add-review h2 { text-align: left; margin-bottom: 30px; }

.star-rating {
    display: flex;
    gap: 10px;
    font-size: 2rem;
    color: #ccc;
    cursor: pointer;
    margin-bottom: 20px;
}

.star-rating .star:hover,
.star-rating .star.active { color: #ffb400; }

/* Forms (common) */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 1rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal.active { display: flex; }

.modal-content {
    background: white;
    max-width: 600px;
    width: 90%;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow-md);
}

.close-modal {
    position: absolute;
    top: 20px; right: 25px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-grey);
}

.modal h2 { font-size: 2rem; margin-bottom: 30px; }

/* Dropdown (from home) */
.dropdown { position: relative; }

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    min-width: 220px;
    box-shadow: var(--shadow-md);
    border-radius: 16px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
}

.dropdown-content a {
    display: block;
    padding: 12px 25px;
    color: var(--dark-navy);
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-content a:hover {
    background: var(--light-grey);
    color: #e6c900
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: var(--shadow-md);
    padding: 20px;
}

.mobile-nav ul {
    flex-direction: column;
    gap: 20px;
}

/* Responsive (merged from all pages - taking the most comprehensive) */
@media (max-width: 1400px) {
    .gallery { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 992px) {
    .hero-content h1 { font-size: 3.5rem; }
    .app-section { flex-direction: column; text-align: center; gap: 50px; }
    .download-btns { justify-content: center; }
    .section-header { flex-direction: column; gap: 20px; align-items: flex-start; }
    .grid { gap: 30px; }
    .card img { height: 300px; }
    .about-hero h1 { font-size: 3.8rem; }
    .story { flex-direction: column; }
    .story-image { order: -1; }
    .mission-vision { grid-template-columns: 1fr; }
    .package-hero h1 { font-size: 3.5rem; }
    .package-meta { flex-wrap: wrap; gap: 20px; }
    .gallery { grid-template-columns: repeat(3, 1fr); }
    .contact-hero h1, .faqs-hero h1, .reviews-hero h1 { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    header { padding: 20px 5%; }
    nav ul { display: none; }
    .mobile-menu-toggle { display: block; }
    .mobile-nav.active { display: block; }
    .auth-btns { gap: 10px; }
    .btn-signup { padding: 10px 20px; font-size: 0.9rem; }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-content p { font-size: 1.2rem; }
    .section { padding: 80px 5%; }
    .app-content h2 { font-size: 2.8rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .dropdown-content { position: static; transform: none; box-shadow: none; padding: 0; }
    .destinations h3 { font-size: 1.4rem; }
    .about-hero { height: 70vh; text-align: center; }
    .about-hero h1 { font-size: 3.2rem; }
    .values { padding: 80px 0; margin: 0 -5%; }
    .values-container { padding: 0 5%; }
    .story-image img { height: 400px; }
    .value-item { flex-direction: column; text-align: center; }
    .value-icon { margin: 0 auto 20px; }
    .contact-hero, .faqs-hero { height: 60vh; }
    .contact-hero h1, .faqs-hero h1 { font-size: 3rem; }
    .contact-hero p, .faqs-hero p { font-size: 1.2rem; }
    .form-row { grid-template-columns: 1fr; }
    .location-map { height: 400px; }
    .faq-question { font-size: 1.2rem; padding: 25px; }
    .package-hero { height: 70vh; text-align: center; }
    .package-hero-content { margin: 0 auto; }
    .package-meta { flex-direction: column; gap: 15px; align-items: center; }
    .price-from { text-align: center; }
    .gallery { grid-template-columns: repeat(2, 1fr); }
    .gallery img { height: 180px; }
    .reviews-hero { height: 60vh; }
    .reviews-hero h1 { font-size: 3rem; }
    .reviews-hero p { font-size: 1.2rem; }
    .rating-score { font-size: 4rem; }
    .stars-large { font-size: 2rem; }
    .star-rating { justify-content: center; }
}

@media (max-width: 480px) {
    .gallery { grid-template-columns: 1fr; }
}

</style>