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

:root {
    --primary-navy: #0A192F;
    --secondary-navy: #112240;
    --accent-gold: #D4AF37;
    --light-gold: #F4E4BC;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
    --text-color: #2c3e50;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.15);
    --gradient-navy: linear-gradient(135deg, #0A192F 0%, #1a3a5c 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    }
}

/* Loading Spinner */
.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-spinner.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.spinner-logo {
    height: 120px;
    width: auto;
    animation: pulse-logo 1.5s ease-in-out infinite;
}

@keyframes pulse-logo {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Fixed Left Buttons */
.fixed-buttons {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fixed-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    box-shadow: var(--shadow-xl);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 3px solid var(--white);
    animation: pulse 2s ease-in-out infinite;
}

.fixed-btn span {
    position: absolute;
    right: 70px;
    background: var(--dark-gray);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.fixed-btn:hover span {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

.call-btn {
    background: var(--primary-navy);
}

.call-btn:hover {
    background: var(--primary-navy);
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 20px 40px rgba(10, 25, 47, 0.4);
}

.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4);
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav {
    display: flex;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-navy);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-navy);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: var(--gradient-navy);
    color: var(--white);
    padding: 180px 0 120px;
    margin-top: 90px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.4;
    transform: scale(1.05);
    animation: slowZoom 25s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    from {
        transform: scale(1.05);
    }
    to {
        transform: scale(1.1);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.3) 0%, rgba(17, 34, 64, 0.25) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    z-index: 1;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero::after {
    display: none;
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    overflow: hidden;
}

.hero-column {
    flex: 1;
    height: 100%;
    position: relative;
    transform: skewX(-15deg);
    animation: columnMove 6s ease-in-out infinite;
}

.hero-column-1 {
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.3) 0%, rgba(17, 34, 64, 0.2) 100%);
    animation-delay: 0s;
    opacity: 0.3;
    animation-name: columnMove1;
}

.hero-column-2 {
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.5) 0%, rgba(17, 34, 64, 0.4) 100%);
    animation-delay: 0.3s;
    opacity: 0.5;
    animation-name: columnMove2;
}

.hero-column-3 {
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.7) 0%, rgba(17, 34, 64, 0.6) 100%);
    animation-delay: 0.6s;
    opacity: 0.7;
    animation-name: columnMove3;
}

@keyframes columnMove1 {
    0%, 100% {
        transform: skewX(-15deg) translateX(-100%) translateY(0);
    }
    50% {
        transform: skewX(-15deg) translateX(100%) translateY(0);
    }
}

@keyframes columnMove2 {
    0%, 100% {
        transform: skewX(-15deg) translateX(100%) translateY(0);
    }
    50% {
        transform: skewX(-15deg) translateX(-100%) translateY(0);
    }
}

@keyframes columnMove3 {
    0%, 100% {
        transform: skewX(-15deg) translateX(-50%) translateY(0);
    }
    50% {
        transform: skewX(-15deg) translateX(50%) translateY(0);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -1px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
    font-size: 26px;
    margin-bottom: 50px;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--primary-navy);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-navy);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover {
    background: var(--light-gray);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.btn-large {
    padding: 20px 45px;
    font-size: 18px;
}

.btn-large i {
    font-size: 24px;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 20px;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--white);
    opacity: 0.9;
    font-weight: 500;
}

/* About Section */
.about {
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.about .section-title {
    color: var(--primary-navy);
}

.about .section-subtitle {
    color: var(--dark-gray);
    opacity: 0.8;
}

.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.about-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.05;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
}

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

.feature {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--accent-gold);
    font-size: 32px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(10, 25, 47, 0.3);
}

.feature:hover .feature-icon {
    transform: rotateY(180deg);
    background: var(--gradient-gold);
    color: var(--primary-navy);
}

.feature h3 {
    font-size: 22px;
    color: var(--primary-navy);
    margin-bottom: 15px;
    font-weight: 700;
}

.feature p {
    color: var(--dark-gray);
    font-size: 15px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 76px;
}

/* Services Section */
.services {
    background: var(--gradient-navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.services-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.services-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--primary-navy);
    font-size: 36px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
}

.service-card h3 {
    font-size: 24px;
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-weight: 700;
}

.service-card p {
    color: var(--white);
    font-size: 16px;
    line-height: 1.7;
}

/* Why Choose Us Section */
.why-choose-us {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.why-choose-us .section-title {
    color: var(--primary-navy);
}

.why-choose-us .section-subtitle {
    color: var(--dark-gray);
    opacity: 0.8;
}

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

.why-choose-item {
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.why-choose-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
}

.why-choose-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--accent-gold);
    font-size: 28px;
    font-weight: 800;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(10, 25, 47, 0.3);
}

.why-choose-item:hover .why-choose-number {
    transform: scale(1.1);
    background: var(--gradient-gold);
    color: var(--primary-navy);
}

.why-choose-item h3 {
    font-size: 22px;
    color: var(--primary-navy);
    margin-bottom: 15px;
    font-weight: 700;
}

.why-choose-item p {
    color: var(--dark-gray);
    font-size: 15px;
    line-height: 1.7;
}

/* Countries Section */
.countries {
    background: var(--gradient-navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.countries-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.countries-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 1;
}

.country-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.country-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
}

.country-flag {
    margin-bottom: 20px;
    transition: transform 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.country-flag img {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.country-card:hover .country-flag {
    transform: scale(1.1);
}

.country-card:hover .country-flag img {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.country-card h3 {
    font-size: 22px;
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-weight: 700;
}

.country-card p {
    color: var(--white);
    font-size: 15px;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.contact .section-title {
    color: var(--primary-navy);
}

.contact .section-subtitle {
    color: var(--dark-gray);
    opacity: 0.8;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    flex-shrink: 0;
    font-size: 28px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(10, 25, 47, 0.3);
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(-10deg);
    background: var(--gradient-gold);
    color: var(--primary-navy);
}

.contact-details h3 {
    font-size: 20px;
    color: var(--primary-navy);
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-details p {
    color: var(--dark-gray);
    font-size: 17px;
    line-height: 1.7;
}

.contact-details a {
    color: var(--primary-navy);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.contact-details a:hover {
    color: var(--accent-gold);
}

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

.contact-extra-container {
    margin-top: 50px;
    width: 100%;
}

.contact-extra {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.contact-extra-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-extra-item:hover {
    background: #e9ecef;
    transform: translateX(-5px);
}

.contact-extra-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-extra-item h4 {
    font-size: 18px;
    color: var(--primary-navy);
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-extra-item p {
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.5;
}

/* Footer */
.footer {
    background: var(--gradient-navy);
    color: var(--white);
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

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

.footer-logo img {
    height: 90px;
    width: auto;
    transition: transform 0.3s ease;
    padding: 15px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-text p {
    font-size: 17px;
    line-height: 1.8;
    opacity: 0.9;
}

.footer-contact p {
    font-size: 17px;
    margin-bottom: 12px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.footer-contact a {
    color: var(--white);
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
    font-size: 15px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-extra {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        padding: 20px;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }
    
    .nav.active {
        transform: translateY(0);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 15px;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fixed-buttons {
        left: 10px;
    }
    
    .fixed-btn {
        width: 50px;
        height: 50px;
    }
    
    .fixed-btn span {
        display: none;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        padding: 15px 30px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo img {
        height: 70px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .countries-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        display: flex;
        justify-content: center;
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.feature,
.service-card,
.country-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature.visible,
.service-card.visible,
.country-card.visible {
    opacity: 1;
    transform: translateY(0);
}
