/* ============================================
   MOBILE-FIRST RESPONSIVE DESIGN
   ============================================ */

/* Base Mobile Styles (320px - 767px) are already in main.css */

/* Small Mobile Devices: 320px - 374px */
@media (max-width: 374px) {
    .hero-heading {
        font-size: 32px !important;
        line-height: 1.1;
    }
    
    .hero-subheading {
        font-size: 16px !important;
    }
    
    .section-title {
        font-size: 28px !important;
    }
    
    .btn {
        padding: 12px 20px;
        min-height: 44px;
        font-size: 14px;
        width: 100%;
    }
    
    .hero-cta-stack {
        width: 100%;
    }
    
    .help-card-content {
        padding: 16px;
    }
    
    .service-card {
        padding: 24px 16px;
    }
    
    .tour-card {
        margin: 0 4px;
    }
    
    /* Carousel indicators for very small screens */
    .carousel-indicator {
        width: 6px !important;
        height: 6px !important;
        margin: 0 3px !important;
    }
    
    .carousel-indicator.active {
        transform: scale(1.1) !important;
    }
}

/* Mobile Devices: 375px - 424px */
@media (min-width: 375px) and (max-width: 424px) {
    .hero-heading {
        font-size: 36px;
    }
    
    .btn {
        padding: 12px 24px;
        min-height: 44px;
    }
    
    /* Carousel indicators */
    .carousel-indicator {
        width: 7px !important;
        height: 7px !important;
        margin: 0 3px !important;
    }
    
    .carousel-indicator.active {
        transform: scale(1.1) !important;
    }
}

/* Mobile Devices: 425px - 639px */
@media (min-width: 425px) and (max-width: 639px) {
    .hero-heading {
        font-size: 40px;
    }
    
    .hero-subheading {
        font-size: 18px;
    }
    
    .btn {
        padding: 14px 28px;
        min-height: 48px;
    }
    
    /* Carousel indicators */
    .carousel-indicator {
        width: 8px !important;
        height: 8px !important;
        margin: 0 4px !important;
    }
    
    .carousel-indicator.active {
        transform: scale(1.2) !important;
    }
}

/* Mobile: 640px - 767px (Large Mobile) */
@media (min-width: 640px) and (max-width: 767px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-heading {
        font-size: 44px;
    }
    
    .hero-subheading {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .hero-cta-stack {
        flex-direction: row;
        justify-content: center;
        gap: 16px;
    }
    
    .help-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Carousel indicators for large mobile */
    .carousel-indicator {
        width: 8px !important;
        height: 8px !important;
        margin: 0 4px !important;
    }
    
    .carousel-indicator.active {
        transform: scale(1.2) !important;
    }
}

/* Mobile Menu Toggle for smaller screens */
@media (max-width: 767px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    /* Mobile carousel touch scrolling - FIXED */
    .tours-carousel {
        position: relative;
        overflow: hidden;
    }
    
    .carousel-track-container {
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        margin: 0 -16px;
        padding: 0 16px;
    }
    
    .carousel-track {
        display: flex;
        gap: 16px;
        padding-bottom: 20px;
        width: max-content;
    }
    
    .carousel-track::-webkit-scrollbar {
        display: none;
    }
    
    .tour-card {
        scroll-snap-align: center;
        flex: 0 0 calc(100vw - 64px);
        max-width: calc(100vw - 64px);
        margin: 0;
    }
    
    .carousel-btn {
        display: none !important;
    }
    
    /* FIXED: Carousel indicators for mobile - properly sized */
    .carousel-indicators {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 6px;
        margin-top: 16px;
        padding: 4px 0;
    }
    
    .carousel-indicator {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #D1D5DB;
        border: none;
        padding: 0;
        cursor: pointer;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }
    
    .carousel-indicator.active {
        background-color: #2563EB;
        transform: scale(1.2);
    }
    
    /* Mobile only classes */
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
    
    /* Fix for mobile touch targets */
    .mobile-menu-btn,
    .btn,
    .social-icon,
    .carousel-indicator,
    .category-tab,
    .btn-learn-more,
    .btn-package-details {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Carousel indicators exception - smaller touch target */
    .carousel-indicator {
        min-height: 20px;
        min-width: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .carousel-indicator::before {
        content: '';
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: currentColor;
    }
    
    .carousel-indicator.active::before {
        width: 10px;
        height: 10px;
    }
    
    /* Fix mobile hero section height */
    .hero-section {
        min-height: 500px;
        height: auto;
        padding: 80px 0 40px;
    }
    
    /* Fix mobile images */
    img {
        max-width: 100%;
        height: auto;
    }
}

/* Tablet: 768px - 1023px */
@media (min-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    /* Typography adjustments */
    .hero-heading {
        font-size: 52px;
    }
    
    .hero-subheading {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    /* Button adjustments */
    .hero-cta-stack {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
    
    /* Who We Help */
    .help-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Services Snapshot */
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Why Travelers Trust Us */
    .trust-content {
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }
    
    .trust-image {
        flex: 1;
    }
    
    .trust-details {
        flex: 1;
    }
    
    /* Featured Tours - FIXED for Tablet */
    .carousel-track-container {
        overflow: hidden;
        margin: 0 20px;
    }
    
    .carousel-track {
        display: flex;
        gap: 16px;
        transition: transform 0.5s ease;
    }
    
    .tour-card {
        flex: 0 0 calc(50% - 8px);
        min-width: calc(50% - 8px);
        margin: 0;
    }
    
    .carousel-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: white;
        border: 1px solid #E5E7EB;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
    }
    
    .carousel-btn:hover {
        background-color: #2563EB;
        color: white;
        border-color: #2563EB;
    }
    
    .carousel-btn-prev {
        left: 0;
    }
    
    .carousel-btn-next {
        right: 0;
    }
    
    /* FIXED: Carousel indicators for tablet - properly sized */
    .carousel-indicators {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-top: 24px;
        padding: 4px 0;
    }
    
    .carousel-indicator {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #D1D5DB;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
    }
    
    .carousel-indicator.active {
        background-color: #2563EB;
        transform: scale(1.2);
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    /* Hide sticky WhatsApp button on tablet/desktop */
    .sticky-whatsapp-btn {
        display: none;
    }
    
    /* Show desktop navigation */
    .desktop-nav {
        display: block;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .mobile-nav {
        display: none !important;
    }
}

/* Desktop: 1024px - 1279px */
@media (min-width: 1024px) {
    /* Base adjustments */
    body {
        font-size: 16px;
    }
    
    .container {
        max-width: 1200px;
        padding: 0 32px;
    }
    
    /* Typography adjustments */
    .hero-heading {
        font-size: 60px;
    }
    
    .hero-subheading {
        font-size: 22px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    /* Button adjustments */
    .btn {
        min-height: 52px;
        padding: 14px 28px;
        font-size: 16px;
    }
    
    /* Hero Section */
    .hero-section {
        height: 85vh;
        min-height: 700px;
    }
    
    /* Header adjustments */
    .mobile-menu-btn {
        display: none;
    }
    
    .desktop-nav {
        display: block;
    }
    
    /* Who We Help */
    .help-cards-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    /* Featured Tours */
    .tour-card {
        flex: 0 0 calc(33.333% - 10.666px);
        min-width: calc(33.333% - 10.666px);
    }
    
    /* FIXED: Carousel indicators for desktop - properly sized */
    .carousel-indicators {
        gap: 10px;
        margin-top: 32px;
    }
    
    .carousel-indicator {
        width: 10px;
        height: 10px;
    }
    
    .carousel-indicator.active {
        transform: scale(1.3);
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Large Desktop: 1280px+ */
@media (min-width: 1280px) {
    .container {
        max-width: 1200px;
        padding: 0 40px;
    }
    
    .hero-heading {
        font-size: 72px;
    }
    
    .hero-subheading {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 44px;
    }
    
    .btn {
        min-height: 56px;
        padding: 16px 32px;
        font-size: 18px;
    }
    
    /* Featured Tours */
    .carousel-track-container {
        margin: 0 40px;
    }
    
    .tour-card {
        flex: 0 0 calc(33.333% - 16px);
        min-width: calc(33.333% - 16px);
    }
    
    /* FIXED: Carousel indicators for large desktop */
    .carousel-indicators {
        gap: 12px;
    }
    
    .carousel-indicator {
        width: 12px;
        height: 12px;
    }
    
    .carousel-indicator.active {
        transform: scale(1.4);
    }
}

/* Extra Large Desktop: 1440px+ */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-heading {
        font-size: 80px;
    }
    
    .hero-subheading {
        font-size: 26px;
    }
    
    .section-title {
        font-size: 48px;
    }
    
    /* FIXED: Carousel indicators for extra large screens */
    .carousel-indicator {
        width: 12px;
        height: 12px;
    }
    
    .carousel-indicator.active {
        transform: scale(1.4);
    }
}

/* ============================================
   ABOUT PAGE RESPONSIVE ADJUSTMENTS
   ============================================ */

/* Mobile adjustments */
@media (max-width: 767px) {
    .page-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .page-hero-heading {
        font-size: 32px;
    }
    
    .page-hero-subtitle {
        font-size: 16px;
    }
    
    .founder-content {
        flex-direction: column;
        gap: 32px;
    }
    
    .founder-image {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .founder-image img {
        width: 100%;
        height: auto;
        display: block;
    }
    
    .founder-quote {
        padding: 20px 16px;
    }
    
    .quote-text {
        font-size: 16px;
        padding: 0 8px;
    }
    
    .belief-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .experience-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-subtitle {
        font-size: 16px;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .cta-note {
        font-size: 14px;
        flex-direction: column;
        gap: 8px;
    }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
    .page-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .page-hero-heading {
        font-size: 44px;
    }
    
    .founder-content {
        flex-direction: row;
        gap: 40px;
        align-items: flex-start;
    }
    
    .founder-image {
        flex: 0 0 45%;
        max-width: 45%;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    }
    
    .founder-image img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s ease;
    }
    
    .founder-image:hover img {
        transform: scale(1.03);
    }
    
    .founder-details {
        flex: 0 0 55%;
    }
    
    .belief-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .experience-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .cta-actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* Desktop adjustments for reference */
@media (min-width: 1024px) {
    .founder-content {
        flex-direction: row;
        gap: 60px;
        align-items: flex-start;
    }
    
    .founder-image {
        flex: 0 0 40%;
        max-width: 40%;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }
    
    .founder-image img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s ease;
    }
    
    .founder-image:hover img {
        transform: scale(1.05);
    }
    
    .founder-details {
        flex: 0 0 60%;
    }
}

/* ============================================
   SERVICES PAGE RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 767px) {
    .page-hero-subtitle {
        font-size: 18px;
    }
    
    .services-detailed-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .service-card-header {
        flex-direction: column;
        text-align: center;
        padding: 20px 16px;
    }
    
    .service-icon-large {
        margin-right: 0;
        margin-bottom: 12px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .service-card-content {
        padding: 20px 16px;
    }
    
    .service-card-footer {
        padding: 0 16px 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .btn-learn-more {
        justify-content: center;
        width: 100%;
    }
    
    .service-expandable {
        margin: 0 16px;
        padding: 20px 0;
    }
    
    .comparison-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .comparison-title {
        font-size: 20px;
    }
    
    .comparison-items {
        padding: 0 16px;
    }
    
    .comparison-item {
        flex-direction: column;
        gap: 12px;
        padding: 16px 0;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-text {
        font-size: 16px;
    }
    
    .cta-content {
        padding: 32px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-large {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .services-detailed-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .service-card-header {
        padding: 20px;
    }
    
    .service-card-content {
        padding: 20px;
    }
    
    .service-card-footer {
        padding: 0 20px 20px;
    }
    
    .service-expandable {
        margin: 0 20px;
        padding: 20px 0;
    }
    
    .comparison-header {
        flex-direction: row;
        text-align: left;
    }
    
    .comparison-item {
        flex-direction: row;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* ============================================
   TOUR PACKAGES PAGE RESPONSIVE ADJUSTMENTS
   ============================================ */

.package-categories {
    padding: 40px 0 20px;
    background-color: #F8F9FA;
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.category-tabs::-webkit-scrollbar {
    height: 6px;
}

.category-tabs::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.category-tabs::-webkit-scrollbar-thumb {
    background: #2563EB;
    border-radius: 3px;
}

.category-tab {
    padding: 12px 24px;
    background-color: white;
    border: 2px solid #E5E7EB;
    border-radius: 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #6B7280;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.category-tab:hover {
    border-color: #2563EB;
    color: #2563EB;
}

.category-tab.active {
    background-color: #2563EB;
    border-color: #2563EB;
    color: white;
}

/* Package Grid Section */
.package-grid-section {
    padding: 40px 0 80px;
    background-color: #F8F9FA;
}

.package-panel {
    display: none;
}

.package-panel.active {
    display: block;
}

.package-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 40px;
}

@media (min-width: 640px) {
    .package-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .package-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Package Card */
.package-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-card:hover,
.package-card.card-hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.package-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #1F2937;
    backdrop-filter: blur(4px);
}

.package-badge i {
    color: #2563EB;
}

.package-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-header {
    margin-bottom: 12px;
}

.package-title {
    font-size: 22px;
    margin-bottom: 8px;
    color: #1F2937;
    line-height: 1.2;
}

.package-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #F59E0B;
    font-size: 14px;
}

.rating-text {
    margin-left: 8px;
    color: #6B7280;
    font-size: 13px;
}

.package-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6B7280;
    font-size: 14px;
    margin-bottom: 16px;
}

.package-duration i {
    color: #2563EB;
}

.package-highlights {
    margin-bottom: 20px;
    flex: 1;
}

.package-highlights h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #1F2937;
    font-weight: 600;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlights-list li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 6px;
    font-size: 14px;
    color: #4B5563;
    line-height: 1.4;
}

.highlights-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563EB;
    font-weight: bold;
}

.package-price {
    margin-bottom: 20px;
    padding: 16px;
    background-color: #F8F9FA;
    border-radius: 8px;
}

.price-info {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 8px;
}

.price-label {
    font-size: 12px;
    color: #6B7280;
    text-transform: uppercase;
}

.price-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #2563EB;
}

.price-note {
    font-size: 12px;
    color: #6B7280;
}

.includes-text {
    font-size: 13px;
    color: #10B981;
    font-weight: 500;
}

.package-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.btn-package-details {
    background: none;
    border: 2px solid #E5E7EB;
    color: #6B7280;
    padding: 10px 20px;
    border-radius: 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-package-details:hover {
    border-color: #2563EB;
    color: #2563EB;
}

.no-packages-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.no-packages-message i {
    color: #2563EB;
    margin-bottom: 20px;
}

.no-packages-message h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1F2937;
}

.no-packages-message p {
    color: #6B7280;
    margin-bottom: 8px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.no-packages-message .btn {
    margin-top: 20px;
}

/* Custom Tour Section */
.custom-tour {
    padding: 80px 0;
    background: linear-gradient(135deg, #004db9 0%, #0361f7 100%);
    color: white;
}

.custom-tour-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

@media (min-width: 768px) {
    .custom-tour-content {
        flex-direction: row;
        align-items: flex-start;
    }
}

.custom-tour-text {
    flex: 1;
}

.custom-tour-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.6;
}

.custom-tour-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.feature i {
    color: #10B981;
    font-size: 20px;
}

.custom-tour-form {
    flex: 1;
    background-color: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.tour-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .tour-form {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.tour-form label {
    font-size: 14px;
    font-weight: 500;
    color: #1F2937;
    margin-bottom: 6px;
}

.tour-form input,
.tour-form select,
.tour-form textarea {
    padding: 12px 16px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #1F2937;
    background-color: white;
    transition: border-color 0.3s ease;
}

.tour-form input:focus,
.tour-form select:focus,
.tour-form textarea:focus {
    outline: none;
    border-color: #2563EB;
}

.tour-form textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 20px;
}

.form-note {
    font-size: 14px;
    color: #6B7280;
    margin-top: 12px;
}

/* Modal Styles - FIXED */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Prevent scrolling when modal is open */
body.modal-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
}

.modal {
    background-color: white;
    border-radius: 12px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #F3F4F6;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.modal-close:hover {
    background-color: #E5E7EB;
    transform: scale(1.1);
}

.modal-close i {
    color: #6B7280;
    font-size: 20px;
}

.modal-content {
    padding: 40px;
}

@media (max-width: 767px) {
    .modal-content {
        padding: 20px;
    }
}

.modal-package-header {
    margin-bottom: 24px;
}

.modal-title {
    font-size: 32px;
    color: #1F2937;
    margin-bottom: 12px;
}

@media (max-width: 767px) {
    .modal-title {
        font-size: 24px;
    }
}

.modal-package-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    color: #6B7280;
    font-size: 16px;
}

.modal-location,
.modal-duration,
.modal-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.modal-location i,
.modal-duration i,
.modal-rating i {
    color: #2563EB;
}

.modal-rating i {
    color: #F59E0B;
}

.modal-package-image {
    margin-bottom: 32px;
    border-radius: 8px;
    overflow: hidden;
}

.modal-package-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.modal-package-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.modal-section h3 {
    font-size: 20px;
    color: #1F2937;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #E5E7EB;
}

.modal-section p {
    color: #4B5563;
    line-height: 1.6;
}

.itinerary-days {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.itinerary-day h4 {
    font-size: 18px;
    color: #2563EB;
    margin-bottom: 6px;
}

.itinerary-day p {
    color: #4B5563;
    line-height: 1.6;
}

.inclusions-exclusions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .inclusions-exclusions {
        grid-template-columns: repeat(2, 1fr);
    }
}

.inclusions h4,
.exclusions h4 {
    font-size: 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.inclusions h4 i {
    color: #10B981;
}

.exclusions h4 i {
    color: #EF4444;
}

.inclusions ul,
.exclusions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inclusions li,
.exclusions li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    color: #4B5563;
    line-height: 1.5;
}

.inclusions li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

.exclusions li:before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #EF4444;
    font-weight: bold;
}

.price-details {
    background-color: #F8F9FA;
    border-radius: 8px;
    padding: 24px;
}

.price-breakdown {
    margin-bottom: 16px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #E5E7EB;
    color: #4B5563;
}

.price-total {
    display: flex;
    justify-content: space-between;
    padding: 16px 0 0;
    font-weight: 700;
    font-size: 18px;
    color: #1F2937;
}

.total-amount {
    color: #2563EB;
    font-size: 24px;
}

.price-notes {
    font-size: 14px;
    color: #6B7280;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.price-notes i {
    color: #2563EB;
    margin-top: 2px;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid #E5E7EB;
}

@media (min-width: 768px) {
    .modal-actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* Helper Classes */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* ============================================
   SPECIAL FIXES FOR CAROUSEL INDICATORS
   ============================================ */

/* Enhanced carousel indicator sizing system */
.carousel-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
    padding: 8px 0;
}

.carousel-indicator {
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Base size for all carousel indicators */
.carousel-indicator::before {
    content: '';
    display: block;
    border-radius: 50%;
    background-color: #D1D5DB;
    transition: all 0.3s ease;
}

.carousel-indicator.active::before {
    background-color: #2563EB;
}

/* Mobile sizes */
@media (max-width: 767px) {
    .carousel-indicators {
        gap: 6px;
        margin-top: 16px;
    }
    
    .carousel-indicator::before {
        width: 8px;
        height: 8px;
    }
    
    .carousel-indicator.active::before {
        width: 10px;
        height: 10px;
    }
}

/* Tablet sizes */
@media (min-width: 768px) and (max-width: 1023px) {
    .carousel-indicators {
        gap: 8px;
        margin-top: 24px;
    }
    
    .carousel-indicator::before {
        width: 8px;
        height: 8px;
    }
    
    .carousel-indicator.active::before {
        width: 10px;
        height: 10px;
        transform: scale(1.2);
    }
}

/* Desktop sizes */
@media (min-width: 1024px) and (max-width: 1279px) {
    .carousel-indicators {
        gap: 10px;
        margin-top: 32px;
    }
    
    .carousel-indicator::before {
        width: 10px;
        height: 10px;
    }
    
    .carousel-indicator.active::before {
        width: 12px;
        height: 12px;
        transform: scale(1.3);
    }
}

/* Large desktop sizes */
@media (min-width: 1280px) and (max-width: 1439px) {
    .carousel-indicators {
        gap: 12px;
        margin-top: 32px;
    }
    
    .carousel-indicator::before {
        width: 12px;
        height: 12px;
    }
    
    .carousel-indicator.active::before {
        width: 14px;
        height: 14px;
        transform: scale(1.4);
    }
}

/* Extra large desktop sizes */
@media (min-width: 1440px) {
    .carousel-indicators {
        gap: 12px;
        margin-top: 32px;
    }
    
    .carousel-indicator::before {
        width: 12px;
        height: 12px;
    }
    
    .carousel-indicator.active::before {
        width: 14px;
        height: 14px;
        transform: scale(1.4);
    }
}

/* ============================================
   FIXES FOR CAROUSEL ON MOBILE
   ============================================ */

/* Fix for carousel on mobile */
@media (max-width: 767px) {
    .tours-carousel {
        position: relative;
        overflow: visible;
    }
    
    .carousel-track-container {
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        margin: 0 -16px;
        padding: 0 16px 20px;
    }
    
    .carousel-track {
        display: flex;
        gap: 16px;
        padding: 4px 0;
        width: max-content;
        transition: none;
    }
    
    .tour-card {
        scroll-snap-align: center;
        flex: 0 0 calc(100vw - 64px);
        width: calc(100vw - 64px);
        max-width: calc(100vw - 64px);
        margin: 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    /* Hide navigation buttons on mobile */
    .carousel-btn {
        display: none !important;
    }
}

/* Fix for tablet carousel */
@media (min-width: 768px) and (max-width: 1023px) {
    .tour-card {
        flex: 0 0 calc(50% - 12px);
        min-width: calc(50% - 12px);
    }
    
    .carousel-track {
        gap: 24px;
    }
}

/* Fix for desktop carousel */
@media (min-width: 1024px) {
    .tour-card {
        flex: 0 0 calc(33.333% - 16px);
        min-width: calc(33.333% - 16px);
    }
    
    .carousel-track {
        gap: 24px;
    }
}

/* ============================================
   FIXES FOR IOS SAFARI
   ============================================ */

@supports (-webkit-touch-callout: none) {
    /* iOS Safari specific fixes */
    .hero-section {
        height: -webkit-fill-available;
        min-height: -webkit-fill-available;
    }
    
    .carousel-track-container {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Fix for sticky elements on iOS */
    .sticky-whatsapp-btn {
        position: fixed;
        bottom: max(24px, env(safe-area-inset-bottom));
        right: 24px;
    }
}

/* ============================================
   FIXES FOR ANDROID CHROME
   ============================================ */

@supports not (-webkit-touch-callout: none) {
    /* Android Chrome specific fixes */
    .carousel-track-container {
        scrollbar-width: none;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .sticky-whatsapp-btn,
    .mobile-menu-btn,
    .carousel-btn,
    .carousel-indicators,
    .footer-newsletter,
    .social-icons {
        display: none !important;
    }
    
    .main-header {
        position: static !important;
        box-shadow: none !important;
    }
    
    .hero-section {
        height: auto !important;
        min-height: auto !important;
        page-break-after: avoid;
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
        font-size: 90%;
    }
    
    .btn {
        border: 1px solid #000 !important;
        background: none !important;
        color: #000 !important;
    }
}

/* ============================================
   BOOKING PROCESS SECTION - KEPT AS REQUESTED
   ============================================ */

@media (min-width: 768px) {
    /* Booking Process */
    .process-steps {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .process-step {
        flex: 1;
    }
    
    .process-connector {
        display: block;
        position: absolute;
        top: 20px;
        width: calc(100% / 3);
        height: 2px;
        background-color: #E5E7EB;
        left: 16.666%;
        z-index: -1;
        border-top: 2px dotted #2563EB;
    }
    
    .process-connector:nth-child(4) {
        left: 50%;
    }

}

