* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'GE SS TV';
    src: url('fonts/GE-SS-TV-Light_10.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GE SS TV';
    src: url('fonts/GE_SS_TEXT_LIGHT.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bentley';
    src: url('fonts/Bentley.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #2B180E;
    --secondary-color: #5B2D1C;
    --accent-color: #83502E;
    --dark-brown: #1A0F08;
    --light-brown: #83502E;
    --light-beige: #F8F4F0;
    --cream: #FFFFFF;
    --text-dark: #2B180E;
    --text-light: #5B2D1C;
    --white: #FFFFFF;
    --gold: #D4AF37;
    --soft-gold: #F4E4BC;
    --luxury-gradient: linear-gradient(135deg, #FFFFFF 0%, #F8F4F0 100%);
    --hero-gradient: linear-gradient(135deg, #3A2216 0%, #6A3A24 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'GE SS TV', 'Bentley', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(43, 24, 14, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('Pattern-03.svg');
    background-size: auto 100%;
    background-repeat: repeat-x;
    opacity: 0.3;
    pointer-events: none;
    filter: brightness(1.5) contrast(1.4);
    z-index: -1;
    background-position: left center;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3)) brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.logo-icons {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-icons .icon {
    font-size: 10px;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
    background: var(--gold);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

.hero {
    position: relative;
    min-height: 100vh;
    background: var(--hero-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    padding: 140px 0 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.12);
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease;
    max-width: 900px;
    margin: 0 auto;
}

.hero-logo-section {
    margin-bottom: 40px;
}

.hero-logo {
    height: 140px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-logo:hover {
    transform: scale(1.05);
}

.hero-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--dark-brown);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 45px 0;
    flex-wrap: wrap;
    padding: 20px 0;
}

.hero-stats .stat-item {
    text-align: center;
    color: var(--white);
}

.hero-stats .stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    margin-bottom: 5px;
}

.hero-stats .stat-label {
    display: block;
    font-size: 14px;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-title {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    line-height: 1.7;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-large {
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 700;
}

.btn-icon {
    font-size: 20px;
}

.btn-primary {
    background: var(--gold);
    color: var(--dark-brown);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    font-weight: 600;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: #F4D03F;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-full {
    width: 100%;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.title-underline {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 25px;
    border-radius: 2px;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.about {
    padding: 80px 0;
    background: var(--light-beige);
    position: relative;
}


.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.about-image {
    position: relative;
}

.about-logo-container {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-beige) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(91, 45, 28, 0.2);
    border: 3px solid var(--gold);
}

.about-logo {
    max-width: 280px;
    max-height: 280px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.about-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 12px 25px rgba(0, 0, 0, 0.4));
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: var(--luxury-gradient);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--luxury-gradient);
    opacity: 0.05;
    pointer-events: none;
}

.countries-offers {
    padding: 80px 0;
    background: var(--light-beige);
    position: relative;
}


.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.country-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(91, 45, 28, 0.1);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.country-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--luxury-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.country-card:hover::before {
    opacity: 0.05;
}

.country-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(91, 45, 28, 0.2);
    border-color: var(--gold);
}

.country-card.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, #FFF9E6 0%, var(--white) 100%);
}

.country-card.premium {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #F5E6D3 0%, var(--white) 100%);
}

.country-flag {
    font-size: 60px;
    margin-bottom: 15px;
    display: block;
}

.worker-image {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.worker-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--gold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.worker-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.country-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.price {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.price .currency {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

.price .amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--gold);
    margin-right: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.features {
    list-style: none;
    margin-bottom: 30px;
    text-align: right;
    position: relative;
    z-index: 2;
}

.features li {
    padding: 8px 0;
    color: var(--text-light);
    font-size: 15px;
    border-bottom: 1px solid rgba(91, 45, 28, 0.1);
}

.features li:last-child {
    border-bottom: none;
}

.services {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(43, 24, 14, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-card.luxury {
    background: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.service-card.luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--luxury-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-card.luxury:hover::before {
    opacity: 0.03;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(91, 45, 28, 0.15);
    border-color: var(--accent-color);
}

.service-card.luxury:hover {
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.3);
}

.service-icon {
    font-size: 60px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.service-card h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.service-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.service-features {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.feature-tag {
    background: var(--gold);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-section {
    padding: 80px 0;
    background: var(--hero-gradient);
    color: var(--white);
    position: relative;
    overflow: hidden;
}


.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-text p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-shrink: 0;
}

.stats {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: var(--white);
    font-weight: 500;
}

.contact {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}


.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: var(--light-beige);
    padding: 25px;
    border-radius: 12px;
    border-right: 3px solid var(--accent-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-card:hover {
    transform: translateX(-5px);
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.1);
}

.info-icon {
    font-size: 30px;
    margin-bottom: 10px;
}

.info-card h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.info-card p {
    font-size: 15px;
    color: var(--text-light);
}

.contact-form {
    background: var(--cream);
    padding: 40px;
    border-radius: 15px;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Tajawal', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group label {
    position: absolute;
    top: 15px;
    right: 15px;
    color: var(--text-light);
    transition: all 0.3s ease;
    pointer-events: none;
    background: var(--white);
    padding: 0 5px;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -10px;
    font-size: 14px;
    color: var(--accent-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('Pattern-03.svg');
    background-size: auto 100%;
    background-repeat: repeat-x;
    opacity: 0.3;
    pointer-events: none;
    filter: brightness(1.5) contrast(1.4);
    z-index: 0;
    background-position: left center;
}


.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-section h3,
.footer-section h4 {
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--gold);
    padding-right: 5px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 110px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes patternMove {
    0% { transform: translateX(0) translateY(0) rotate(0deg); }
    25% { transform: translateX(25px) translateY(25px) rotate(90deg); }
    50% { transform: translateX(50px) translateY(0) rotate(180deg); }
    75% { transform: translateX(25px) translateY(-25px) rotate(270deg); }
    100% { transform: translateX(0) translateY(0) rotate(360deg); }
}

.section-divider {
    width: 100%;
    height: 80px;
    background-image: url('Pattern.png');
    background-size: auto 100%;
    background-repeat: repeat-x;
    background-position: center center;
    opacity: 0.4;
    filter: brightness(1.2) contrast(1.3);
    position: relative;
    overflow: hidden;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
    40% {
        opacity: 1;
    }
    80% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    100% {
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: rgba(43, 24, 14, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 40px;
        gap: 20px;
        transition: right 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--white);
        font-size: 18px;
        padding: 12px 0;
        width: 100%;
        display: block;
    }

    .nav-links a::after {
        bottom: 0;
    }

    .logo-img {
        height: 70px;
    }
    
    .hero-logo {
        height: 100px;
    }
    
    .footer-logo-img {
        height: 80px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .hero-content {
        padding: 0 10px;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stats .stat-number {
        font-size: 28px;
    }

    .btn-large {
        padding: 15px 30px;
        font-size: 16px;
    }

    .countries-grid {
        grid-template-columns: 1fr;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .cta-text h2 {
        font-size: 32px;
    }

    .cta-text p {
        font-size: 18px;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .section-description {
        font-size: 16px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}
