/* Global Styles */
:root {
    --primary-color: #FF6B00;
    --secondary-color: #FF8533;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --dark-gray: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: var(--dark-gray);
}

/* Remove underline and blue color from all links */
a {
    color: inherit;
    text-decoration: none;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 0.8rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.6rem 5%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
}

.logo h1 {
    color: var(--dark-gray);
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo h1 span {
    color: var(--primary-color);
}

.nav-links a {
    color: var(--dark-gray);
    text-decoration: none;
    margin-left: 2.2rem;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Enhanced Hero Section */
.hero {
    min-height: 90vh;
    width: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 5%;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    gap: 40px;
}

.hero-text {
    flex: 1;
    text-align: left;
    animation: fadeInLeft 1s ease;
}

.hero-image {
    flex: 1;
    animation: fadeInRight 1s ease;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #151a28;
}

.highlight {
    color: var(--secondary-color);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(67, 97, 238, 0.2);
    z-index: -1;
}

.subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #4a5568;
    line-height: 1.6;
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 2rem;
}

.cta-button {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-button i {
    font-size: 1.1rem;
}

.primary {
    background-color: var(--primary-color);
    color: white;
    border: var(--secondary-color);
}

.primary:hover {
    background-color: #151a28;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.2);
}

.secondary {
    background-color: var(--primary-color);
    color: white;
    border: var(--secondary-color);
}

.secondary:hover {
    background-color: #151a28;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.2);
}

.cta-button.secondary a {
    display: inline-block;
    color: #fff;
    background: transparent;
    border: none;
    font: inherit;
    text-decoration: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

/* Optional: If you want the secondary button to look like the primary */
.cta-button.secondary {
    background: #fff;
    color: #ff8000;
    border: 2px solid #ff8000;
    transition: background 0.2s, color 0.2s;
}
.cta-button.secondary:hover {
    background: #ff8000;
    color: #fff;
}
.cta-button.secondary a {
    color: inherit;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #4a5568;
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    margin-top: 5px;
    font-size: 1.2rem;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* Services Section */
.services {
    padding: 6rem 5%;
    background: var(--light-gray);
    text-align: center;
}

.services h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--dark-gray);
    position: relative;
    display: inline-block;
}

.services h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    transition: transform 0.4s ease-out;
}

.service-card:hover i {
    transform: rotateY(180deg);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    color: var(--dark-gray);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--dark-gray);
    margin: 0;
}

/* Destinations Section */
.destinations {
    padding: 5rem 5%;
    background: var(--light-gray);
}

.destinations h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.destination-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: scale(1.05);
}

.destination-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.destination-card h3 {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    margin: 0;
}

/* About Section */
.about {
    padding: 8rem 5%;
    background: var(--white);
    text-align: center;
    overflow: hidden;
}

.about h2 {
    font-size: 3.5rem;
    margin-bottom: 4.5rem;
    color: var(--dark-gray);
    position: relative;
    display: inline-block;
}

.about h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: var(--primary-color);
    margin: 1.2rem auto 0;
    border-radius: 3px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.6s ease-out;
}

.about h2[data-aos].aos-animate::after {
    transform: scaleX(1);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    text-align: left;
}

.feature {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1.8rem;
    transition: background 0.3s ease, transform 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.feature:hover {
    background: #eee;
    transform: translateY(-8px);
}

.feature i {
    color: var(--primary-color);
    font-size: 2rem;
}

.feature p {
    color: var(--dark-gray);
    font-size: 1.05rem;
    margin: 0;
}

/* Stats Section */
.stats-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
}

.stats-section h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1a2235;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1rem;
    color: var(--light-gray);
    margin: 0;
}

/* Process Section */
.process-section {
    padding: 6rem 5%;
    background: var(--white);
    text-align: center;
}

.process-section h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--dark-gray);
    position: relative;
    display: inline-block;
}

.process-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.step-item {
    background: #1a2235;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.step-number {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
}

.step-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--white);
}

.step-item p {
    font-size: 0.95rem;
    color: var(--white);
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    text-align: center;
}

.contact h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--dark-gray);
    position: relative;
    display: inline-block;
}

.contact h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.info-item {
    background: #151a28;
    padding: 2.5rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.info-item i {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var( --white);
    font-size: 1.1rem;
    margin: 0;
}

/* Sticky Demo Button */
.sticky-demo-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

.sticky-demo-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-gray);
}

#demoForm {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

#demoForm input,
#demoForm select {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.submit-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: var(--secondary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FAQ Section */
.faq {
    padding: 5rem 5%;
    background: var(--white);
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: var(--light-gray);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #eee;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 1000px;
}

.faq-answer p {
    margin: 0;
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Footer Styles */
.footer {
    background: #1a2235;
    color: #f1f1f1;
    padding: 50px 0 0 0;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 0 30px;
    gap: 40px;
}

.footer-section {
    flex: 1 1 220px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #FF8533;
    margin-bottom: 18px;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #f1f1f1;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: #FF8533;
}

.about p {
    font-size: 0.97rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

.social-links a {
    color: #f1f1f1;
    margin-right: 12px;
    font-size: 1.3rem;
    transition: color 0.2s;
}

.social-links a:hover {
    color: #FF8533;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.newsletter-form input[type="email"] {
    padding: 8px 12px;
    border: none;
    border-radius: 3px 0 0 3px;
    outline: none;
    font-size: 1rem;
    width: 140px;
}

.newsletter-form button {
    padding: 8px 16px;
    border: none;
    background: #FF8533;
    color: #1a2235;
    border-radius: 0 3px 3px 0;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.newsletter-form button:hover {
    background: #FF8533;
}

.footer-bottom {
    background: #151a28;
    text-align: center;
    padding: 18px 0;
    margin-top: 30px;
    font-size: 0.98rem;
    color: #b0b8c9;
    letter-spacing: 0.5px;
}

/* Responsive Design for footer */
@media (max-width: 992px) {
    .footer {
        flex-direction: column;
    }

    .about-container {
        width: 100%;
        padding: 2rem 5%;
        align-items: center;
    }

    .footer-content {
        padding: 2rem 5%;
    }

    .about-container .about,
    .footer-section {
         text-align: center;
    }

     .about-container .social-links,
     .social-links,
     .newsletter-form {
         justify-content: center;
     }
}

@media (max-width: 768px) {
    .services h2,
    .about h2,
    .stats-section h2,
    .process-section h2 {
        font-size: 2.5rem;
    }

    .services-grid,
    .about-content .features,
    .stats-grid,
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card,
    .feature,
    .stat-item,
    .step-item {
        padding: 2rem 1.5rem;
    }

    .step-number {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }
}

/* Fix About section in footer */
.footer-section.about-container,
.footer-section.about-container .about {
    background: transparent !important;
    color: inherit;
    box-shadow: none;
    padding: 0;
}

.footer-section.about-container .about h3 {
    color: #FF8533;
}

.footer-section.about-container .about p,
.footer-section.about-container .social-links a {
    color: #f1f1f1;
    opacity: 1;
}

.footer-section.about-container .social-links a {
    filter: none;
}





    .destinations-scroller-container {
        display: flex;
        align-items: center;
        position: relative;
        margin-top: 30px;
    }
    .destinations-scroller {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        gap: 24px;
        padding: 10px 0;
        scrollbar-width: none; /* Firefox */
    }
    .destinations-scroller::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }
    .destination-card {
        min-width: 280px;
        max-width: 320px;
        flex: 0 0 30%;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.07);
        text-align: center;
        padding: 24px 12px;
    }
    .scroll-btn {
        background: #fff;
        border: none;
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0,0,0,0.10);
        width: 40px;
        height: 40px;
        font-size: 20px;
        cursor: pointer;
        z-index: 2;
        transition: background 0.2s;
    }
    .scroll-btn:hover {
        background: #f0f0f0;
    }
    .scroll-btn.left {
        margin-right: 10px;
    }
    .scroll-btn.right {
        margin-left: 10px;
    }
    @media (max-width: 900px) {
        .destination-card {
            min-width: 220px;
            flex: 0 0 60%;
        }
    }
    @media (max-width: 600px) {
        .destination-card {
            min-width: 80vw;
            flex: 0 0 80vw;
        }
    }


    /* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover {
    color: #333;
}

/* Success modal specific styles */
#successModal .modal-content {
    text-align: center;
    padding: 30px;
}

#successModal h2 {
    color: #4CAF50;
    margin-bottom: 20px;
}