:root {
    --primary-color: #00BFFF; /* Sky Blue */
    --secondary-color: #FFA500; /* Orange */
    --text-color: #333;
    --light-gray: #f4f4f4;
    --white: #fff;
    --navbar-height: 70px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
    overflow: hidden;
}

/* Header & Navigation */
#navbar {
    background: var(--white);
    color: var(--text-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: var(--navbar-height);
}

#navbar nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    height: 100%;
}

#navbar .logo {
    flex-shrink: 0;
}

#navbar .logo .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

#navbar .logo .logo-link img {
    display: block;
    height: 48px;
    width: auto;
    max-width: min(240px, 50vw);
    object-fit: contain;
}

#navbar .nav-links {
    display: flex;
    list-style: none;
}

#navbar .nav-links li a {
    color: var(--text-color);
    padding: 10px 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

#navbar .nav-links li a:hover,
#navbar .nav-links li a.active {
    color: var(--secondary-color);
}

/* Burger Menu for Mobile */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Sections */
section {
    padding: 80px 0;
    margin-top: var(--navbar-height); /* Offset for fixed navbar */
}
section:first-of-type {
    margin-top: 0; /* No margin for the first section (home) if it's full screen */
}


section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: var(--primary-color);
}

section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section with Carousel */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    overflow: hidden;
    padding: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100vh;
}

.hero-text {
    flex: 1;
    color: white;
    padding-right: 2rem;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.feature span {
    font-size: 1.1rem;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.cta-button.primary {
    background: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero-images {
    flex: 1;
    position: relative;
    height: 600px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
    height: 100%;
}

.image-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.image-item:hover {
    transform: scale(1.05);
}

.image-item.main {
    grid-column: 1 / -1;
    grid-row: 1 / 2;
}

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

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

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero-scroll span {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-scroll i {
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@media(max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding-top: 6rem;
    }

    .hero-text {
        padding-right: 0;
        margin-bottom: 2rem;
    }

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

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

    .hero-images {
        width: 100%;
        height: 400px;
    }
}

@media(max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-images {
        height: 300px;
    }
}

/* Contact Form */
#contactForm {
    max-width: 800px;
    margin: 30px auto;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

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

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 191, 255, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group small {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-top: 4px;
}

#form-message {
    text-align: center;
    font-weight: bold;
    padding: 10px;
    border-radius: 4px;
    margin-top: 20px;
}

#form-message.success {
    color: #28a745;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
}

#form-message.error {
    color: #dc3545;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
}

#contactForm button[type="submit"] {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 300px;
    margin: 2rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#contactForm button[type="submit"]:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

#contactForm button[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

#contactForm button[type="submit"]:hover:before {
    left: 100%;
}

#contactForm button[type="submit"]:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

#contactForm button[type="submit"] i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

#contactForm button[type="submit"]:hover i {
    transform: translateX(5px);
}

@media(max-width: 768px) {
    #contactForm button[type="submit"] {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Footer */
footer {
    background: var(--text-color);
    color: var(--white);
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

/* Responsive Design */
@media(max-width: 768px) {
    #navbar nav {
        padding: 0 20px; /* Reset padding for smaller screens */
    }

    #navbar .logo .logo-link img {
        height: 40px;
        max-width: min(200px, 58vw);
    }

    .nav-links {
        position: absolute;
        right: 0px;
        height: calc(100vh - var(--navbar-height));
        top: var(--navbar-height);
        background-color: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 60%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        box-shadow: -5px 0 10px rgba(0,0,0,0.1);
    }

    .nav-links li {
        opacity: 0;
        width: 100%;
        text-align: center;
    }
    .nav-links li a {
        display: block;
        padding: 20px;
        width: 100%;
    }
    .nav-links li a:hover {
        background-color: var(--light-gray);
    }


    .burger {
        display: block;
    }

    .nav-active {
        transform: translateX(0%);
    }

    /* Animation for nav links */
    @keyframes navLinkFade {
        from {
            opacity: 0;
            transform: translateX(50px);
        }
        to {
            opacity: 1;
            transform: translateX(0px);
        }
    }

    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .toggle .line2 {
        opacity: 0;
    }
    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1.2rem;
    }
    section h2 {
        font-size: 2rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    #contactForm {
        padding: 20px;
    }
}

/* Section specific styling adjustments */
#home {
  padding: 0; /* Remove padding as it's a full vh hero */
}

section:not(#home) { /* All sections except home */
    padding-top: calc(var(--navbar-height) + 40px); /* Navbar height + extra space */
    padding-bottom: 60px;
}

/* Add a bit more space above section titles when scrolled to */
section::before {
    content: "";
    display: block;
    height: var(--navbar-height); /* Match navbar height */
    margin-top: calc(-1 * var(--navbar-height)); /* Negative margin to pull it up */
    visibility: hidden;
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px; /* Optional: adds rounded corners to images */
}

/* Utility class for active nav link (can be set by JS) */
.active-link {
    color: var(--secondary-color) !important;
    font-weight: bold;
}

/* Ticket Booking Section Styles */
.booking-features {
    margin: 40px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h3 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-item p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

/* Booking Gallery */
.booking-gallery {
    margin: 40px 0;
}

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

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white);
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Booking Benefits */
.booking-benefits {
    margin: 40px 0;
    text-align: center;
}

.booking-benefits h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 8px;
}

.benefit-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.benefit-item p {
    margin: 0;
    font-weight: 500;
}

/* Booking CTA */
.booking-cta {
    text-align: center;
    margin: 40px 0;
    padding: 40px;
    background: linear-gradient(rgba(0, 191, 255, 0.1), rgba(0, 191, 255, 0.1));
    border-radius: 10px;
}

.booking-cta h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.booking-cta p {
    margin-bottom: 25px;
    color: var(--text-color);
}

/* Responsive Adjustments */
@media(max-width: 768px) {
    .feature-grid,
    .gallery-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 200px;
    }

    .booking-cta {
        padding: 30px 20px;
    }
}

/* Visa Section Styles */
.visa-services {
    margin: 40px 0;
}

.visa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.visa-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.visa-card:hover {
    transform: translateY(-5px);
}

.visa-icon {
    text-align: center;
    margin-bottom: 20px;
}

.visa-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.visa-card h3 {
    color: var(--text-color);
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.3rem;
}

.visa-card ul {
    list-style: none;
    padding: 0;
}

.visa-card ul li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.visa-card ul li:before {
    content: "✓";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Visa Process Steps */
.visa-process {
    margin: 60px 0;
    text-align: center;
}

.visa-process h3 {
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.step {
    position: relative;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h4 {
    color: var(--text-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Visa Countries */
.visa-countries {
    margin: 60px 0;
}

.visa-countries h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 1.8rem;
}

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

.country-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.country-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.country-item:hover img {
    transform: scale(1.05);
}

.country-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    padding: 20px;
}

.country-info h4 {
    margin: 0 0 5px;
    font-size: 1.3rem;
}

.country-info p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Visa Benefits */
.visa-benefits {
    margin: 60px 0;
    text-align: center;
}

.visa-benefits h3 {
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 1.8rem;
}

/* Visa CTA */
.visa-cta {
    text-align: center;
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(rgba(0, 191, 255, 0.1), rgba(0, 191, 255, 0.1));
    border-radius: 10px;
}

.visa-cta h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.visa-cta p {
    margin-bottom: 25px;
    color: var(--text-color);
}

/* Responsive Adjustments */
@media(max-width: 768px) {
    .visa-grid,
    .process-steps,
    .country-grid {
        grid-template-columns: 1fr;
    }

    .country-item img {
        height: 200px;
    }

    .visa-cta {
        padding: 30px 20px;
    }
}

/* Package Section Styles */
.package-categories {
    margin: 40px 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.category-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-icon {
    margin-bottom: 20px;
}

.category-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.category-card h3 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.category-card p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

/* Package Showcase */
.package-showcase {
    margin: 60px 0;
}

.package-showcase h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 1.8rem;
}

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

.package-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-image {
    position: relative;
    height: 200px;
}

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

.package-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.package-content {
    padding: 20px;
}

.package-content h4 {
    color: var(--text-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.package-content p {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.package-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.package-content ul li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.package-content ul li:before {
    content: "✓";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.package-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    width: 100%;
    text-align: center;
}

.package-button:hover {
    background: #0099cc;
}

/* Package Features */
.package-features {
    margin: 60px 0;
    text-align: center;
}

.package-features h3 {
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 1.8rem;
}

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

.feature-item {
    padding: 30px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item h4 {
    color: var(--text-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Package CTA */
.package-cta {
    text-align: center;
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(rgba(0, 191, 255, 0.1), rgba(0, 191, 255, 0.1));
    border-radius: 10px;
}

.package-cta h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.package-cta p {
    margin-bottom: 25px;
    color: var(--text-color);
}

/* Responsive Adjustments */
@media(max-width: 768px) {
    .category-grid,
    .package-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .package-image {
        height: 180px;
    }

    .package-cta {
        padding: 30px 20px;
    }
}

/* Group Tours Section Styles */
.group-features {
    margin: 40px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h3 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-item p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

/* Group Tours Showcase */
.group-tours-showcase {
    margin: 60px 0;
}

.group-tours-showcase h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 1.8rem;
}

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

.tour-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-5px);
}

.tour-image {
    position: relative;
    height: 200px;
}

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

.tour-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.tour-content {
    padding: 20px;
}

.tour-content h4 {
    color: var(--text-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.tour-content p {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.tour-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.tour-content ul li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.tour-content ul li:before {
    content: "✓";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.tour-price {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 5px;
}

.tour-price span {
    display: block;
    color: #666;
    font-size: 0.9rem;
}

.tour-price strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 5px 0;
}

.tour-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    width: 100%;
    text-align: center;
    font-weight: 500;
}

.tour-button:hover {
    background: #0099cc;
}

/* Group Benefits */
.group-benefits {
    margin: 60px 0;
    text-align: center;
}

.group-benefits h3 {
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 1.8rem;
}

/* Group Gallery */
.group-gallery {
    margin: 60px 0;
}

.group-gallery h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 1.8rem;
}

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

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Group CTA */
.group-cta {
    text-align: center;
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(rgba(0, 191, 255, 0.1), rgba(0, 191, 255, 0.1));
    border-radius: 10px;
}

.group-cta h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.group-cta p {
    margin-bottom: 25px;
    color: var(--text-color);
}

/* Responsive Adjustments */
@media(max-width: 768px) {
    .feature-grid,
    .tour-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .tour-image,
    .gallery-item img {
        height: 180px;
    }

    .group-cta {
        padding: 30px 20px;
    }
}

/* Forex Section Styles */
.forex-services {
    margin: 40px 0;
}

.forex-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.forex-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.forex-card:hover {
    transform: translateY(-5px);
}

.forex-icon {
    text-align: center;
    margin-bottom: 20px;
}

.forex-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.forex-card h3 {
    color: var(--text-color);
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.3rem;
}

.forex-card ul {
    list-style: none;
    padding: 0;
}

.forex-card ul li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.forex-card ul li:before {
    content: "✓";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Forex Currencies */
.forex-currencies {
    margin: 60px 0;
}

.forex-currencies h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 1.8rem;
}

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

.currency-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.currency-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.currency-item:hover img {
    transform: scale(1.05);
}

.currency-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    padding: 20px;
}

.currency-info h4 {
    margin: 0 0 5px;
    font-size: 1.3rem;
}

.currency-info p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Forex Benefits */
.forex-benefits {
    margin: 60px 0;
    text-align: center;
}

.forex-benefits h3 {
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 1.8rem;
}

/* Forex CTA */
.forex-cta {
    text-align: center;
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(rgba(0, 191, 255, 0.1), rgba(0, 191, 255, 0.1));
    border-radius: 10px;
}

.forex-cta h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.forex-cta p {
    margin-bottom: 25px;
    color: var(--text-color);
}

/* Responsive Adjustments */
@media(max-width: 768px) {
    .forex-grid,
    .currency-grid {
        grid-template-columns: 1fr;
    }

    .currency-item img {
        height: 200px;
    }

    .forex-cta {
        padding: 30px 20px;
    }
}

.destination-gallery {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
    margin-top: 2rem;
}

.gallery-container {
    width: 100%;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: calc(250px * 12); /* 6 items * 2 for seamless loop */
}

.gallery-item {
    flex: 0 0 250px;
    margin: 0 15px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 1rem;
    font-weight: 600;
    text-align: center;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 6)); /* Move by half the total width */
    }
}

/* Pause animation on hover */
.gallery-track:hover {
    animation-play-state: paused;
}

/* Mobile Responsive Adjustments */
@media(max-width: 768px) {
    .destination-gallery {
        padding: 1rem 0;
    }

    .gallery-item {
        flex: 0 0 200px;
    }

    .gallery-item img {
        height: 120px;
    }

    .gallery-caption {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
}

/* Image Caption Styles */
.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 1rem;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-item:hover .image-caption {
    opacity: 1;
}

/* Enhanced Image Grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
    height: 100%;
}

.image-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.image-item:hover {
    transform: scale(1.05);
}

.image-item.main {
    grid-column: 1 / -1;
    grid-row: 1 / 2;
}

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

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