/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0f5c72;
    --primary-dark: #083b4c;
    --primary-light: #1e88a8;
    --secondary-color: #25D366;
    --text-dark: #222;
    --text-light: #666;
    --bg-light: #f4f8fb;
    --bg-white: #ffffff;
    --shadow: 0 5px 15px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 25px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}
.top-contact {
    background-color: #f8f9fa;
    padding: 8px 20px;
    border-bottom: 1px solid #eee;
}

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

.company-name {
    font-family: 'Cairo', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: #1e3a8a;
}

.phones {
    display: flex;
    gap: 15px;
}

.phone-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

.phone-link:hover {
    color: #1e3a8a;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Tahoma', 'Arial', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.company-name {
    font-family: 'Cairo', sans-serif;
    font-weight: 800;
    font-size: 40px;
    color: #0f172a;
    letter-spacing: 1px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--primary-dark);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

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

.top-contact {
    display: flex;
    gap: 15px;
    align-items: center;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    transition: var(--transition);
}

.phone-link:hover {
    background: rgba(255,255,255,0.1);
}

.phone-icon {
    font-size: 16px;
}

/* ===== HEADER ===== */
.main-header {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.logo {
    height: 60px;
    transition: var(--transition);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

/* Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.main-nav a {
    color: white;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 5px;
    transition: var(--transition);
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: white;
    transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    background: rgba(255,255,255,0.1);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 80%;
}

/* Buttons */
.lang-btn {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 8px 14px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    transition: var(--transition);
}

.lang-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.primary-btn {
    display: inline-block;
    padding: 12px 25px;
    background: var(--secondary-color);
    color: white;
    border-radius: 6px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(37,211,102,0.3);
}

.primary-btn:hover {
    background: #1fb356;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37,211,102,0.4);
}

.small-btn {
    padding: 8px 18px;
    font-size: 14px;
}

.large-btn {
    padding: 15px 35px;
    font-size: 16px;
}

.secondary-btn {
    display: inline-block;
    padding: 12px 25px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: bold;
    transition: var(--transition);
}

.secondary-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.whatsapp-btn {
    background: var(--secondary-color);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 85vh;
    background: url("assets/hero.jpg") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15,92,114,0.85) 0%, rgba(30,136,168,0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

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

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 38px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 20px;
}

.section.light {
    background: #e9f3f8;
}

.section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
    text-align: center;
}

.intro-text {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== GRID LAYOUTS ===== */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* ===== CARDS ===== */
.card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.card img {
    width: 80px;
    height: auto;
    margin-bottom: 15px;
    transition: var(--transition);
}

.card:hover img {
    transform: scale(1.1);
}

.card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 22px;
}

.card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Feature Cards */
.feature-card {
    text-align: center;
}

.feature-icon {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Country Cards */
.country-card img {
    width: 120px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
}

/* Value Cards */
.value-card {
    padding: 35px 25px;
}

.value-icon {
    font-size: 52px;
    margin-bottom: 15px;
}

/* ===== COUNTRY DETAILS ===== */
.countries-detailed {
    max-width: 1000px;
    margin: 50px auto;
}

.country-detail {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.country-detail:hover {
    box-shadow: var(--shadow-hover);
}

.country-detail.reverse {
    grid-template-columns: 2fr 1fr;
}

.country-detail.reverse .country-image {
    order: 2;
}

.country-image img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.country-info h2 {
    text-align: right;
    font-size: 32px;
    margin-bottom: 20px;
}

.country-info p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.country-features {
    list-style: none;
    padding: 0;
}

.country-features li {
    padding: 10px 0;
    color: var(--text-dark);
    border-bottom: 1px solid #eee;
}

.country-features li:last-child {
    border-bottom: none;
}

/* ===== PROCESS STEPS ===== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* ===== ABOUT CONTENT ===== */
.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.about-content,
.mission-content {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.about-content h2,
.mission-content h2 {
    text-align: right;
    font-size: 32px;
    margin-bottom: 25px;
}

.about-content p,
.mission-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.features-list {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: var(--transition);
}

.feature-item:hover {
    background: #f0f0f0;
    transform: translateX(-5px);
}

.feature-check {
    font-size: 24px;
    color: var(--secondary-color);
    font-weight: bold;
}

.feature-item h3 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 20px;
}

.feature-item p {
    color: var(--text-light);
    font-size: 16px;
    margin: 0;
}

/* ===== MISSION PILLARS ===== */
.mission-statement {
    margin-bottom: 50px;
}

.lead {
    font-size: 20px !important;
    color: var(--text-dark) !important;
    font-weight: 500;
}

.mission-pillars h3 {
    text-align: right;
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.pillar {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 8px;
    border-right: 4px solid var(--primary-color);
    transition: var(--transition);
}

.pillar:hover {
    background: #f0f0f0;
    transform: translateX(-8px);
}

.pillar-number {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-light);
    min-width: 60px;
}

.pillar-content h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 20px;
}

.pillar-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 16px;
}

.vision-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 30px auto 0;
}

.vision-content p {
    font-size: 20px;
    line-height: 1.9;
    color: var(--text-dark);
    text-align: center;
}

/* ===== CONTACT ===== */
.contact-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form-container {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-form-container h2 {
    text-align: right;
    margin-bottom: 15px;
}

.contact-form-container > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Form Styles */
.form-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-weight: bold;
    color: var(--text-dark);
    font-size: 15px;
}

.form-box input,
.form-box select,
.form-box textarea {
    padding: 14px;
    border-radius: 6px;
    border: 2px solid #ddd;
    font-size: 16px;
    transition: var(--transition);
    font-family: inherit;
}

.form-box input:focus,
.form-box select:focus,
.form-box textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(15,92,114,0.1);
}

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

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-info-card {
    background: white;
    padding: 35px 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.contact-info-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 22px;
}

.contact-info-card p {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-info-card a {
    color: var(--primary-color);
    font-weight: bold;
}

.contact-info-card a:hover {
    color: var(--primary-light);
}

.contact-note {
    font-size: 14px !important;
    color: var(--text-light) !important;
}

/* Map Section */
.map-section {
    padding: 60px 20px;
}

.map-container {
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    background: white;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

/* ===== FOOTER ===== */
footer {
    background: var(--primary-color);
    color: white;
    padding: 50px 20px 20px;
}

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

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-logo {
    height: 70px;
    margin-bottom: 15px;
}

.footer-section p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-section a {
    color: white;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

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

/* ===== FLOATING WHATSAPP ===== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--secondary-color);
    color: white;
    font-size: 28px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37,211,102,0.5);
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    /* Mobile Menu */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: var(--primary-color);
        padding: 20px;
        box-shadow: var(--shadow);
        display: none;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .main-nav a {
        display: block;
        padding: 12px;
    }
    
    /* Hide desktop button on mobile */
    .header-content > .primary-btn {
        display: none;
    }
    
    /* Hero */
    .hero {
        height: 70vh;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    /* Typography */
    .section h2 {
        font-size: 28px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    /* Country Details */
    .country-detail,
    .country-detail.reverse {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 25px;
    }
    
    .country-detail.reverse .country-image {
        order: 0;
    }
    
    .country-image img {
        max-width: 200px;
        margin: 0 auto;
        display: block;
    }
    
    .country-info h2 {
        text-align: center;
        font-size: 26px;
    }
    
    /* About & Mission */
    .about-content,
    .mission-content,
    .contact-form-container {
        padding: 30px 20px;
    }
    
    /* Pillar */
    .pillar {
        flex-direction: column;
        text-align: center;
    }
    
    .pillar-number {
        margin: 0 auto 15px;
    }
    
    /* CTA Buttons */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .primary-btn,
    .cta-buttons .whatsapp-btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Floating WhatsApp */
    .floating-whatsapp {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    /* Sections */
    .section {
        padding: 50px 20px;
    }
    
    /* Top Bar */
    .top-content {
        font-size: 12px;
    }
    
    .top-content span:first-child {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
    
    .large-btn {
        padding: 12px 25px;
        font-size: 15px;
    }
}

/* Print Styles */
@media print {
    .top-bar,
    .main-header,
    .floating-whatsapp,
    .lang-btn,
    .primary-btn,
    .secondary-btn {
        display: none;
    }
}
.dev-credit {
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dev-credit:hover {
    color: #25D366;
    text-shadow: 0 0 8px rgba(37, 211, 102, 0.6);
}
.company-name {
    font-family: 'Cairo', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 400;
}
