:root {
    --primary: #0a2472;
    --primary-light: #0e2c8a;
    --primary-dark: #081a54;
    --secondary: #ff6b35;
    --accent: #00a8cc;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --info: #17a2b8;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
}

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

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-heading);
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(10, 36, 114, 0.2);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
}

.btn-secondary:hover {
    background: #ff5a1f;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.2);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
}

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

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

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.logo-text h1 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.logo-text h1 span {
    color: var(--secondary);
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: -4px;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-link, .nav-home {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    white-space: nowrap;
}

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

.nav-link.active, .nav-home.active {
    color: var(--primary);
    position: relative;
}

.nav-link.active::after, .nav-home.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

.nav-cta {
    background: var(--secondary);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-cta:hover {
    background: #ff5a1f;
    color: white;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--primary);
}

/* Mobile Menu */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background: white;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.mobile-logo i {
    color: var(--primary);
    font-size: 1.5rem;
}

.mobile-logo h3 {
    font-size: 1.2rem;
    margin: 0;
}

.close-menu {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray);
    cursor: pointer;
}

.mobile-nav {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: var(--border-radius);
    color: var(--dark);
    font-weight: 500;
    text-align: left;
}

.mobile-nav a:hover {
    background: var(--light-gray);
    color: var(--primary);
}

.mobile-nav a.active {
    background: var(--light);
    color: var(--primary);
}

.mobile-cta {
    background: var(--secondary);
    color: white;
    padding: 15px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-size: 1.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    animation: fadeInLeft 1s ease 0.2s both;
}

.hero-main-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
    animation: fadeInLeft 1s ease 0.4s both;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    animation: fadeInLeft 1s ease 0.6s both;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.8s both;
    align-items: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item i {
    color: var(--secondary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item strong {
    display: block;
    color: white;
    font-weight: 600;
}

.feature-item small {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 1s both;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1.2s both;
    align-items: center;
    justify-content: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.trust-badge i {
    color: var(--secondary);
    flex-shrink: 0;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

/* Quick Stats */
.quick-stats {
    padding: 80px 0;
    color: white;
    position: relative;
    z-index: 1;
}

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

.stat-box {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-box.highlight {
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
}

.stat-box i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.stat-box h3 {
    font-size: 3rem;
    margin: 0;
    color: white;
}

.stat-box p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
}

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

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

.section-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(10, 36, 114, 0.2);
}

.section-title {
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

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

.section-desc {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 30px auto 0;
}

/* About Section */
.about-section {
    background: linear-gradient(rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.97)), 
                url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    position: relative;
    padding: 80px 0 !important;
}

.about-section .container {
    position: relative;
    z-index: 2;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

.about-text h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary);
}

.about-text > p {
    color: var(--dark);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 35px;
    padding-right: 20px;
}

/* Mission & Vision Cards */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 35px 0;
}

.mission-card, .vision-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--light-gray);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.mission-card i, .vision-card i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-card h4, .vision-card h4 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.mission-card p, .vision-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Values Section */
.values {
    margin-top: 45px;
}

.values h4 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: left;
}

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

.value-item {
    background: white;
    padding: 30px 25px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--light-gray);
    text-align: center;
    height: 100%;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.value-item i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
}

.value-item h5 {
    color: var(--primary);
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.value-item p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* About Image */
.about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border: 8px solid white;
    height: fit-content;
    margin-top: 20px;
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.experience-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--secondary);
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: pulse 2s infinite;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    z-index: 2;
}

.experience-badge span {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--font-heading);
}

.experience-badge p {
    font-size: 0.8rem;
    margin: 5px 0 0;
    opacity: 0.9;
    font-weight: 500;
    padding: 0 10px;
}

/* Animation for Experience Badge */
@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
    }
}

/* Services Section */
.services-preview {
    background: linear-gradient(rgba(248, 249, 250, 0.95), rgba(248, 249, 250, 0.95)), url('https://images.unsplash.com/photo-1551836026-d5c2c5af78e4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
}

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

.service-card {
    background: white;
    padding: 35px 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: left;
    border: 1px solid var(--light-gray);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 25px 0;
    color: white;
    font-size: 1.8rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--secondary);
    transform: rotateY(180deg);
}

.service-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
    line-height: 1.3;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.service-features {
    text-align: left;
    margin-bottom: 25px;
    width: 100%;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 0.9rem;
}

.service-features i {
    color: var(--success);
    flex-shrink: 0;
    font-size: 0.9rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    margin-top: auto;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.service-link:hover {
    color: var(--secondary);
    gap: 12px;
}

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

/* Countries Slider */
.countries-slider-section {
    position: relative;
    padding: 80px 0 !important;
}

.countries-slider {
    position: relative;
    padding: 0 30px;
}

.swiper {
    padding: 15px 0 40px;
}

.country-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--light-gray);
}

.country-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.country-header {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light);
    min-height: 70px;
}

.country-flag {
    width: 50px;
    height: 35px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid white;
}

.country-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.country-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    background: var(--light);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--gray);
    border: 1px solid var(--light-gray);
    white-space: nowrap;
}

.country-badge.primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    font-size: 0.7rem;
    padding: 3px 10px;
}

.country-badge.accent {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    font-size: 0.7rem;
    padding: 3px 10px;
}

.country-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.country-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.05));
}

.country-content {
    padding: 25px;
}

.country-content h3 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 1.3rem;
    line-height: 1.3;
}

.country-desc {
    color: var(--gray);
    margin-bottom: 15px;
    min-height: 50px;
    line-height: 1.6;
    font-size: 0.9rem;
}

.country-details {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding: 12px;
    background: var(--light);
    border-radius: 10px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray);
    font-size: 0.8rem;
    white-space: nowrap;
}

.detail-item i {
    color: var(--primary);
    flex-shrink: 0;
    font-size: 0.9rem;
}

.detail-item strong {
    color: var(--primary);
    font-weight: 600;
}

.country-services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.service-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--light);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--gray);
    border: 1px solid var(--light-gray);
}

.country-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: var(--primary);
    color: white;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 2px solid var(--primary);
}

.country-btn:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(10, 36, 114, 0.15);
}

.view-all-countries {
    text-align: center;
    margin-top: 40px;
}

/* Process Section */
#process {
    background: 
        linear-gradient(rgba(10, 36, 114, 0.92), rgba(10, 36, 114, 0.94)),
        url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    position: relative;
    padding: 80px 0 !important;
    color: white;
}

#process .container {
    position: relative;
    z-index: 2;
}

#process .section-title,
#process .section-desc,
#process h3,
#process h4,
#process p,
#process .step-content h4,
#process .step-content p {
    color: white !important;
}

#process .section-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

/* Compact Process Steps for this section */
#process .process-steps {
    max-width: 800px;
    margin: 0 auto;
}

#process .process-step {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 30px;
    position: relative;
}

#process .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 22px;
    top: 55px;
    bottom: -35px;
    width: 2px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

#process .step-number {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
    position: relative;
    z-index: 2;
    margin-top: 3px;
    transition: var(--transition);
}

#process .process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(255, 107, 53, 0.35);
}

#process .step-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

#process .process-step:hover .step-content {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

#process .step-content h4 {
    color: white;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

#process .step-content p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Section */
.contact-section .container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

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

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

.contact-info-card {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 20px;
    transition: var(--transition);
    border: 1px solid var(--light-gray);
    align-items: flex-start;
    text-align: left;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.contact-card-icon {
    width: 55px;
    height: 55px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(10, 36, 114, 0.2);
}

.contact-card-content {
    gap: 8px;
    color: var(--primary);
    font-weight: 900;
    font-size: 0.9rem;
}
.contact-card-content h3 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.contact-card-content p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.phone-numbers, .email-addresses {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.phone-item, .email-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phone-item i, .email-item i {
    color: var(--primary);
    font-size: 1.1rem;
    width: 18px;
    flex-shrink: 0;
}

.phone-label, .email-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 4px;
}

.phone-item a, .email-item a {
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.phone-item a:hover, .email-item a:hover {
    color: var(--primary);
}

.contact-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
}

.contact-card-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.contact-card-link:hover {
    color: var(--secondary);
    gap: 12px;
}

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

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: white;
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--light-gray);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.form-group label i {
    color: var(--primary);
    flex-shrink: 0;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    background: white;
    width: 100%;
}

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

.char-counter {
    text-align: right;
    font-size: 0.85rem;
    color: var(--gray);
}

.file-upload label {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.upload-area {
    border: 2px dashed var(--light-gray);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    background: var(--light);
}

.upload-area:hover {
    border-color: var(--primary);
    background: white;
}

.upload-area input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-area i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.upload-area p {
    font-weight: 500;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.upload-area span {
    font-size: 0.85rem;
    color: var(--gray);
}

.file-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: var(--light);
    border-radius: 6px;
    font-size: 0.9rem;
}

.file-item i {
    color: var(--primary);
}

.checkbox-group {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    position: absolute;
    left: 0;
    top: 3px;
    margin: 0;
    width: 16px;
    height: 16px;
}

.checkbox-group label {
    font-weight: normal;
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 0;
    display: block;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-group a {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.form-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.submit-btn {
    flex: 1;
    position: relative;
    padding: 12px;
    font-size: 0.9rem;
}

.loader {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

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

/* FAQ Section */
.contact-faq {
    margin-top: 80px;
    width: 100%;
}

.contact-faq h3 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--light-gray);
    transition: var(--transition);
}

.faq-item.active {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: var(--dark);
    transition: var(--transition);
    background: var(--light);
}

.faq-question:hover {
    color: var(--primary);
    background: rgba(10, 36, 114, 0.05);
}

.faq-question i {
    transition: var(--transition);
    color: var(--primary);
    flex-shrink: 0;
    font-size: 0.9rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 1000px;
    opacity: 1;
}

.faq-answer p {
    margin-bottom: 15px;
    color: var(--gray);
    line-height: 1.6;
}

.faq-answer ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.faq-answer li {
    list-style: disc;
    margin-bottom: 8px;
    color: var(--gray);
    line-height: 1.6;
}

/* Footer */
.footer {
    color: white;
    padding: 80px 0 30px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.footer-logo .logo-with-icon {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo .logo-with-icon i {
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.footer-logo .logo-with-icon h2 {
    font-size: 1.5rem;
    color: white;
    margin: 0;
}

.footer-logo .logo-with-icon h2 span {
    color: var(--secondary);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer-links h3,
.footer-services h3,
.footer-newsletter h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    text-align: left;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-newsletter h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

.footer-links a,
.footer-services a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    transition: var(--transition);
    justify-content: flex-start;
}

.footer-links a:hover,
.footer-services a:hover {
    color: white;
    gap: 15px;
    transform: translateX(5px);
}

.footer-links a i,
.footer-services a i {
    font-size: 0.8rem;
    flex-shrink: 0;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    align-items: center;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border: none;
    border-radius: var(--border-radius);
    color: white;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--secondary);
    flex-shrink: 0;
}

.newsletter-form button:hover {
    background: #ff5a1f;
    transform: translateY(-2px);
}

.app-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.app-badge i {
    font-size: 2rem;
    color: var(--secondary);
    flex-shrink: 0;
}

.app-badge h4 {
    color: white;
    margin: 0;
    font-size: 1.1rem;
}

.app-badge p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

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

.footer-bottom a:hover {
    text-decoration: underline;
}

.compliance {
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Floating Buttons */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    z-index: 100;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(10, 36, 114, 0.3);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    transition: var(--transition);
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container,
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-main-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-content {
        text-align: center;
        align-items: center;
    }
    
    .hero-badge {
        align-self: center;
    }
    
    .hero-features {
        align-items: center;
    }
    
    .feature-item {
        justify-content: center;
        text-align: center;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .stats-grid,
    .services-grid,
    .values-grid,
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer-logo .logo-with-icon {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links h3,
    .footer-services h3,
    .footer-newsletter h3 {
        text-align: center;
    }
    
    .footer-links h3::after,
    .footer-services h3::after,
    .footer-newsletter h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a,
    .footer-services a {
        justify-content: center;
    }
    
    .countries-slider {
        padding: 0 20px;
    }
    
    .service-card {
        text-align: center;
        align-items: center;
    }
    
    .service-icon {
        margin: 0 auto 30px;
    }
    
    .service-features {
        align-items: center;
    }
    
    .service-features li {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .about-image img {
        height: 400px;
    }
    
    .about-text > p {
        padding-right: 0;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-info-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .contact-card-content {
        text-align: center;
    }
    
    .phone-item, .email-item {
        justify-content: center;
    }
    
    #process {
        background-attachment: scroll !important;
        padding: 60px 0 !important;
    }
    
    #process .process-step {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    #process .process-step:not(:last-child)::after {
        left: 50%;
        top: 50px;
        bottom: -25px;
        transform: translateX(-50%);
        height: 25px;
        width: 2px;
    }
    
    #process .step-number {
        margin: 0 auto;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    #process .step-content {
        text-align: center;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .stat-box h3 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .footer-links a:hover,
    .footer-services a:hover {
        transform: translateX(0);
    }
    
    .about-text h3 {
        font-size: 1.6rem;
    }
    
    .about-text > p {
        font-size: 1rem;
    }
    
    .mission-card, .vision-card {
        padding: 25px 20px;
    }
    
    .value-item {
        padding: 25px 20px;
    }
    
    .about-image img {
        height: 300px;
    }
    
    .experience-badge {
        width: 80px;
        height: 80px;
        top: 15px;
        right: 15px;
    }
    
    .experience-badge span {
        font-size: 1.6rem;
    }
    
    .upload-area {
        padding: 20px 15px;
    }
    
    .upload-area i {
        font-size: 1.8rem;
    }
}


