/* ==========================================================================
   Base Styles & Variables
   ========================================================================== */
:root {
    --main-color: #3b71fe;
    --body-color: #232323;
    --link-color: #1A2B48;
    --link-color-hover: rgba(59,113,254,0.9);
    --grey-color: #5E6D77;
    --heading-color: #232323;
    --light-grey-color: #EAEEF3;
    --orange-color: #FA5636;
    
    --font-primary: 'DM Sans', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--body-color);
    background-color: #fff;
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    font-weight: 700;
    margin-bottom: 15px;
}

a {
    color: var(--link-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--link-color-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 80px 0;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 15px;
}

.logo img {
    max-width: 200px;
}

/* Main Navigation */
.main-nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--heading-color);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #4CAF50; /* Green from the logo */
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--heading-color);
}

@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }
    
    .main-nav {
        display: none;
        width: 100%;
        order: 4;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid var(--light-grey-color);
    }
    
    .main-nav.active {
        display: block;
        animation: slideDown 0.3s ease forwards;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-actions > div,
.header-actions > a {
    cursor: pointer;
    font-weight: 500;
    font-size: 15px;
    color: var(--heading-color);
    text-decoration: none;
    transition: var(--transition);
}

.header-actions > a:hover {
    color: var(--main-color);
}

.header-actions i {
    margin-left: 5px;
}

.header-actions .header-social-icon {
    font-size: 18px;
    color: var(--heading-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-actions .header-social-icon i {
    margin-left: 0;
    transition: color 0.3s ease;
}

.header-actions .header-social-icon:hover i {
    color: var(--main-color);
}
/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('images/20190112_115041-scaled-2.webp');
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 64px;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 24px;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* ==========================================================================
   Inspiration / Tour Cards
   ========================================================================== */
.inspiration h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.two-cols-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.three-cols-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tour-card {
    border: 1px solid var(--light-grey-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    background: #fff;
}

.tour-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

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

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

.tour-card:hover .card-image img {
    transform: scale(1.1);
}

.wishlist-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.8);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    color: var(--body-color);
}

.wishlist-icon:hover {
    color: var(--orange-color);
}

.card-content {
    padding: 25px 20px;
}

.card-content h3 {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.rating {
    color: var(--orange-color);
    font-size: 14px;
    margin-bottom: 15px;
}

.rating span {
    color: var(--grey-color);
    margin-left: 5px;
}

.price {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--light-grey-color);
    padding-top: 15px;
}

.price .from {
    font-size: 13px;
    color: var(--grey-color);
}

.price .amount {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-color);
}

/* ==========================================================================
   Newsletter
   ========================================================================== */
.newsletter {
    background: #f9f9f9;
}

.newsletter-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.newsletter-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.newsletter-content {
    flex: 1;
}

.newsletter-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.newsletter-content p {
    color: var(--grey-color);
    margin-bottom: 25px;
    font-size: 16px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 15px;
}

.newsletter-form button {
    background: var(--main-color);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-primary);
    font-size: 16px;
}

.newsletter-form button:hover {
    background: var(--link-color-hover);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: #fff;
    padding-top: 60px;
    border-top: 1px solid var(--light-grey-color);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--light-grey-color);
}

.footer-logo img {
    max-width: 220px;
}

.footer-socials {
    display: flex;
    gap: 60px;
}

.social-block h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
}

.social-icon.ta-link { background: #34E0A1; color: #000; }
.social-icon.facebook { background: #3b5998; }
.social-icon.instagram { background: #e1306c; }

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    color: var(--grey-color);
    font-size: 14px;
}

.footer-bottom a {
    color: var(--main-color);
    font-weight: 500;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 768px) {
    .section-padding { padding: 40px 0; }
    .hero { height: 400px; }
    .tour-hero { height: 300px; }
    
    .two-cols-grid {
        grid-template-columns: 1fr;
    }
    
    .three-cols-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .newsletter-container {
        flex-direction: column;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .header-container {
        padding: 15px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-socials {
        flex-direction: column;
        gap: 20px;
    }
}

/* ==========================================================================
   Tour Details Page
   ========================================================================== */

/* Breadcrumb */
.breadcrumb-section {
    background: #f9f9f9;
    padding: 15px 0;
    border-bottom: 1px solid var(--light-grey-color);
}

.breadcrumb-section ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb-section li a {
    color: var(--grey-color);
}

.breadcrumb-section li i {
    font-size: 10px;
    color: #ccc;
}

.breadcrumb-section li.active {
    color: var(--heading-color);
    font-weight: 500;
}

/* Tour Hero Image */
.tour-hero {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.tour-hero-content {
    height: 100%;
    position: relative;
}

.tour-gallery-btn {
    position: absolute;
    bottom: 30px;
    right: 15px;
    background: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.tour-gallery-btn:hover {
    background: var(--main-color);
    color: #fff;
}

/* Tour Grid Layout */
.tour-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* Left Content */
.tour-header h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.tour-rating {
    color: var(--orange-color);
    font-size: 16px;
    margin-bottom: 30px;
}

.tour-rating span {
    color: var(--grey-color);
    margin-left: 5px;
    font-size: 14px;
}

.tour-info-bar {
    display: flex;
    gap: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item i {
    font-size: 24px;
    color: var(--main-color);
}

.info-item div {
    display: flex;
    flex-direction: column;
}

.info-item span {
    font-size: 13px;
    color: var(--grey-color);
}

.info-item strong {
    font-size: 15px;
    color: var(--heading-color);
}

.tour-photo-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.tour-photo-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
}

.tour-photo-gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .tour-photo-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    .tour-photo-gallery img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .tour-photo-gallery,
    .three-cols-grid {
        grid-template-columns: 1fr;
    }
    .tour-photo-gallery img {
        height: 250px;
    }
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    animation-name: zoom;
    animation-duration: 0.3s;
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-close:hover {
    color: #bbb;
}

.lightbox-prev, .lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 40px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    z-index: 10000;
}

.lightbox-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.lightbox-prev {
    left: 0;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.tour-description h2 {
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-grey-color);
}

.tour-description p {
    margin-bottom: 15px;
}

.content-block h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.check-list, .bullet-list {
    list-style: none;
    margin-bottom: 20px;
}

.check-list li, .bullet-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--grey-color);
}

.check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #1aae6f;
}

.bullet-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--grey-color);
    border-radius: 50%;
    position: absolute;
    left: 5px;
    top: 10px;
}

.mt-4 {
    margin-top: 40px;
}
.mt-3 {
    margin-top: 20px;
}

/* Right Content (Sticky Widget) */
.tour-sidebar {
    position: relative;
}

.sticky-widget {
    position: sticky;
    top: 100px;
    border: 1px solid var(--light-grey-color);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.widget-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-grey-color);
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.widget-header .from {
    color: var(--grey-color);
    font-size: 14px;
}

.widget-header .price {
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
    color: var(--heading-color);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 14px;
}

.guests-group {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
}

.guest-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.guest-row:last-child {
    margin-bottom: 0;
}

.guest-row label {
    margin-bottom: 0;
}

.guest-row span {
    font-size: 12px;
    color: var(--grey-color);
}

.short-input {
    width: 60px;
    text-align: center;
    padding: 8px;
}

.required {
    color: var(--orange-color);
}

.btn-book-whatsapp {
    width: 100%;
    background: #25D366; /* WhatsApp Green */
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.btn-book-whatsapp:hover {
    background: #1ebe57;
}

/* Responsive Details */
@media (max-width: 992px) {
    .tour-grid {
        grid-template-columns: 1fr;
    }
    .tour-info-bar {
        flex-direction: column;
        gap: 15px;
    }
    .sticky-widget {
        position: static;
        margin-top: 30px;
    }
}

/* ==========================================================================
   Currency Selector
   ========================================================================== */
.currency-dropdown {
    border: none;
    background: transparent;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    color: var(--heading-color);
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    padding-right: 15px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="6" viewBox="0 0 10 6"><path fill="%23232323" d="M5 6L0 0h10z"/></svg>');
    background-repeat: no-repeat;
    background-position: right center;
}

