/* =========================================
   1. RESET & VARIABLES
   ========================================= */
:root {
    --primary-color: #FFB700;
    --primary-dark: #e6c200;
    --text-dark: #333333;
    --text-light: #777777;
    --bg-white: #ffffff;
    --bg-light: #f9f9f9;
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --card-hover-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

/* =========================================
   2. UTILITY CLASSES
   ========================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bg-light {
    background-color: var(--bg-light);
}

/* =========================================
   3. TOP BAR
   ========================================= */
.top-bar {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.contact-info span,
.contact-info a {
    margin-right: 20px;
    color: var(--bg-white);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--primary-color);
}

.contact-info a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.contact-info i,
.social-links i {
    color: var(--primary-color);
    margin-right: 5px;
}

.social-links a {
    color: white;
    margin-left: 15px;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color);
}

.social-links a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* =========================================
   4. HEADER & NAVIGATION
   ========================================= */
header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    border-radius: 5px;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--text-dark);
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-dark);
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 5px;
    transition: var(--transition);
}

/* =========================================
   5. HERO SECTION & SLIDER
   ========================================= */
.hero {
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* =========================================
   6. BUTTONS
   ========================================= */
.btn-main {
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.btn-main:hover {
    background-color: white;
    color: var(--text-dark);
    transform: translateY(-2px);
}

.btn-main:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
}

.btn-book {
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--text-dark);
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 5px;
}

.btn-book:hover {
    background: var(--primary-color);
    color: white;
}

/* =========================================
   7. DESTINATION CARDS
   ========================================= */
.dest-section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--text-dark);
    position: relative;
}

.section-title span {
    color: var(--primary-dark);
    border-bottom: 3px solid var(--primary-color);
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.card {
    background: white;
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    will-change: transform;
    contain: layout style paint;
}

.card:hover {
    transform: translate3d(0, -10px, 0);
    box-shadow: 0 15px 25px rgba(255, 215, 0, 0.3);
    will-change: auto;
}

.card-img {
    height: 200px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-img img {
    transform: scale(1.05);
}

.card-body {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-body h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.card-body p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* =========================================
   8. PAGE HEADER
   ========================================= */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: black;
    position: relative;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
}

/* =========================================
   9. BLOG SECTION (CONSOLIDATED - ALL DUPLICATES MERGED)
   ========================================= */

/* Blog Filter Bar - MERGED from lines 101 & 773 */
.filter-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px auto;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
    max-width: 1100px;
}

.filter-bar.overlap {
    margin-top: -50px;
}

/* Filter Group - MERGED from lines 113 & 790 */
.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 200px;
}

/* Filter Input/Select - MERGED from lines 121 & 796 */
.filter-input,
.filter-select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    width: 100%;
    min-width: 250px;
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
}

.filter-input:focus,
.filter-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.filter-btn {
    background: var(--primary-color);
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    background: black;
    color: white;
}

/* Blog Grid - MERGED from lines 42 & 821 */
.blog-grid-wide {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.blog-grid-wide.four-columns {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Blog Card - MERGED from lines 50, 185, 220, 828 (ALL DUPLICATES) */
.blog-card-small {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    will-change: transform;
    animation: fadeIn 0.5s ease-out forwards;
    opacity: 0;
}

.blog-card-small::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.blog-card-small:hover {
    transform: translate3d(0, -5px, 0);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
    will-change: auto;
}

.blog-card-small:hover::after {
    transform: scaleX(1);
}

.blog-card-small:nth-child(1) {
    animation-delay: 0.1s;
}

.blog-card-small:nth-child(2) {
    animation-delay: 0.2s;
}

.blog-card-small:nth-child(3) {
    animation-delay: 0.3s;
}

.blog-card-small:nth-child(4) {
    animation-delay: 0.4s;
}

.blog-card-small:nth-child(5) {
    animation-delay: 0.5s;
}

/* Blog Thumb - MERGED from lines 68 & 843 */
.blog-thumb-small {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card-small:hover .blog-thumb-small {
    transform: scale(1.02);
}

/* Blog Details - MERGED from lines 79 & 849 */
.blog-details-small {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-details-small h3 {
    font-size: 1.2rem;
    margin: 10px 0;
    line-height: 1.4;
    color: var(--text-dark);
}

.blog-details-small p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Upload Section */
.upload-section {
    background: var(--bg-light);
    padding: 60px 0;
    margin-bottom: 40px;
}

.upload-form-box {
    background: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--primary-color);
}

.file-upload-wrapper {
    position: relative;
    border: 2px dashed #ddd;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    background: #fafafa;
}

.file-upload-wrapper:hover {
    border-color: var(--primary-color);
}

/* Single Blog Page Layout */
.blog-post-wrapper {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 50px;
}

.article-header {
    position: static !important;
    margin-bottom: 30px;
    text-align: center;
}

.breadcrumbs {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumbs a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.article-title {
    font-size: 2.5rem;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.category-tag {
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.featured-image-container {
    text-align: center;
    margin-bottom: 40px;
}

.mid-sized-img {
    max-width: 800px;
    width: 90%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.img-caption {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.article-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 20px 0;
}

/* Share Section on Blog Posts */
.share-section {
    margin: 60px 0;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 10px;
    text-align: center;
}

.share-section h3 {
    margin-bottom: 25px;
    color: var(--text-dark);
    font-size: 1.5rem;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    color: white;
}

.share-facebook {
    background-color: #1877F2;
}

.share-twitter {
    background-color: #1DA1F2;
}

.share-pinterest {
    background-color: #E60023;
}

.share-whatsapp {
    background-color: #25D366;
}

.share-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

/* Book Now Section */
.book-now-section {
    margin: 60px 0;
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 15px;
}

.book-now-button {
    display: inline-block;
    padding: 18px 50px;
    background-color: var(--text-dark);
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.book-now-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background-color: #000;
}

/* =========================================
   10. ANIMATIONS (ALL KEYFRAMES CONSOLIDATED)
   ========================================= */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleUp {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse-green {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    70% {
        transform: scale(1.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* =========================================
   11. PAGE: ABOUT US (Modal)
   ========================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
}

.modal-box {
    background: white;
    padding: 20px;
    width: 85%;
    max-width: 600px;
    border-radius: 10px;
    max-height: 85vh;
    overflow-y: auto;
    text-align: center;
    position: relative;
    border-top: 5px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.modal-box h2 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.modal-box i {
    font-size: 3rem;
    color: #2ecc71;
    margin-bottom: 20px;
}

.close-modal {
    margin-top: 20px;
    padding: 10px 30px;
    background-color: var(--text-dark);
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: var(--transition);
}

.close-modal:hover {
    background-color: var(--primary-color);
    color: black;
}

/* =========================================
   12. PAGE: CONTACT US
   ========================================= */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 50px 0;
}

.contact-form-container {
    background: white;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.contact-info-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.social-side a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--text-dark);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.social-side a:hover {
    background: var(--primary-color);
    color: black;
}

.error-message {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 5px;
    display: none;
}

input.invalid,
textarea.invalid,
select.invalid {
    border-color: #dc3545 !important;
    background-color: #fff8f8;
}

.notification {
    margin-top: 15px;
    padding: 12px;
    border-radius: 5px;
    text-align: center;
    font-size: 0.9rem;
    display: none;
}

.notification.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.notification.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.btn-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn-loading::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    border: 3px solid #000;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

/* =========================================
   13. PAGE: PRIVACY & TERMS
   ========================================= */
.policy-container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 40px;
    background: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.policy-content h2 {
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
}

.policy-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.policy-content ul,
.policy-list {
    list-style: none;
    margin-bottom: 25px;
    padding-left: 10px;
}

.policy-content ul li,
.policy-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    color: #555;
    line-height: 1.6;
}

.policy-content ul li::before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.8rem;
}

.policy-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: green;
    position: absolute;
    left: 0;
    top: 2px;
}

.policy-contact-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #eee;
    margin-top: 30px;
}

.policy-contact-box p {
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 600;
}

.policy-contact-box i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.policy-controls {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.policy-btn {
    background: white;
    color: var(--text-dark);
    border: none;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.4s ease;
    border-bottom: 5px solid transparent;
}

.policy-btn:hover {
    transform: translateY(-5px);
}

.policy-btn.active {
    background: var(--text-dark);
    color: var(--primary-color);
    border-bottom: 5px solid var(--primary-color);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.terms-container {
    max-width: 1000px;
    margin: 60px auto;
    min-height: 500px;
}

.policy-section {
    display: none;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.policy-section.active-tab {
    display: block;
    animation: fadeSlideUp 0.8s ease forwards;
}

.policy-section h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.policy-section h2 i {
    color: var(--primary-color);
    margin-right: 15px;
}

.cancel-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.cancel-table th,
.cancel-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.cancel-table th {
    background-color: var(--text-dark);
    color: var(--primary-color);
}

.cancel-table tr:hover {
    background-color: #fffbe6;
}

/* =========================================
   14. PAGE: THANK YOU
   ========================================= */
.thankyou-header {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?q=80&w=2021&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.success-icon {
    font-size: 5rem;
    color: #2ecc71;
    background: white;
    width: 120px;
    height: 120px;
    line-height: 120px;
    border-radius: 50%;
    margin-bottom: 25px;
    box-shadow: 0 0 30px rgba(46, 204, 113, 0.5);
    animation: scaleUp 0.6s ease-out;
}

.thankyou-header h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.thankyou-header p {
    font-size: 1.3rem;
    max-width: 600px;
    line-height: 1.6;
}

.timeline-section {
    padding: 60px 20px;
    background: white;
    text-align: center;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.step-card {
    background: white;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 15px;
    width: 250px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
    border-color: var(--primary-color);
}

.step-number {
    background: var(--text-dark);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    font-weight: bold;
    margin: 0 auto 20px;
    font-size: 1.1rem;
}

.step-card h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step-card p {
    font-size: 0.9rem;
    color: #666;
}

.referral-section {
    background: var(--bg-light);
    padding: 60px 20px;
}

.referral-box {
    background: linear-gradient(135deg, #fff 0%, #fffbe6 100%);
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    border: 2px solid var(--primary-color);
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.referral-box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
}

.referral-content {
    flex: 2;
    padding-right: 40px;
}

.referral-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.bonus-badge {
    background: var(--primary-color);
    color: black;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 15px;
}

.referral-img {
    flex: 1;
    text-align: center;
}

.referral-img i {
    font-size: 8rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 0px #000;
}

.btn-share {
    background: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    transition: var(--transition);
}

.btn-share:hover {
    background: #1ebc57;
    transform: scale(1.05);
}

/* =========================================
   15. POPUP MODALS
   ========================================= */
.book-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.book-modal-box {
    background: white;
    width: 100%;
    max-width: 400px;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border-top: 6px solid var(--primary-color);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
    animation: slideDown 0.5s ease;
    position: relative;
}

.book-modal-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.book-modal-box p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}

.btn-popup-action {
    display: inline-block;
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: black;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-popup-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.5);
    background-color: black;
    color: white;
}

.close-book-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #aaa;
}

.close-book-btn:hover {
    color: red;
}

.click-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.click-modal-box {
    background: white;
    width: 100%;
    max-width: 450px;
    padding: 35px;
    border-radius: 15px;
    position: relative;
    text-align: center;
    border-top: 6px solid var(--primary-color);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.2);
    animation: popIn 0.4s ease;
}

.click-modal-box h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.click-modal-box p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.click-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #aaa;
    transition: 0.3s;
}

.click-close-btn:hover {
    color: red;
}

.quick-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f9f9f9;
}

.quick-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    border: none;
    font-weight: bold;
    color: black;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1rem;
    transition: 0.3s;
}

.quick-btn:hover {
    background: black;
    color: white;
}

/* =========================================
   16. FOOTER
   ========================================= */
footer {
    background-color: #222;
    color: white;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-col p {
    line-height: 1.6;
    color: #ccc;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-details li {
    display: flex;
    align-items: center;
    color: #ccc;
}

.contact-details i {
    margin-right: 10px;
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
    color: #777;
    font-size: 0.8rem;
}

/* =========================================
   17. GOOGLE REVIEWS SLIDER
   ========================================= */
.reviews-section {
    padding: 80px 20px;
    background: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.google-badge {
    background: white;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    border: 1px solid #eee;
}

.google-badge img {
    width: 25px;
}

.reviews-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.review-card {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width: 100%;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    transform: translateX(50px);
    border-top: 5px solid var(--primary-color);
}

.review-card.active-review {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.reviewer-profile {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    justify-content: center;
    gap: 15px;
}

.reviewer-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.reviewer-info {
    text-align: left;
}

.reviewer-info h4 {
    color: var(--text-dark);
    margin-bottom: 3px;
    font-size: 1.1rem;
}

.review-stars {
    color: #FFB700;
    font-size: 0.9rem;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
}

.review-date {
    display: block;
    margin-top: 20px;
    font-size: 0.8rem;
    color: #999;
}

/* =========================================
   18. BLOG HUB (Category Landing Page)
   ========================================= */
.hub-hero {
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hub-hero h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hub-hero span {
    color: var(--primary-color);
}

.hub-category-section {
    padding: 80px 20px;
    background: white;
}

.hub-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 300px;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hub-tile {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: block;
}

.hub-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hub-tile::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.1));
    z-index: 1;
}

.hub-tile-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.hub-tile h3 {
    font-size: 2rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hub-tile p {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: bold;
    opacity: 0.9;
}

.hub-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.hub-tile:hover img {
    transform: scale(1.1);
}

.hub-tile:hover .hub-tile-content {
    transform: translateY(-5px);
}

.span-6 {
    grid-column: span 6;
}

.span-4 {
    grid-column: span 4;
}

.span-8 {
    grid-column: span 8;
}

.trending-bar {
    background: var(--text-dark);
    padding: 40px 0;
    text-align: center;
}

.trending-tags {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.trend-tag {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.trend-tag:hover {
    background: var(--primary-color);
    color: black;
    border-color: var(--primary-color);
}

/* =========================================
   19. FLOATING BUTTONS
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: white;
    transform: scale(1.1);
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    opacity: 0.6;
    z-index: -1;
    animation: pulse-green 2s infinite;
}

.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #333;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 4999;
    transition: all 0.3s ease;
}

.scroll-to-top.show {
    display: flex;
}

.scroll-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* =========================================
   20. PAGE: TRAVEL BULLETIN
   ========================================= */
.bulletin-container {
    max-width: 900px;
    margin: 60px auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.bulletin-title {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    border-bottom: 4px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 5px;
}

.bulletin-subtitle {
    color: #777;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.bulletin-list {
    list-style: none;
    padding: 0;
    margin-bottom: 50px;
}

.bulletin-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
}

.bulletin-list li::before {
    content: "\f0a4";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.bulletin-list li strong {
    color: var(--text-dark);
    font-weight: 600;
}

.bulletin-cta-box {
    background: #fdfdfd;
    border: 2px dashed var(--primary-color);
    padding: 40px;
    text-align: center;
    border-radius: 15px;
    position: relative;
}

.cta-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.bulletin-cta-box h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.bulletin-cta-box p {
    margin-bottom: 25px;
    color: #666;
}

.cta-btn {
    padding: 12px 40px;
    font-size: 1.1rem;
    display: inline-block;
}

/* =========================================
   21. RESPONSIVE DESIGN (CONSOLIDATED MEDIA QUERIES)
   ========================================= */

/* Tablet */
@media screen and (max-width: 1024px) {
    .card {
        width: 45%;
    }

    .blog-grid-wide {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 20px;
    }

    .blog-grid-wide.four-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile - ALL 768px QUERIES CONSOLIDATED */
@media screen and (max-width: 768px) {

    /* Top Bar */
    .top-bar {
        display: block !important;
        padding: 5px 0;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 5px;
    }

    .contact-info {
        font-size: 0.75rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .social-links {
        margin-top: 5px;
    }

    /* Header & Logo */
    .logo-img {
        height: 40px;
    }

    .logo h1 {
        font-size: 1.4rem;
    }

    /* Navigation */
    body {
        overflow-x: hidden;
    }

    .nav-links {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        background-color: var(--bg-white);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 70%;
        transform: translateX(100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.5s ease-in-out, opacity 0.4s ease-in-out;
        z-index: 1500;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links li {
        opacity: 1 !important;
        transform: none !important;
        margin: 25px 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        color: var(--text-dark);
        display: block;
        padding: 12px 16px;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .nav-active {
        transform: translateX(0%);
        opacity: 1;
        pointer-events: auto;
    }

    .burger {
        display: block;
        z-index: 2000;
    }

    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
        background-color: var(--primary-color);
    }

    .toggle .line2 {
        opacity: 0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
        background-color: var(--primary-color);
    }

    /* Content */
    .card {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .page-header h1 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .page-header p {
        font-size: 1rem;
        margin-bottom: 50px;
    }

    /* Blog */
    .blog-grid-wide {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .blog-grid-wide.four-columns {
        grid-template-columns: 1fr;
    }

    .filter-bar {
        flex-direction: column;
        width: 90%;
        margin-top: -30px;
        padding: 20px;
        gap: 10px;
    }

    .filter-group {
        width: 100%;
        min-width: auto;
    }

    .filter-input,
    .filter-select,
    .filter-btn {
        width: 100%;
        min-width: auto;
    }

    /* Contact & Forms */
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    /* Blog Single */
    .blog-post-wrapper {
        grid-template-columns: 1fr;
        margin-top: 140px !important;
    }

    .article-title {
        font-size: 2rem;
    }

    .mid-sized-img {
        width: 100%;
    }

    .share-buttons {
        flex-direction: column;
    }

    .share-button {
        width: 100%;
        justify-content: center;
    }

    /* Policies */
    .policy-controls {
        flex-direction: column;
        gap: 15px;
    }

    .policy-btn {
        width: 100%;
        padding: 15px;
    }

    /* Thank You */
    .thankyou-header h1 {
        font-size: 2.5rem;
    }

    .referral-box {
        flex-direction: column-reverse;
        text-align: center;
        padding: 30px;
    }

    .referral-content {
        padding-right: 0;
        margin-top: 20px;
    }

    .referral-img i {
        font-size: 5rem;
    }

    .book-now-button {
        padding: 15px 40px;
        font-size: 1.1rem;
    }

    /* Reviews */
    .reviews-container {
        height: 600px;
    }

    .review-text {
        font-size: 0.95rem;
    }

    .review-card {
        padding: 25px;
    }

    /* Buttons */
    .btn-main,
    .btn-book {
        min-height: 44px;
        min-width: 44px;
        padding: 14px 32px;
    }

    /* WhatsApp & Scroll to Top */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }

    .scroll-to-top {
        bottom: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    /* Bulletin */
    .bulletin-container {
        padding: 20px;
        margin: 30px auto;
    }

    .bulletin-title {
        font-size: 1.6rem;
    }

    .bulletin-list li {
        font-size: 1rem;
    }
}

/* Tablet/Mobile Header Fix */
@media screen and (max-width: 991px) {
    .blog-post-wrapper {
        margin-top: 140px !important;
    }

    body>my-header+section,
    body>my-header+div.container {
        padding-top: 140px !important;
    }

    .terms-section,
    .privacy-section,
    .blog-content-section {
        padding-top: 150px !important;
    }
}

/* Blog Hub Mobile */
@media screen and (max-width: 900px) {
    .hub-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .span-6,
    .span-4,
    .span-8 {
        grid-column: span 1;
    }

    .hub-hero h1 {
        font-size: 2.5rem;
    }
}

/* =========================================
   22. ACCESSIBILITY & PERFORMANCE
   ========================================= */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.btn-book:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
}

.card:focus-within {
    transform: translate3d(0, -10px, 0);
    box-shadow: 0 15px 25px rgba(255, 215, 0, 0.3);
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .card:hover,
    .blog-card-small:hover {
        transform: none;
    }
}

@media (prefers-reduced-data: reduce) {

    .card-img img,
    .blog-thumb-small {
        transition: none;
    }
}