/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* prevent horizontal scroll on iOS/Safari */
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden; /* safety */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden; /* prevent child overflow causing horizontal scroll */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn.primary {
    background: linear-gradient(45deg, #2c3e50, #3498db);
    color: white;
}

.btn.primary:hover {
    background: linear-gradient(45deg, #34495e, #2980b9);
    transform: translateY(-2px);
}

.btn.secondary {
    background: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.btn.secondary:hover {
    background: #2c3e50;
    color: white;
}

.btn-link {
    color: #3498db;
    font-weight: 500;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: #2980b9;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.logo-img {
    height: 50px;
    width: auto;
    margin-right: 0.5rem;
}

.logo i {
    margin-right: 0.5rem;
    color: #3498db;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-menu a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #3498db;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #3498db;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons .btn {
    margin: 0 10px;
}

/* Improve visibility of secondary button in hero */
.hero .btn.secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.9);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: saturate(120%) blur(2px);
}

.hero .btn.secondary:hover {
    background-color: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    transform: translateY(-2px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Sections */
section {
    padding: 80px 0;
}

/* Blog Page Hero */
.page-hero {
    position: relative;
    min-height: 40vh;
    display: grid;
    place-items: center;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, rgba(44,62,80,0.85), rgba(52,152,219,0.65)), url('../images/destinations/meghalaya.jpg') center/cover no-repeat;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.35) 100%);
}

.page-hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 60px 20px;
}

.page-hero .hero-content h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 12px;
}

.page-hero .hero-content p {
    font-size: 1.1rem;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .page-hero { min-height: 32vh; }
    .page-hero .hero-content h1 { font-size: 2.1rem; }
    .page-hero .hero-content p { font-size: 1rem; }
}

/* Page-specific hero backgrounds */
.page-hero--about {
    background: linear-gradient(135deg, rgba(44,62,80,0.85), rgba(52,152,219,0.65)), url('../images/destinations/assamteagarden.jpg') center/cover no-repeat;
}
.page-hero--destinations {
    background: linear-gradient(135deg, rgba(44,62,80,0.85), rgba(52,152,219,0.65)), url('../images/destinations/dzukouvallynagaland.jpg') center/cover no-repeat;
}
.page-hero--packages {
    background: linear-gradient(135deg, rgba(44,62,80,0.85), rgba(52,152,219,0.65)), url('../images/gallery/karengsuri.jpg') center/cover no-repeat;
}
.page-hero--contact {
    background: linear-gradient(135deg, rgba(44,62,80,0.85), rgba(52,152,219,0.65)), url('../images/destinations/sikkim.jpg') center/cover no-repeat;
}
.page-hero--blog {
    background: linear-gradient(135deg, rgba(44,62,80,0.85), rgba(52,152,219,0.65)), url('../images/destinations/meghalaya.jpg') center/cover no-repeat;
}

/* Features Section */
.features {
    background: #f8f9fa;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Popular Destinations */
.popular-destinations h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.destination-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.destination-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destination-card:hover img {
    transform: scale(1.1);
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.destinations-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Testimonials */
.testimonials {
    background: #2c3e50;
    color: white;
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 3rem;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    display: none;
    padding: 2rem;
}

.testimonial.active {
    display: block;
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Destinations Detail Page */
.destinations-section {
    padding: 40px 0;
}

.destination-detail {
    margin-bottom: 4rem;
    padding: 3rem 0;
    border-bottom: 1px solid #eee;
}

.destination-detail:last-child {
    border-bottom: none;
}

.destination-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.destination-content > .destination-text,
.destination-content > .destination-image {
    flex: 1 1 0;
}

/* Use row-reverse for the alternating layout */
.destination-content.reverse {
    flex-direction: row-reverse;
}

.destination-text h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.destination-text p {
    margin-bottom: 2rem;
    color: #666;
}

.highlights {
    margin-bottom: 2rem;
}

.highlights h3 {
    color: #3498db;
    margin-bottom: 1rem;
}

.highlights ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.highlights ul li:last-child {
    border-bottom: none;
}

.highlights ul li strong {
    color: #2c3e50;
}

.best-time {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.best-time h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.best-time i {
    color: #3498db;
    margin-right: 0.5rem;
}

.destination-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

/* Packages Section */
.package-categories {
    background: #f8f9fa;
    padding: 2rem 0;
}

.category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-btn {
    padding: 10px 20px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: #3498db;
    color: white;
    border-color: #3498db;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.package-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This line is redundant and can be removed */
    transition: transform 0.3s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e74c3c;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.package-badge.seasonal {
    background: #f39c12;
}

.package-content {
    padding: 1.5rem;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.package-header h3 {
    color: #2c3e50;
    margin-bottom: 0;
}

.package-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #f39c12;
    font-size: 0.9rem;
}

.package-rating span {
    color: #666;
    margin-left: 5px;
}

.package-details {
    margin: 1.5rem 0;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.detail-item i {
    margin-right: 0.5rem;
    color: #3498db;
    width: 15px;
}

.package-highlights {
    margin: 1.5rem 0;
}

.package-highlights h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.package-highlights ul li {
    padding: 0.25rem 0;
    color: #666;
    font-size: 0.9rem;
}

.package-highlights ul li::before {
    content: '✓';
    color: #27ae60;
    margin-right: 0.5rem;
    font-weight: bold;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.package-price {
    display: flex;
    flex-direction: column;
}

.package-price .from {
    font-size: 0.8rem;
    color: #666;
}

.package-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.package-price .per-person {
    font-size: 0.8rem;
    color: #666;
}

.package-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Package Inclusions */
.package-inclusions {
    background: #f8f9fa;
}

.package-inclusions h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.inclusion-item {
    text-align: center;
    padding: 1.5rem;
}

.inclusion-item i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.inclusion-item h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.inclusion-item p {
    color: #666;
    font-size: 0.9rem;
}

/* About Page Styles */
.our-story {
    padding: 60px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
}

.story-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

.story-image img {
    width: 100%;
    border-radius: 10px;
}

.mission-vision {
    background: #f8f9fa;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mv-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.mv-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.mv-card p {
    color: #666;
    line-height: 1.7;
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item .feature-icon {
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #666;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    background: #f8f9fa;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 1.5rem;
}

.member-info h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.member-title {
    color: #3498db;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.member-location {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* ===============================
   Contact Page: Layout & Mobile
   =============================== */
.contact-section {
    background: #f8f9fb;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2rem;
    align-items: start;
}

.contact-form-section,
.contact-info-section {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    padding: 2rem;
}

.contact-form-section h2,
.contact-info-section h2 {
    margin-bottom: 1rem;
}

.contact-form .form-group { margin-bottom: 1rem; }

.contact-form label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 0.9rem;
    border: 1px solid #e1e5ea;
    border-radius: 8px;
    background: #fafbfc;
    font: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52,152,219,0.15);
    background: #fff;
}

.contact-form button[type="submit"] {
    width: 100%;
    margin-top: 0.5rem;
}

.contact-info-section .contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.contact-info-section .info-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #eef1f5;
    border-radius: 10px;
    background: #fcfdff;
}

.contact-info-section .info-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: #fff;
    flex-shrink: 0;
}

.contact-info-section .info-details h3 {
    margin: 0 0 4px;
    font-size: 1.05rem;
}
.contact-info-section .info-details p,
.contact-info-section .info-details span {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.social-media { margin-top: 1.5rem; }
.social-links { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.social-link { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid #e6ebf1; border-radius: 999px; }

.whatsapp-contact { margin-top: 1.25rem; }
.whatsapp-btn { display: inline-flex; align-items: center; gap: 10px; padding: 12px 16px; color: #fff; background: #25D366; border-radius: 8px; }

.map-section .map-container { border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.07); }
.map-section .map-container iframe { display: block; width: 100%; }

.faq-section .faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.faq-section .faq-item {
    background: #fff;
    border: 1px solid #eef1f5;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Breakpoints: stack and tighten spacing on small screens */
@media (max-width: 1024px) {
    .contact-content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .contact-form-section, .contact-info-section { padding: 1.25rem; }
    .faq-section .faq-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .contact-form-section h2, .contact-info-section h2 { font-size: 1.4rem; }
    .btn { padding: 10px 16px; }
    .faq-section .faq-grid { grid-template-columns: 1fr; }
    .social-links { gap: 0.5rem; }
    .social-link { padding: 6px 10px; }
}

.member-info p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Awards Section */
.awards-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.award-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.award-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #f39c12, #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
}

.award-item h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.award-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Contact Page Styles */
.contact-section {
    padding: 60px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-section h2,
.contact-info-section h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.contact-info {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #3498db, #2475a8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 1.2rem;
}

.info-details h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.info-details p {
    color: #666;
    margin-bottom: 0.5rem;
}

.info-details span {
    color: #3498db;
    font-size: 0.9rem;
}

.social-media {
    margin: 2rem 0;
}

.social-media h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    color: #666;
}

.social-link:hover {
    transform: translateY(-2px);
}

.social-link i {
    margin-right: 0.5rem;
    color: #2c3e50; /* darker for better contrast on white chip */
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 25px;
    background: #25d366;
    color: white;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.whatsapp-btn:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.whatsapp-btn i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* Map Section */
.map-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn.secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-buttons .btn.secondary:hover {
    background: white;
    color: #2c3e50;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.7;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.footer .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer .social-links a {
    width: 40px;
    height: 40px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    background: white;
    color: #3498db;
    transform: translateY(-2px);
}

/* Footer logo text color override for contrast */
.footer .logo,
.footer .logo span,
.footer .logo a {
    color: #ffffff;
}

.footer .contact-info {
    margin-top: 1rem;
}

.footer .contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer .contact-info i {
    margin-right: 0.5rem;
    color: #3498db;
    width: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: 0; /* keep anchored to viewport */
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: transform 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        transform: translateX(-100%); /* off-canvas without increasing layout width */
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons .btn {
        display: block;
        margin: 10px 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .destination-content {
        flex-direction: column;
        gap: 1.25rem;
    }

    /* Reverse rows also stack in natural order */
    .destination-content.reverse {
        flex-direction: column;
    }

    .destination-content.reverse .destination-text,
    .destination-content.reverse .destination-image {
        order: unset;
    }

    .destination-text h2 {
        font-size: 1.5rem;
    }

    .destination-text p {
        font-size: 1rem;
    }

    .destination-image img {
        width: 100%;
        height: auto; /* remove fixed height on mobile to prevent cropping */
        max-height: 420px; /* optional safety limit */
    }

    .story-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .features-grid,
    .mv-grid,
    .inclusions-grid {
        grid-template-columns: 1fr;
    }

    .package-footer {
        flex-direction: column;
        gap: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .social-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Animation for page load */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 1000;
}

/* Blog Page Styles */
.blog-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.featured-post {
    margin-bottom: 60px;
}

.featured-post h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.blog-post.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-post.featured:hover {
    transform: translateY(-5px);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.blog-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.post-image {
    height: 250px;
    overflow: hidden;
}

.blog-post.featured .post-image {
    height: 100%;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover .post-image img {
    transform: scale(1.1);
}

.post-content {
    padding: 30px;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-meta i {
    color: var(--primary-color);
}

.post-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.4;
}

.blog-post.featured .post-content h3 {
    font-size: 1.8rem;
}

.post-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: var(--secondary-color);
}

.read-more-btn::after {
    content: '→';
    transition: transform 0.3s ease;
}

.read-more-btn:hover::after {
    transform: translateX(5px);
}

/* Blog Categories */
.blog-categories {
    margin-bottom: 80px;
}

.blog-categories h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.category-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.category-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.category-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: white;
}

.newsletter-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
}

/* Responsive Design for Blog */
@media (max-width: 768px) {
    .blog-post.featured {
        grid-template-columns: 1fr;
    }
    
    .featured-post h2 {
        font-size: 2rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .post-content {
        padding: 20px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .newsletter-section {
        padding: 40px 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .blog-categories h2 {
        font-size: 2rem;
    }
}

/* Individual Blog Post Styles */
.blog-post-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.blog-breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.blog-breadcrumb a {
    color: white;
    text-decoration: none;
}

.blog-breadcrumb span {
    margin: 0 10px;
}

.blog-post-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.blog-post-hero .post-meta {
    justify-content: center;
    color: white;
    opacity: 0.9;
}

.blog-post-content {
    padding: 80px 0;
}

.post-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
}

.main-content {
    max-width: none;
}

.featured-image {
    margin-bottom: 40px;
}

.featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.image-caption {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
}

.content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.content .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.6;
}

.content h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.content h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

.content ul, .content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.content li {
    margin-bottom: 8px;
}

.content blockquote {
    background: var(--light-bg);
    border-left: 4px solid var(--primary-color);
    padding: 20px 30px;
    margin: 30px 0;
    font-style: italic;
    border-radius: 0 10px 10px 0;
}

.content blockquote p {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.content blockquote cite {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: normal;
}

.post-tags {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.post-tags h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.tag {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin: 5px 10px 5px 0;
    text-decoration: none;
}

.tag:hover {
    background: var(--secondary-color);
}

/* Sidebar Styles */
.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.widget {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.widget h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.related-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-post {
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: var(--text-dark);
    transition: transform 0.3s ease;
}

.related-post:hover {
    transform: translateX(5px);
}

.related-post img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.related-post h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.related-post span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    text-decoration: none;
    color: var(--text-dark);
    border-bottom: 1px solid #eee;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: var(--primary-color);
}

.category-list span {
    background: var(--light-bg);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    color: var(--text-light);
}

.social-share {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn.facebook {
    background: #4267B2;
}

.share-btn.twitter {
    background: #1DA1F2;
}

.share-btn.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.share-btn.whatsapp {
    background: #25D366;
}

/* Post Navigation */
.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #eee;
}

.nav-previous, .nav-next {
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.nav-previous:hover, .nav-next:hover {
    transform: translateY(-5px);
}

.nav-next {
    text-align: right;
}

.nav-previous a, .nav-next a {
    text-decoration: none;
    color: var(--text-dark);
}

.nav-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.nav-title {
    display: block;
    font-weight: 600;
    line-height: 1.4;
}

/* Responsive Design for Blog Posts */
@media (max-width: 1024px) {
    .post-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .blog-post-hero {
        padding: 100px 0 60px;
    }
    
    .blog-post-hero h1 {
        font-size: 2.2rem;
    }
    
    .blog-post-content {
        padding: 60px 0;
    }
    
    .content {
        font-size: 1rem;
    }
    
    .content h2 {
        font-size: 1.6rem;
    }
    
    .content h3 {
        font-size: 1.3rem;
    }
    
    .post-navigation {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .nav-next {
        text-align: left;
    }
    
    .widget {
        padding: 20px;
    }
}

.scroll-top:hover {
    background: #2980b9;
    transform: translateY(-3px);
}

.scroll-top.visible {
    display: flex;
}

/* Featured Packages Section */
.featured-packages {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.featured-packages h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.package-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.package-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-price {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #3498db;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
}

.package-content {
    padding: 25px;
}

.package-content h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.package-details {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.package-details span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #6c757d;
    font-size: 0.9rem;
}

.package-details i {
    color: #3498db;
}

.package-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.package-highlights {
    list-style: none;
    padding: 0;
}

.package-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.package-highlights li:before {
    content: '✓';
    background: #27ae60;
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

.packages-cta {
    text-align: center;
}

/* Blog Preview Section */
.blog-preview {
    padding: 80px 0;
    background: white;
}

.blog-preview h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

/* Optional: prevent cropping for certain sections */
.customer-gallery.no-crop .gallery-item {
    aspect-ratio: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f172a; /* subtle dark bg to fill letterboxing */
    padding: 8px;
}

.customer-gallery.no-crop .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* show full image without cropping */
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.blog-category {
    background: #3498db;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-date {
    color: #6c757d;
    font-size: 0.9rem;
}

.blog-content h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-read-more {
    color: #3498db;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-read-more:hover {
    color: #2980b9;
    gap: 12px;
}

.blog-cta {
    text-align: center;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .featured-packages,
    .blog-preview {
        padding: 50px 0;
    }
    
    .featured-packages h2,
    .blog-preview h2 {
        font-size: 2rem;
    }
    
    .packages-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .package-details {
        gap: 10px;
    }
    
    .package-details span {
        font-size: 0.85rem;
    }
    
    .package-content {
        padding: 20px;
    }
    
    .blog-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .package-price {
        font-size: 1rem;
        padding: 6px 12px;
    }
    
    .package-content h3 {
        font-size: 1.2rem;
    }
    
    .blog-content h3 {
        font-size: 1.2rem;
    }
}

/* Anime.js Animation Helper Styles */
.feature-icon {
    transform-origin: center center;
    cursor: pointer;
}

.social-links a,
.social-share a {
    transform-origin: center center;
    display: inline-block;
}

.contact-info i {
    transform-origin: center center;
    display: inline-block;
}

.blog-meta i,
.post-meta i,
.package-details i {
    transform-origin: center center;
    display: inline-block;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
}

.blog-read-more i {
    transform-origin: center center;
}

/* Tablet and small landscape phones: ensure stacking too */
@media (max-width: 1024px) {
    .destination-content,
    .destination-content.reverse {
        flex-direction: column;
        gap: 1.5rem;
    }

    .destination-image img { height: auto; }
}

/* Ensure destination rows wrap into single column on tablets/phones */
@media (max-width: 1200px) {
    .destination-content,
    .destination-content.reverse {
        display: flex;
        flex-wrap: wrap;
    }
    .destination-content > .destination-text,
    .destination-content > .destination-image {
        flex: 1 0 100% !important;
        max-width: 100% !important;
    }
    .destination-image img {
        width: 100%;
        height: auto;
    }
}

/* ============================================
   CUSTOMER GALLERY SECTION
============================================ */

.customer-gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.customer-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.customer-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
}

.customer-gallery h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 2px;
}

.customer-gallery .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 3rem;
    position: relative;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.gallery-cta {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.gallery-cta p {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.gallery-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.gallery-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

/* === Gallery Carousel Styles === */
.gallery-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 2rem;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 8px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.8);
}

.gallery-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(0,0,0,0.05) 100%);
    pointer-events: none;
    z-index: 1;
}

.gallery-carousel .carousel-track {
    position: relative;
    min-height: 450px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.gallery-carousel .carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 30px;
    align-items: center;
}

.gallery-carousel .carousel-slide.active {
    opacity: 1;
}

.gallery-carousel img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12), 0 4px 10px rgba(0,0,0,0.05);
    border: 3px solid rgba(255,255,255,0.9);
    position: relative;
}

.gallery-carousel img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
    border-radius: 9px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-carousel img:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2), 0 8px 15px rgba(0,0,0,0.1);
    border-color: rgba(52, 152, 219, 0.3);
}

.gallery-carousel img:hover::before {
    opacity: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(248,249,250,0.9) 100%);
    color: #2c3e50;
    border: 2px solid rgba(52, 152, 219, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    display: grid;
    place-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1), 0 4px 8px rgba(0,0,0,0.05);
    backdrop-filter: blur(10px);
}

.carousel-btn:hover { 
    background: linear-gradient(145deg, #3498db 0%, #2980b9 100%);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 30px rgba(52, 152, 219, 0.3), 0 6px 12px rgba(52, 152, 219, 0.2);
    border-color: rgba(255,255,255,0.3);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn.prev { left: 20px; }
.carousel-btn.next { right: 20px; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 20px 0 0;
    padding: 20px;
    background: linear-gradient(145deg, rgba(255,255,255,0.9) 0%, rgba(248,249,250,0.8) 100%);
    border-top: 1px solid rgba(52, 152, 219, 0.1);
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(52, 152, 219, 0.3);
    background: rgba(203, 213, 225, 0.8);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.carousel-dot::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-dot.active { 
    background: linear-gradient(145deg, #3498db 0%, #2980b9 100%);
    border-color: rgba(255,255,255,0.5);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
    transform: scale(1.2);
}

.carousel-dot:hover:not(.active) {
    background: rgba(52, 152, 219, 0.6);
    border-color: rgba(52, 152, 219, 0.8);
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .gallery-carousel {
        max-width: 95%;
        margin: 0 auto 1.5rem;
    }
    
    .gallery-carousel .carousel-slide {
        gap: 15px;
        padding: 20px;
    }
    
    .gallery-carousel img {
        height: 250px;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .carousel-btn.prev { left: 15px; }
    .carousel-btn.next { right: 15px; }
}

@media (max-width: 768px) {
    .gallery-carousel .carousel-slide {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px 20px;
    }
    
    .gallery-carousel img { 
        height: 280px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .gallery-carousel .carousel-track {
        min-height: 380px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .carousel-btn.prev { left: 10px; }
    .carousel-btn.next { right: 10px; }
}

/* Gallery Responsive Design */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .customer-gallery h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .customer-gallery {
        padding: 60px 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 12px;
    }
    
    .customer-gallery h2 {
        font-size: 1.8rem;
    }
    
    .customer-gallery .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .gallery-item {
        aspect-ratio: 1;
    }
    
    .gallery-overlay {
        padding: 20px 15px 15px;
    }
    
    .gallery-content h4 {
        font-size: 1rem;
    }
    
    .gallery-content p {
        font-size: 0.8rem;
    }
    
    .gallery-cta {
        padding: 1.5rem;
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .gallery-item {
        aspect-ratio: 1;
    }
    
    .customer-gallery h2 {
        font-size: 1.6rem;
    }
}