/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

.nav-logo i {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #667eea;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #667eea;
    border-radius: 1px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.language-selector {
    position: relative;
}

.language-dropdown {
    padding: 8px 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
}

.language-dropdown:hover {
    border-color: #667eea;
}

.language-dropdown:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.language-dropdown option {
    padding: 8px;
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.1s both;
}

.hero-logo-image {
    height: 120px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #667eea;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-cta {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-cta-text {
    font-size: 1rem;
    color: #4a5568;
    margin: 0;
}

.hero-cta-link {
    color: #667eea;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.hero-cta-link:hover {
    color: #5a67d8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    animation: fadeInUp 1s ease 0.8s both;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
}

.stat-label {
    font-size: 0.9rem;
    color: #718096;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease 0.5s both;
}

.hero-visual {
    position: relative;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.hero-visual i {
    font-size: 4rem;
    color: white;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    color: #667eea;
    font-size: 1.2rem;
}

.card-1 {
    top: -20px;
    left: -60px;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -80px;
    animation-delay: 1s;
}

.card-3 {
    bottom: -20px;
    left: -40px;
    animation-delay: 2s;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.service-card p {
    color: #718096;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.service-features i {
    color: #48bb78;
    font-size: 0.9rem;
}

/* Booking Section */
.booking {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.booking .section-header h2,
.booking .section-header p {
    color: white;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.booking-info h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.booking-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.booking-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.booking-benefits i {
    color: #48bb78;
    font-size: 1.2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.contact-method i {
    font-size: 1.5rem;
    color: #48bb78;
}

.contact-method h4 {
    color: white;
    margin-bottom: 0.25rem;
}

.contact-method p {
    color: #e2e8f0;
    margin: 0;
}

.booking-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.booking-form h3 {
    color: #2d3748;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    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: #667eea;
}

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

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #718096;
    margin-bottom: 2rem;
}

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

.about-feature {
    text-align: center;
    padding: 1.5rem;
    background: #f7fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.about-feature i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.about-feature h4 {
    color: #2d3748;
    margin-bottom: 0.5rem;
}

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

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-visual {
    position: relative;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(72, 187, 120, 0.3);
}

.about-visual i {
    font-size: 4rem;
    color: white;
}

.success-indicator {
    position: absolute;
    top: -30px;
    right: -30px;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

.success-indicator i {
    color: #f6ad55;
    font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f7fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: white;
    font-size: 1.2rem;
}

.author-info h4 {
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.rating {
    display: flex;
    gap: 0.25rem;
}

.rating i {
    color: #f6ad55;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-item h4 {
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #718096;
    margin: 0;
}

.contact-form {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.contact-form h3 {
    color: #2d3748;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #667eea;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #4a5568;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #667eea;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
    color: #a0aec0;
}

/* Page Hero (for visa-info.html) */
.page-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.hero-navigation {
    margin-bottom: 2rem;
    text-align: left;
}

.back-home-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-home-link:hover {
    color: #e2e8f0;
}

.back-home-link i {
    font-size: 0.9rem;
}

.page-hero-content h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-hero-content p {
    color: #e2e8f0;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero .hero-buttons {
    justify-content: center;
}

/* Visa Navigation */
.visa-nav {
    padding: 2rem 0;
    background: white;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 80px;
    z-index: 100;
}

.visa-nav-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.visa-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: #718096;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.visa-tab:hover {
    color: #667eea;
    background: #f7fafc;
}

.visa-tab.active {
    color: #667eea;
    background: #f7fafc;
    border-color: #667eea;
}

.visa-tab i {
    font-size: 1.5rem;
}

.visa-tab span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* Visa Sections */
.visa-section {
    display: none;
    padding: 60px 0;
    background: white;
}

.visa-section.active {
    display: block;
}

.visa-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
}

.visa-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.visa-icon i {
    font-size: 2rem;
    color: white;
}

.visa-title h2 {
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.visa-title p {
    color: #718096;
    font-size: 1.1rem;
    margin: 0;
}

.visa-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.info-card {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.info-card h3 {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-card p {
    color: #718096;
    margin: 0;
    font-weight: 500;
}

.visa-requirements {
    margin-bottom: 3rem;
}

.visa-requirements h3 {
    color: #2d3748;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.requirement-category {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.requirement-category h4 {
    color: #2d3748;
    margin-bottom: 1rem;
    text-align: center;
}

.requirement-category ul {
    list-style: none;
}

.requirement-category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
}

.requirement-category li:last-child {
    border-bottom: none;
}

.visa-process {
    margin-bottom: 3rem;
}

.visa-process h3 {
    color: #2d3748;
    margin-bottom: 1.5rem;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f7fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #718096;
    margin: 0;
}

.visa-tips {
    margin-bottom: 3rem;
}

.visa-tips h3 {
    color: #2d3748;
    margin-bottom: 1.5rem;
    text-align: center;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tip-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
}

.tip-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.1);
}

.tip-card i {
    font-size: 2rem;
    color: #f6ad55;
    margin-bottom: 1rem;
}

.tip-card h4 {
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.tip-card p {
    color: #718096;
    margin: 0;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #e2e8f0;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-right {
        gap: 1rem;
    }

    .logo-image {
        height: 32px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .language-dropdown {
        min-width: 120px;
        font-size: 0.8rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-logo-image {
        height: 80px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .booking-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .visa-nav-tabs {
        flex-direction: column;
        align-items: center;
    }

    .visa-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Utility Classes */
.hidden { display: none; }
.visible { display: block; }

/* Screen Reader Only - Accessibility */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* RTL Support for Arabic */
.rtl {
    direction: rtl;
    text-align: right;
}

.rtl .nav-container {
    flex-direction: row-reverse;
}

.rtl .nav-logo {
    flex-direction: row-reverse;
}

.rtl .hero-logo {
    text-align: center;
}

.rtl .nav-right {
    flex-direction: row-reverse;
}

.rtl .hero-container {
    direction: rtl;
}

.rtl .hero-content {
    text-align: right;
}

.rtl .hero-buttons {
    justify-content: flex-end;
}

.rtl .hero-stats {
    justify-content: flex-end;
}

.rtl .section-header {
    text-align: center;
}

.rtl .services-grid {
    direction: rtl;
}

.rtl .service-card {
    text-align: right;
}

.rtl .service-features li {
    justify-content: flex-end;
}

.rtl .booking-content {
    direction: rtl;
}

.rtl .booking-info {
    text-align: right;
}

.rtl .booking-benefits li {
    justify-content: flex-end;
}

.rtl .contact-methods {
    align-items: flex-end;
}

.rtl .contact-method {
    flex-direction: row-reverse;
}

.rtl .about-content {
    direction: rtl;
}

.rtl .about-text {
    text-align: right;
}

.rtl .about-features {
    direction: rtl;
}

.rtl .about-feature {
    text-align: center;
}

.rtl .testimonials-grid {
    direction: rtl;
}

.rtl .testimonial-card {
    text-align: right;
}

.rtl .testimonial-author {
    flex-direction: row-reverse;
}

.rtl .visa-nav-tabs {
    direction: rtl;
}

.rtl .visa-header {
    flex-direction: row-reverse;
}

.rtl .visa-title {
    text-align: right;
}

.rtl .visa-info-grid {
    direction: rtl;
}

.rtl .info-card {
    text-align: center;
}

.rtl .requirements-grid {
    direction: rtl;
}

.rtl .requirement-category {
    text-align: right;
}

.rtl .process-steps {
    direction: rtl;
}

.rtl .step {
    flex-direction: row-reverse;
}

.rtl .tips-grid {
    direction: rtl;
}

.rtl .tip-card {
    text-align: center;
}

.rtl .cta-content {
    text-align: center;
}

.rtl .cta-buttons {
    justify-content: center;
}

.rtl .footer-content {
    direction: rtl;
}

.rtl .footer-section {
    text-align: right;
}

.rtl .footer-bottom {
    text-align: center;
}

/* RTL Form Adjustments */
.rtl .form-group input,
.rtl .form-group select,
.rtl .form-group textarea {
    text-align: right;
}

.rtl .language-dropdown {
    text-align: left;
}

/* RTL Button Adjustments */
.rtl .btn {
    flex-direction: row-reverse;
}

/* RTL Icon Adjustments */
.rtl .service-icon,
.rtl .about-visual,
.rtl .hero-visual {
    margin-left: 0;
    margin-right: 0;
}

/* RTL Floating Cards */
.rtl .floating-card.card-1 {
    left: auto;
    right: -60px;
}

.rtl .floating-card.card-2 {
    right: auto;
    left: -80px;
}

.rtl .floating-card.card-3 {
    left: auto;
    right: -40px;
}

/* RTL Success Indicator */
.rtl .success-indicator {
    right: auto;
    left: -30px;
}

/* RTL Notification */
.rtl .notification {
    right: auto;
    left: 20px;
}

/* RTL Mobile Adjustments */
@media (max-width: 768px) {
    .rtl .nav-menu {
        left: auto;
        right: -100%;
    }
    
    .rtl .nav-menu.active {
        left: auto;
        right: 0;
    }
    
    .rtl .hero-container {
        direction: rtl;
    }
    
    .rtl .booking-content {
        direction: rtl;
    }
    
    .rtl .about-content {
        direction: rtl;
    }
    
    .rtl .visa-nav-tabs {
        direction: rtl;
    }
    
    .rtl .visa-header {
        direction: rtl;
    }
}

/* Robust mobile overrides to prevent clipping and ensure full scroll */
@media (max-width: 768px) {
    /* Remove viewport-locked heights */
    .hero,
    .page-hero,
    .cta-section,
    .about,
    .services,
    .booking,
    .testimonials {
        min-height: auto !important;
        height: auto !important;
    }

    /* Disable sticky elements that can trap scroll after tabs */
    .visa-nav {
        position: static !important;
        top: auto !important;
    }

    /* Allow all containers and grids to show full content */
    .container,
    .visa-section,
    .visa-content,
    .visa-info-grid,
    .requirements-grid,
    .about-content,
    .services-grid,
    .booking-content {
        overflow: visible !important;
        height: auto !important;
        max-height: none !important;
    }

    /* Ensure cards expand with content */
    .service-card,
    .testimonial-card,
    .info-card,
    .tip-card,
    .about-feature {
        height: auto !important;
        overflow: visible !important;
    }

    /* Compensate for fixed navbar; align anchor scroll */
    body { padding-top: 64px; }
    section[id] { scroll-margin-top: 72px; }
}
