/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
        gap: 1rem;
    }
}

.logo img {
    height: 50px;
    width: auto;
}

@media (max-width: 768px) {
    .logo img {
        height: 45px;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu a:hover {
    color: #FFD700;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Dropdown styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 1rem 0;
    border: 1px solid #e5e7eb;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #1e3a8a;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f3f4f6;
    position: relative;
}

.dropdown-menu a:hover {
    background: #f8fafc;
    color: #FFD700;
    padding-left: 2rem;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

/* Header CTA Button */
.header-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #FFD700;
    color: #1e3a8a;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    border: 2px solid #FFD700;
    white-space: nowrap;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    background: #FFA500;
    border-color: #FFA500;
}

.header-cta i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .header-cta {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        gap: 0.4rem;
    }
    
    .header-cta i {
        font-size: 0.9rem;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .hamburger span {
        width: 22px;
        height: 2.5px;
        margin: 2.5px 0;
    }
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 100px 2rem 3rem;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/hero website.jpg');
    background-size: cover;
    background-position: center;
}

.hero-content {
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-transform: capitalize;
    letter-spacing: 0.02em;
    word-spacing: 0.1em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #1e3a8a;
    color: white;
}

.btn-primary:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
}

.btn-secondary {
    background: #FFD700;
    color: #1e3a8a;
    border: 2px solid #FFD700;
}

.btn-secondary:hover {
    background: #fbbf24;
    color: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.more-details-btn.expanded {
    background: #1e3a8a;
    color: white;
    border-color: #1e3a8a;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Tours Section */
.tours {
    padding: 4rem 0;
    background: #f8fafc;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 1rem;
    text-transform: capitalize;
    letter-spacing: -0.01em;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tour-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.tour-card.featured {
    background: white;
}

.tour-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #1e3a8a;
    margin-bottom: 1rem;
    text-transform: capitalize;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.tour-card p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.tour-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.tour-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    background: #f8fafc;
    border-radius: 15px;
    margin-top: 1rem;
}

.tour-details.expanded {
    max-height: 1000px;
    padding: 2rem;
    border: 1px solid #e5e7eb;
}

@media (max-width: 768px) {
    .tour-details.expanded {
        max-height: none;
        padding: 1.5rem;
        overflow: visible;
    }
    
    .tour-details .details-content {
        max-height: none;
        overflow: visible;
    }
}

.details-content h4 {
    font-family: 'Poppins', sans-serif;
    color: #1e3a8a;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 1.5rem 0 1rem 0;
    text-transform: capitalize;
    letter-spacing: -0.003em;
}

.details-content h4:first-child {
    margin-top: 0;
}

.details-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.details-content li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #4b5563;
    line-height: 1.6;
}

.details-content li::before {
    content: '';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
    width: 16px;
    text-align: center;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.details-content li::after {
    content: '';
    position: absolute;
    left: 0;
    color: #1e3a8a;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    width: 16px;
    text-align: center;
    top: 0.1rem;
}

.details-content li:not(.included):not(.extra)::after {
    content: '•';
    color: #1e3a8a;
    font-size: 1.2rem;
    top: -0.2rem;
}

/* New styles for included and extra items */
.details-content li.included {
    position: relative;
    padding-left: 2rem;
}

.details-content li.included::before {
    content: '';
}

.details-content li.included::after {
    content: '\f00c';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    width: 16px;
    text-align: center;
    top: 0.1rem;
}

.details-content li.included i {
    display: none;
}

.details-content li.extra {
    position: relative;
    padding-left: 2rem;
    color: #4b5563;
    font-weight: normal;
}

.details-content li.extra::before {
    content: '';
}

.details-content li.extra::after {
    content: '\f00d';
    position: absolute;
    left: 0;
    color: #1e3a8a;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    width: 16px;
    text-align: center;
    top: 0.1rem;
}

.details-content li.extra i {
    display: none;
}

.details-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tour-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.tour-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tour-info-item i {
    color: #FFD700;
    font-size: 1.1rem;
    min-width: 16px;
}

.info-value {
    font-size: 0.9rem;
    color: #1e3a8a;
    font-weight: 600;
}

.tour-price {
    margin-bottom: 2rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
}

.per-person {
    font-size: 1rem;
    color: #6b7280;
    margin-left: 0.5rem;
}

.tour-image img,
.tour-gallery img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

/* Image Carousel with Thumbnails */
.image-carousel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.main-image:hover img {
    transform: scale(1.02);
}

.thumbnails {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.thumbnail {
    width: 100px;
    height: 75px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.thumbnail:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.thumbnail.active {
    border-color: #FFD700;
    opacity: 1;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Guidebook Section */
.guidebook {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
}

.guidebook .container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.guidebook-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.guidebook h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: capitalize;
    letter-spacing: -0.01em;
}

.guidebook p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    opacity: 0.9;
}

.guidebook-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.guidebook-features {
    list-style: none;
    margin-bottom: 2rem;
}

.guidebook-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.guidebook-features i {
    color: #FFD700;
    font-size: 1.2rem;
}

.guidebook-version .btn {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

.guidebook-versions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.guidebook-version {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.guidebook-version:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.guidebook-version.pro {
    background: rgba(255, 215, 0, 0.15);
    border-color: #FFD700;
    position: relative;
}

.guidebook-version.pro:hover {
    background: rgba(255, 215, 0, 0.25);
    transform: translateY(-5px);
}

.guidebook-version.pro::before {
    content: 'POPULAR';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    color: #1e3a8a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.guidebook-version h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #FFD700;
    text-transform: capitalize;
    letter-spacing: -0.005em;
}

.pro-subtitle {
    font-size: 0.9rem;
    color: #FFD700;
    font-style: italic;
    margin-bottom: 1rem;
}

.guidebook-version .guidebook-features {
    margin-bottom: 1.5rem;
}

.guidebook-version .guidebook-features li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.guidebook-image {
    position: relative;
}

.guidebook-image img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    border-radius: 20px;
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.guidebook-image:hover img {
    transform: scale(1.02);
}

.guidebook-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(30, 58, 138, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 20px;
    pointer-events: none;
}

/* Google Reviews Section */
.google-reviews {
    padding: 4rem 0;
    background: #f8fafc;
}

.reviews-container {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.rating-summary {
    flex-shrink: 0;
    width: 300px;
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.rating-summary h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #1e3a8a;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.rating-summary .stars {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.rating-summary .stars i {
    color: #FFD700;
    font-size: 2rem;
}

.rating-summary p {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.rating-summary strong {
    color: #1e3a8a;
}

.google-logo img {
    height: 40px;
    width: auto;
}

.reviews-carousel {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.review-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
}

.review-card.active {
    opacity: 1;
    transform: translateX(0);
}

.review-card:hover {
    transform: translateX(0) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 50px;
    height: 50px;
    background: #1e3a8a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.reviewer-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.25rem;
}

.reviewer-status {
    font-size: 0.9rem;
    color: #6b7280;
}

.google-g {
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #4285f4, #34a853, #fbbc05, #ea4335);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.review-rating .stars {
    display: flex;
    gap: 0.25rem;
}

.review-rating .stars i {
    color: #FFD700;
    font-size: 1rem;
}

.verified-badge {
    color: #4285f4;
    font-size: 1.2rem;
}

.review-text {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.review-translation {
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
    line-height: 1.5;
}

.reviews-cta {
    text-align: center;
}

.reviews-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

/* Reviews Carousel Navigation */
.reviews-carousel-nav {
    display: none;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.reviews-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.reviews-carousel-dot.active {
    background: #1e3a8a;
}

/* Why Choose Us Section */
.why-us {
    padding: 4rem 0;
    background: #f8fafc;
}

.why-us-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.why-us-item {
    flex: 1;
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.why-us-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
}

.why-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-us-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    text-transform: capitalize;
    letter-spacing: -0.002em;
}

.why-us-content p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Footer */
.footer {
    background: #1e3a8a;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFD700;
    text-transform: capitalize;
    letter-spacing: -0.002em;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: #FFD700;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #FFD700;
    color: #1e3a8a;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Floating Contact Button */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.contact-toggle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #FFD700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1e3a8a;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    z-index: 1001;
}

.contact-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.contact-options {
    position: absolute;
    bottom: 80px;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.contact-options.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: white;
    color: #333;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.contact-option:hover {
    transform: translateX(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.contact-option.whatsapp:hover {
    background: #25d366;
    color: white;
}

.contact-option.phone:hover {
    background: #007bff;
    color: white;
}

.contact-option.email:hover {
    background: #dc3545;
    color: white;
}

.contact-option i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

        .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        gap: 1rem;
        align-items: flex-start;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a {
        text-align: left;
        justify-content: flex-start;
        width: 100%;
    }
    
    .header-cta {
        display: flex;
        margin: 1rem 0;
        width: auto;
        justify-content: flex-start;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0;
        margin-left: 1rem;
        background: transparent;
        width: 100%;
    }
    
    .dropdown-menu a {
        padding: 0.5rem 0;
        color: #666;
        border-bottom: none;
        text-align: left;
        width: 100%;
    }
    
    .dropdown-menu a:hover {
        background: transparent;
        padding-left: 0;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 120px 1rem 2rem;
        min-height: 60vh;
    }

    .hero-content {
        padding-left: 0;
    }

    .hero-title {
        font-family: 'Poppins', sans-serif;
        font-size: 2.5rem;
        font-weight: 900;
        text-transform: capitalize;
        letter-spacing: 0.01em;
        word-spacing: 0.08em;
    }

    .hero-buttons {
        justify-content: center;
    }

    .tour-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .tour-card h3 {
        font-family: 'Poppins', sans-serif;
        font-size: 1.8rem;
        font-weight: 900;
        text-transform: capitalize;
        letter-spacing: -0.005em;
        line-height: 1.3;
    }
    
    .tour-details.expanded {
        position: relative;
        z-index: 10;
        margin-bottom: 2rem;
    }
    
    .tour-info-grid {
        gap: 1rem;
        justify-content: center;
    }
    
    .tour-info-item {
        gap: 0.4rem;
    }
    
    .tour-info-item i {
        font-size: 1rem;
    }
    
    .info-value {
        font-size: 0.85rem;
    }
    
    .main-image {
        height: 300px;
    }
    
    .thumbnails {
        gap: 0.25rem;
    }
    
    .thumbnail {
        width: 80px;
        height: 60px;
    }

    .guidebook .container {
        gap: 2rem;
    }
    
    .guidebook-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .guidebook-versions {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .guidebook-image img {
        height: 300px;
        object-fit: contain;
    }

    
    .reviews-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .rating-summary {
        width: 100%;
        padding: 1.5rem;
    }
    
    .reviews-carousel {
        min-height: 300px;
    }
    
    .review-card {
        position: relative;
        display: none;
        padding: 1.5rem;
        margin: 0;
    }
    
    .review-card.active {
        display: block;
    }
    
    .reviews-carousel-nav {
        display: flex;
    }
    
    .rating-summary h3 {
        font-size: 2rem;
    }
    
    .rating-summary .stars i {
        font-size: 1.5rem;
    }

    .why-us-grid {
        display: block;
        position: relative;
        overflow: hidden;
    }
    
    .why-us-item {
        display: none;
        width: 100%;
        margin: 0;
        padding: 2rem;
    }
    
    .why-us-item.active {
        display: block;
    }
    
    .why-us-carousel-nav {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 2rem;
    }
    
    .why-us-carousel-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #d1d5db;
        border: none;
        cursor: pointer;
        transition: background 0.3s ease;
    }
    
    .why-us-carousel-dot.active {
        background: #1e3a8a;
    }

    .floating-contact {
        bottom: 20px;
        right: 20px;
    }

    .contact-toggle {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .contact-options {
        bottom: 70px;
        right: -20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 130px 1rem 2rem;
    }

    .hero-title {
        font-family: 'Poppins', sans-serif;
        font-size: 2rem;
        font-weight: 900;
        text-transform: capitalize;
        letter-spacing: 0.005em;
        word-spacing: 0.05em;
    }

    .section-title {
        font-family: 'Poppins', sans-serif;
        font-size: 2rem;
        font-weight: 800;
        text-transform: capitalize;
        letter-spacing: -0.005em;
    }
    
    .tour-card h3 {
        font-family: 'Poppins', sans-serif;
        font-size: 1.6rem;
        font-weight: 900;
        text-transform: capitalize;
        letter-spacing: -0.003em;
        line-height: 1.3;
    }

    .tour-card {
        padding: 1.5rem;
    }
    
    .main-image {
        height: 250px;
    }
    
    .thumbnails {
        gap: 0.2rem;
    }
    
    .thumbnail {
        width: 70px;
        height: 52px;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .tour-details.expanded {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .details-content h4 {
        font-size: 1.1rem;
        margin: 1rem 0 0.5rem 0;
    }
    
    .details-content li {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
}
