/* Prevent background scroll when mobile menu is open */
body.no-scroll {
    overflow: hidden;
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #D4A574;
    --secondary-color: #1F5B8F;
    --accent-color: #C41E3A;
    --dark-bg: #0F2340;
    --light-bg: #ffffff;
    --text-dark: #0F2340;
    --text-light: #5F6B7A;
    --border-color: #E8DCC8;
    --success-color: #D4A574;
    --gradient-primary: #1F5B8F;
    --shadow-sm: 0 1px 2px 0 rgba(15, 35, 64, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(15, 35, 64, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(15, 35, 64, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(15, 35, 64, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--light-bg);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text h2 {
    font-size: 22px;
    font-weight: 800;
    color: #D4A574;
    letter-spacing: 0.5px;
    line-height: 1;
}

.logo-text h2 span {
    color: #1F5B8F;
}

.logo-tagline {
    font-size: 9px;
    color: #5F6B7A;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #D4A574;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4A574;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    padding: 10px 24px;
    background: #D4A574;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    background: #B8904A;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Mobile-only utility (hidden on desktop) */
.mobile-only {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 91, 143, 0.92) 0%, rgba(212, 165, 116, 0.88) 100%);
    z-index: 1;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    margin-bottom: 24px;
    font-size: 14px;
    color: white;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-icon {
    font-size: 16px;
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    color: #FFD700;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    margin-bottom: 48px;
}

.stat h3 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
}

.primary-btn {
    padding: 16px 32px;
    background: #1F5B8F;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(31, 91, 143, 0.3);
}

.primary-btn:hover {
    transform: translateY(-2px);
    background: #154169;
    box-shadow: 0 8px 25px rgba(31, 91, 143, 0.4);
}

.secondary-btn {
    padding: 16px 32px;
    background: white;
    color: #D4A574;
    border: 2px solid #D4A574;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: #D4A574;
    color: white;
    transform: translateY(-2px);
}

.trust-badges {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.rating {
    color: #FFD700;
    font-weight: 700;
}

.rating-text, .badge-text {
    color: white;
    font-weight: 600;
}

/* Sections */
.destinations,
.services,
.why-choose,
.testimonials,
.process,
.contact {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Destination Cards */
.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.destination-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    cursor: pointer;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.destination-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}

.destination-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    background: #D4A574;
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

/* Flag Hover Animation */
.country-flag-hover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10;
    border: 4px solid white;
}

.country-flag-hover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.destination-card:hover .country-flag-hover {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.destination-content {
    padding: 24px;
}

.destination-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.visa-subtitle {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.4;
}

/* Visa Info Grid */
.visa-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.visa-info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    background: #F9FAFB;
    border-radius: 8px;
    border: 1px solid #E8DCC8;
}

.info-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 100%;
    height: 100%;
    stroke: #1F5B8F;
    fill: none;
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-label {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 600;
}

.destination-features {
    list-style: none;
    margin-bottom: 24px;
}

.destination-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-light);
}

.apply-btn {
    width: 100%;
    padding: 14px;
    background: #1F5B8F;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.apply-btn:hover {
    background: #154169;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 91, 143, 0.3);
}

/* More Destinations */
.more-destinations {
    padding: 48px 0;
    background: #F5F0E8;
}

.more-dest-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.country-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.country-tag {
    padding: 8px 16px;
    background: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.country-tag:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.view-all-section {
    text-align: center;
}

.view-all-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #1F5B8F;
    color: white;
    border: 2px solid #1F5B8F;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.view-all-btn:hover {
    background: #154169;
    border-color: #154169;
    transform: translateY(-2px);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: #1F5B8F;
    fill: none;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-card > p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-light);
    font-size: 14px;
    position: relative;
    padding-left: 24px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #D4A574;
    font-weight: 700;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: #1F5B8F;
    fill: none;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    background: #F5F0E8;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: #1F5B8F;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.testimonial-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.rating {
    font-size: 14px;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 12px;
}

.testimonial-date {
    font-size: 12px;
    color: var(--text-light);
}

.google-rating {
    text-align: center;
}

.google-stars {
    font-size: 32px;
    margin-bottom: 8px;
}

.google-text {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number svg {
    width: 48px;
    height: 48px;
    stroke: #1F5B8F;
    fill: none;
}

.step-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #1F5B8F;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.primary-btn.large,
.secondary-btn.large {
    padding: 18px 40px;
    font-size: 18px;
}

.secondary-btn.large {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: start;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(31, 91, 143, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: #1F5B8F;
    fill: none;
}

.contact-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 4px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    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);
}

.form-group textarea {
    resize: vertical;
}

.primary-btn.full-width {
    width: 100%;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
}

.footer-logo-icon svg {
    width: 100%;
    height: 100%;
}

.footer-logo {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    color: #D4A574;
    font-size: 22px;
    margin-bottom: 4px;
}

.footer-logo span {
    color: #1F5B8F;
}

.footer-tagline {
    font-size: 9px;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: #94a3b8;
    margin-bottom: 24px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link svg {
    width: 20px;
    height: 20px;
    stroke: white;
    fill: none;
}

.social-link:hover {
    background: #D4A574;
    transform: translateY(-4px);
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 8px;
}

.disclaimer {
    font-size: 12px !important;
    opacity: 0.7;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 60px;
    height: 60px;
    background: #C41E3A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #A01729;
}

.whatsapp-icon {
    font-size: 32px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }

    .section-title {
        font-size: 40px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container { padding: 0 16px; }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        gap: 0;
        background: #ffffff;
        padding: 12px 16px;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 8px 20px rgba(15, 35, 64, 0.08);
        z-index: 1001;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 6px 0;
    }

    .nav-links a {
        display: block;
        padding: 10px 4px;
        font-size: 15px;
    }

    /* Hide header-level Apply button on mobile */
    .nav-container > .header-apply {
        display: none;
    }

    /* Show mobile-only Apply button inside menu */
    .mobile-only {
        display: block;
        padding-top: 8px;
    }

    .mobile-only .cta-button {
        width: 100%;
        padding: 12px 16px;
        border-radius: 10px;
        font-size: 15px;
    }

    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .logo-text h2 {
        font-size: 18px;
    }
    
    .logo-tagline {
        font-size: 8px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-stats {
        gap: 16px;
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    }

    .stat h3 {
        font-size: 28px;
    }

    .hero { padding: 100px 0 64px; }
    .hero-content { gap: 14px; }
    .hero-actions { width: 100%; }
    .hero-actions button { width: 100%; }
    .trust-badges { flex-direction: column; align-items: flex-start; }

    .hero-actions {
        flex-direction: column;
    }

    .section-title {
        font-size: 32px;
    }

    .destination-grid,
    .services-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .visa-info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

.scroll-indicator svg {
    width: 32px;
    height: 32px;
    stroke: white;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid #1F5B8F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(31, 91, 143, 0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: rgba(212, 165, 116, 0.1);
    border-color: #D4A574;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.3);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    stroke: #1F5B8F;
    fill: none;
}

.back-to-top:hover svg {
    stroke: #D4A574;
}

/* Selection */
::selection {
    background: #D4A574;
    color: white;
}

/* Visa Chat Assistant */
.chat-launcher {
    position: fixed;
    bottom: 26px;
    right: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #D4A574, #B8904A);
    color: #0F2340;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    box-shadow: 0 12px 26px rgba(0,0,0,0.32);
    cursor: pointer;
    z-index: 1200;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chat-launcher:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 16px 34px rgba(0,0,0,0.36); }
.chat-launcher-icon { font-size: 22px; }
.chat-launcher-text { display: none; }

.chat-window {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 360px;
    max-width: calc(100vw - 40px);
    background: #ffffff;
    border: 1px solid rgba(31,91,143,0.18);
    border-radius: 18px;
    box-shadow: 0 20px 44px rgba(0,0,0,0.28);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1300;
}

.chat-window.open { display: flex; }

.is-hidden { display: none !important; }


.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 16px;
    background: linear-gradient(135deg, #1F5B8F, #0F2340);
    border-bottom: 1px solid rgba(212, 165, 116, 0.35);
    color: #fff;
}

.chat-title { margin: 0; font-weight: 800; color: #fff; font-size: 16px; }
.chat-subtitle { margin: 2px 0 0; color: rgba(255,255,255,0.8); font-size: 12px; }
.chat-close { background: transparent; color: #fff; border: none; font-size: 18px; cursor: pointer; }

.chat-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 380px;
    overflow-y: auto;
    background: #f7f9fc;
}

.lead-screen {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: linear-gradient(145deg, rgba(31,91,143,0.06), rgba(212,165,116,0.06));
    border: 1px solid rgba(31,91,143,0.08);
    border-radius: 14px;
    padding: 12px;
}

.lead-title { margin: 0; font-weight: 800; color: #0F2340; font-size: 15px; }
.lead-sub { margin: 0; color: #526179; font-size: 12px; }

.chat-message { padding: 10px 12px; border-radius: 12px; max-width: 90%; line-height: 1.5; font-size: 14px; }
.chat-message.bot { background: #e9f1fb; color: #0F2340; border: 1px solid rgba(31,91,143,0.25); }
.chat-message.user { margin-left: auto; background: #fff3e3; color: #0F2340; border: 1px solid rgba(212,165,116,0.35); }

.chat-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 12px;
    background: #ffffff;
    border-top: 1px solid rgba(31,91,143,0.15);
}

.chat-chip {
    background: #f3f7ff;
    color: #0F2340;
    border: 1px solid rgba(31,91,143,0.2);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.chat-chip:hover { background: #e3edff; }

.chat-input {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    border-top: 1px solid rgba(31,91,143,0.15);
    background: #fff;
}

.chat-input input {
    flex: 1;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(31,91,143,0.2);
    background: #f7f9fc;
    color: #0F2340;
}

.chat-input input::placeholder { color: #5f6b7a; }

.chat-send {
    background: linear-gradient(135deg, #D4A574, #B8904A);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 14px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 18px rgba(212,165,116,0.35);
}

.chat-send:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(212,165,116,0.5); }

/* Quick actions */
.quick-actions {
    display: grid;
    gap: 10px;
    margin-top: 8px;
}

.quick-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e9f5ff, #f8fbff);
    border: 1px solid rgba(31,91,143,0.15);
    text-align: left;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-card:nth-child(2) { background: linear-gradient(135deg, #e9edff, #f6f7ff); }
.quick-card:nth-child(3) { background: linear-gradient(135deg, #fff4e6, #fffaf3); }

.quick-card:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,0,0,0.08); }

.qa-icon { font-size: 18px; background: #fff; border-radius: 10px; padding: 8px; box-shadow: 0 6px 14px rgba(0,0,0,0.06); }
.qa-title { margin: 0; font-weight: 800; color: #0F2340; }
.qa-sub { margin: 2px 0 0; color: #526179; font-size: 13px; }

/* Lead capture inside chat */
.chat-lead {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    align-items: end;
    margin-top: 6px;
}

.lead-field { display: flex; flex-direction: column; gap: 4px; }
.lead-field label { font-size: 12px; color: #526179; font-weight: 700; }
.lead-field input, .lead-field select {
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(31,91,143,0.2);
    background: #f7f9fc;
    color: #0F2340;
    font-size: 13px;
}

.lead-send { height: 42px; padding: 0 14px; grid-column: span 2; }

@media (max-width: 600px) {
    .chat-lead { grid-template-columns: 1fr; }
    .lead-send { width: 100%; grid-column: span 1; }
}

@media (max-width: 600px) {
    .chat-window { right: 12px; left: 12px; width: auto; bottom: 90px; }
    .chat-launcher { right: 16px; bottom: 16px; }
}
