/*
Theme Name: Xcursion Vibes
Theme URI: https://xcursionvibes.com
Author: Antigravity
Description: Premium International Tours & Visa Services Theme
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: xcursion-vibes
*/

:root {
    --primary: #1A237E;
    /* Deep Navy */
    --secondary: #FFC107;
    /* Amber Gold */
    --dark: #0A0E2B;
    --light: #F5F5F5;
    --white: #FFFFFF;
    --grey: #888888;
    --glass: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container: 1200px;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

/* Header & Nav */
/* Promo Banner */
.promo-banner {
    background: linear-gradient(90deg, #FFD700, #FFA000);
    color: var(--primary);
    padding: 10px 0;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-banner .close-banner {
    position: absolute;
    right: 20px;
    cursor: pointer;
    font-size: 18px;
    opacity: 0.7;
}

.promo-banner .close-banner:hover {
    opacity: 1;
}

.promo-banner strong {
    text-transform: uppercase;
    background: var(--primary);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 10px;
}

header {
    position: fixed;
    top: 40px;
    /* Offset for promo banner */
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

header.scrolled {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

header.scrolled .logo a {
    color: var(--primary);
}

header.scrolled .nav-links a {
    color: var(--dark);
}

header.scrolled .menu-toggle i {
    color: var(--primary);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
}

.nav-links a:hover {
    color: var(--secondary);
}

.btn-primary {
    background: var(--secondary);
    color: var(--primary) !important;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 193, 7, 0.4);
}

.btn-secondary {
    border: 2px solid var(--white);
    color: var(--white) !important;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary) !important;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: #0A0E2B url('assets/hero.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 14, 43, 0.7), rgba(10, 14, 43, 0.3));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero h1 {
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* Stats Bar */
.stats-bar {
    background: var(--primary);
    color: var(--white);
    padding: 40px 0;
}

.stats-bar .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

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

.stat-item i {
    font-size: 30px;
    color: var(--secondary);
}

.stat-item h3 {
    font-size: 28px;
}

.stat-item p {
    font-size: 14px;
    opacity: 0.8;
}

/* Destinations Section */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
}

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

.dest-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
}

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

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

.dest-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
}

.dest-content h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.dest-content span.price {
    display: block;
    margin-top: 10px;
    color: var(--secondary);
    font-weight: 700;
}

.btn-know-more {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
}

.btn-know-more:hover {
    background: var(--white);
    transform: translateX(5px);
}

/* Testimonials Section */
.testimonials {
    background: var(--white);
}

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

.testimonial-card {
    background: var(--light);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.quote-icon {
    font-size: 30px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 30px;
    font-size: 16px;
}

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

.user-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info h4 {
    font-size: 18px;
    color: var(--primary);
}

.user-info p {
    font-size: 14px;
    color: var(--grey);
    font-style: normal;
    margin-bottom: 0;
}

/* Visa Section */
.visa-section {
    background: var(--light);
}

.glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.visa-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.visa-text {
    flex: 1;
}

.visa-text h2 {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.visa-list {
    margin: 30px 0;
}

.visa-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.visa-list i {
    color: var(--secondary);
}

.visa-image {
    flex: 0.8;
}

.visa-image img {
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(26, 35, 126, 0.2));
}

/* Contact Section */
.contact-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: var(--primary);
    border-radius: 30px;
    overflow: hidden;
    color: var(--white);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.contact-info {
    padding: 60px;
    background: var(--dark);
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

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

.info-item i {
    color: var(--secondary);
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--glass);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
}

.social-links a:hover {
    background: var(--secondary);
    color: var(--primary);
}

.contact-form {
    padding: 60px;
    background: var(--white);
    color: var(--dark);
}

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

input,
select,
textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(26, 35, 126, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--dark);
    transform: translateY(-2px);
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.animate-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
    .container {
        padding: 0 30px;
    }

    .hero h1 {
        font-size: 50px;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
        filter: invert(1);
    }

    .visa-flex {
        flex-direction: column;
        text-align: center;
    }

    .contact-card {
        grid-template-columns: 1fr;
    }
}

footer {
    padding: 60px 0;
    text-align: center;
    background: var(--dark);
    color: var(--white);
    font-size: 14px;
}

.footer-contact {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    opacity: 0.8;
}

.footer-contact span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--secondary);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #FFF;
}

.whatsapp-float i {
    margin-top: 0;
}

/* Typebot Visibility Fix */
.typebot-bubble-button {
    z-index: 3000 !important;
}

/* About Page Specifics */
.page-hero {
    padding: 150px 0 100px;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
}

/* Destination Details Specifics */
.details-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    background-size: cover;
    background-position: center;
}
.details-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
}
.hero-text {
    position: relative;
    z-index: 10;
}
.hero-text h1 { font-size: 60px; margin-bottom: 20px; }
.hero-text p { font-size: 24px; opacity: 0.9; }

.details-content { padding: 80px 0; }
.detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}
.info-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}
.info-card h2 { color: var(--primary); margin-bottom: 20px; font-size: 28px; }
.info-card p { font-size: 18px; color: #444; margin-bottom: 20px; }

.attractions-list { list-style: none; }
.attractions-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}
.attractions-list i { color: var(--secondary); }

.sidebar-card {
    background: var(--primary);
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
    position: sticky;
    top: 100px;
}
.sidebar-card h3 { margin-bottom: 20px; border-bottom: 2px solid var(--secondary); display: inline-block; padding-bottom: 5px; }
.sidebar-item { margin-bottom: 25px; }
.sidebar-item h4 { color: var(--secondary); margin-bottom: 5px; }
