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

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

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

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

/* Navigation right side */
.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 5px;
    align-items: center;
}

.lang-btn {
    background: none;
    border: 2px solid transparent;
    border-radius: 6px;
    padding: 6px 8px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-btn:hover {
    border-color: #8e44ad;
    background: rgba(142, 68, 173, 0.1);
}

.lang-btn.active {
    border-color: #8e44ad;
    background: #8e44ad;
    transform: scale(1.1);
}

/* RTL Support for Arabic */
[dir="rtl"] {
    text-align: right;
    font-family: 'Arial', 'Tahoma', 'Noto Sans Arabic', 'Amiri', sans-serif;
    overflow-x: hidden; /* Prevent horizontal scrolling in RTL */
}

[dir="rtl"] body {
    overflow-x: hidden; /* Prevent horizontal scrolling in RTL */
}

[dir="rtl"] .nav-menu {
    flex-direction: row-reverse;
}

[dir="rtl"] .hero-buttons {
    flex-direction: row-reverse;
}

[dir="rtl"] .step-header {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-logo {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-right {
    flex-direction: row-reverse;
}

[dir="rtl"] .unified-steps {
    direction: rtl;
}

[dir="rtl"] .about-content {
    direction: rtl;
}

[dir="rtl"] .process-header {
    text-align: center; /* Keep centered for Arabic titles */
}

[dir="rtl"] .process-header h2 {
    text-align: center;
    margin: 0 auto;
    width: 100%;
    display: block;
}

[dir="rtl"] .process-header p {
    text-align: center;
    margin: 0 auto;
    width: 100%;
    max-width: 800px;
}

/* Arabic Typography */
[lang="ar"] {
    font-family: 'Noto Sans Arabic', 'Amiri', 'Tahoma', 'Arial', sans-serif;
    line-height: 1.8;
}

[lang="ar"] h1, 
[lang="ar"] h2, 
[lang="ar"] h3, 
[lang="ar"] h4 {
    font-weight: 700;
    line-height: 1.4;
}

[lang="ar"] .nav-menu a {
    font-size: 16px;
}

[lang="ar"] .btn-primary,
[lang="ar"] .btn-secondary-outline {
    font-size: 16px;
    font-weight: 600;
}

/* Social Media Floating Buttons */
.social-float-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.social-float {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.social-float:hover {
    transform: scale(1.1);
    color: white;
}

.social-float svg {
    width: 32px;
    height: 32px;
}

/* WhatsApp specific styles */
.whatsapp-float {
    background: #25D366;
    color: white;
}

.whatsapp-float:hover {
    background: #128C7E;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* Instagram specific styles */
.instagram-float {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.instagram-float:hover {
    background: linear-gradient(45deg, #e6683c 0%, #dc2743 25%, #cc2366 50%, #bc1888 75%, #8a3ab9 100%);
    box-shadow: 0 6px 25px rgba(225, 48, 108, 0.6);
}

/* Animation for attention */
.social-float::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid;
    border-radius: 50%;
    animation: social-pulse 3s infinite;
    opacity: 0;
}

.whatsapp-float::before {
    border-color: #25D366;
}

.instagram-float::before {
    border-color: #e6683c;
}

@keyframes social-pulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* RTL Support for social buttons */
[dir="rtl"] .social-float-container {
    right: auto;
    left: 20px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .social-float-container {
        bottom: 15px;
        right: 15px;
        gap: 12px;
    }
    
    .social-float {
        width: 55px;
        height: 55px;
    }
    
    .social-float svg {
        width: 28px;
        height: 28px;
    }
    
    [dir="rtl"] .social-float-container {
        right: auto;
        left: 15px;
    }
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.nav-logo h2 {
    color: #8e44ad;
    font-weight: 700;
    font-size: 24px;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.nav-menu a:hover {
    color: #8e44ad;
}

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

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

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&h=1080&fit=crop') center/cover no-repeat;
    color: white;
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden; /* Prevent zoom from creating scrollbars */
    will-change: transform; /* Optimize for animations */
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-primary {
    background: #8e44ad;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(142, 68, 173, 0.3);
}

.btn-primary:hover {
    background: #7d3c98;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(142, 68, 173, 0.4);
}

.btn-secondary-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 13px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-secondary-outline:hover {
    background: white;
    color: #8e44ad;
    transform: translateY(-2px);
}

/* About German Gate Section */
.about-section {
    padding: 100px 0;
    background: white;
}

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

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.about-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
    line-height: 1.2;
}

.about-text > p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(142, 68, 173, 0.15);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #8e44ad;
    margin-bottom: 8px;
    font-variant-numeric: tabular-nums; /* Consistent number spacing */
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    color: #7d3c98;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Services Features Section */
.services-features {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-features h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #2c3e50;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    padding: 30px;
    gap: 25px;
}

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

.feature-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
}

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

.feature-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2c3e50;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

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

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

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

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

.service-image {
    height: 200px;
    overflow: hidden;
}

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

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-secondary {
    background: transparent;
    color: #333;
    border: 2px solid #333;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #333;
    color: white;
}

/* Process Section */
.process {
    padding: 80px 0;
    background: white;
}

.process-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.process-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.process-text h2 em {
    color: #8e44ad;
    font-style: italic;
}

.process-text > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.step-number {
    background: #8e44ad;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
    font-size: 16px;
}

.step-content {
    color: #333;
    line-height: 1.6;
    font-size: 15px;
}

.step-content strong {
    color: #8e44ad;
    display: block;
    margin-bottom: 5px;
}

.process-services {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.services-grid-process {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-card-process {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card-process:hover {
    background: white;
    border-color: #8e44ad;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(142, 68, 173, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #8e44ad;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-process h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.service-card-process p {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.process-image {
    position: relative;
    margin-top: 20px;
}

.process-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.visa-checklist {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.95);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    color: #333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Unified Process Steps */
.process-header {
    text-align: center;
    margin-bottom: 50px;
}

.process-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.process-header h2 em {
    color: #8e44ad;
    font-style: italic;
}

.process-header p {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.unified-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.unified-step {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 450px;
}

.unified-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #8e44ad, #9b59b6);
}

.unified-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(142, 68, 173, 0.2);
    border-color: #8e44ad;
}

.step-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

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

.unified-step:hover .step-image img {
    transform: scale(1.05);
}

.step-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.step-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.step-number {
    background: linear-gradient(45deg, #8e44ad, #9b59b6);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(142, 68, 173, 0.3);
}

.step-title {
    flex: 1;
}

.step-title h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.step-title p {
    font-size: 14px;
    color: #8e44ad;
    font-weight: 500;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #8e44ad;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.step-description {
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
}

.step-description p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

.process-cta {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-image {
    border-radius: 15px;
    width: 100%;
    height: 300px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.cta-content .visa-checklist {
    position: static;
    display: inline-block;
    background: #8e44ad;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: none;
}

.cta-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.cta-content p {
    color: #666;
    margin-bottom: 25px;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(45deg, #8e44ad, #9b59b6);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(142, 68, 173, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(142, 68, 173, 0.4);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.faq-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.preview-label {
    background: #e74c3c;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.faq-text p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.btn-contact {
    background: #8e44ad;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-contact:hover {
    background: #7d3c98;
}

.faq-questions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: #8e44ad;
    margin: 0;
}

.faq-toggle {
    font-size: 20px;
    font-weight: bold;
    color: #8e44ad;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f0f0f0;
    text-align: center;
}

.testimonials h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.testimonials-subtitle {
    color: #666;
    font-size: 16px;
    margin-bottom: 50px;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: left;
}

.university-logo {
    font-size: 24px;
    font-weight: 700;
    color: #8e44ad;
    margin-bottom: 20px;
    text-align: center;
}

.testimonial-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: #888;
    margin: 0;
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-form-section > p {
    color: #666;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8e44ad;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.btn-submit {
    background: #8e44ad;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #7d3c98;
}

.contact-map {
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-container {
    width: 100%;
    height: 400px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    max-width: 280px;
    backdrop-filter: blur(10px);
}

.map-info h4 {
    color: #8e44ad;
    margin-bottom: 10px;
    font-size: 18px;
}

.map-info p {
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.4;
}

.contact-details {
    border-top: 1px solid #eee;
    padding-top: 10px;
    margin-top: 10px;
}

.contact-details p {
    color: #666;
    font-size: 13px;
    margin-bottom: 5px;
}

.directions-btn {
    display: inline-block;
    background: #8e44ad;
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.directions-btn:hover {
    background: #7d3c98;
    transform: translateY(-1px);
}

.map-placeholder {
    padding: 40px;
}

.map-marker {
    font-size: 48px;
    margin-bottom: 20px;
}

.map-placeholder p {
    color: #666;
    line-height: 1.6;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo h3 {
    color: #8e44ad;
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-logo p {
    color: #bdc3c7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-column h4 {
    margin-bottom: 15px;
    color: #ecf0f1;
}

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

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #8e44ad;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .unified-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .unified-step {
        min-height: 400px;
    }
    
    .step-content {
        padding: 20px;
    }
    
    .step-image {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .logo-image {
        height: 35px;
        width: 35px;
    }
    
    .nav-logo h2 {
        font-size: 20px;
    }
    
    .language-switcher {
        gap: 3px;
    }
    
    .lang-btn {
        padding: 4px 6px;
        font-size: 14px;
    }
    
    .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: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary-outline {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text h2 {
        font-size: 32px;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .feature-image {
        width: 100px;
        height: 100px;
    }
    
    .process-content,
    .faq-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid-process {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .process-services {
        order: -1; /* Show services above steps on mobile */
    }
    
    .unified-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .unified-step {
        min-height: 380px;
    }
    
    .step-content {
        padding: 20px;
    }
    
    .step-image {
        height: 160px;
    }
    
    .step-header {
        gap: 15px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .process-cta {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
        text-align: center;
    }
    
    .cta-image {
        height: 200px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .about-text h2 {
        font-size: 28px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .services-features {
        padding: 60px 0;
    }
    
    .process-text h2,
    .faq-text h2,
    .contact-form-section h2,
    .testimonials h2 {
        font-size: 28px;
    }
    
    .services,
    .process,
    .faq,
    .testimonials,
    .contact {
        padding: 60px 0;
    }
    
    .unified-step {
        min-height: 350px;
    }
    
    .step-content {
        padding: 15px;
    }
    
    .step-image {
        height: 140px;
    }
    
    .step-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .process-header h2 {
        font-size: 24px;
    }
    
    /* RTL specific mobile adjustments */
    [dir="rtl"] .process-header h2 {
        text-align: center;
        padding: 0 15px;
        line-height: 1.4;
    }
    
    [dir="rtl"] .process-header {
        padding: 0 15px;
    }
    
    .process-cta {
        padding: 20px;
    }
    
    .cta-content h3 {
        font-size: 20px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
