
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.center { text-align: center; }


.green-strip {
    height: 8px;
    background: #9ab41d;
}


.top-bar {
    background: #fff;
    border-bottom: none;
    padding: 15px 0;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 35px;
}

.top-left {
    flex-shrink: 0;
}

.logo { display: flex; align-items: center; }

.logo-img {
    height: 55px;
    width: auto;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: nowrap;
}

.social-icons {
    margin-left: auto;
}

.top-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.info-dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    background: #9ab41d;
    border-radius: 50%;
    margin-top: 5px;
}

.top-info div {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.info-value {
    font-weight: 700;
    color: #333;
    font-size: 13px;
}

.social-icons {
    display: flex;
    gap: 8px;
}

.social-icons a {
    width: 32px;
    height: 32px;
    border: 2px solid #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 13px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #9ab41d;
    border-color: #9ab41d;
    color: #fff;
}


.main-nav {
    background: #c5d631;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.nav-links { display: flex; }

.nav-links li a {
    display: block;
    padding: 15px 30px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    transition: background 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
    background: rgba(0,0,0,0.08);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
}


.hero {
    position: relative;
    height: 90vh;
    min-height: 580px;
    max-height: 850px;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
}

.hero-slide {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active { opacity: 1; }

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px 80px;
    color: #fff;
}

.hero-subtitle {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #c5d631;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.hero-title {
    font-size: 58px;
    font-weight: 900;
    line-height: 1.0;
    margin-bottom: 22px;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 1px 2px 4px rgba(0,0,0,0.25);
}

.hero-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 650px;
}

.hero-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.hero-dot.active {
    background: #c5d631;
}


.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-hero {
    background: #9ab41d;
    color: #fff;
    border-radius: 25px;
    padding: 14px 40px;
    font-size: 13px;
    letter-spacing: 1.5px;
}
.btn-hero:hover { background: #8aa318; box-shadow: 0 4px 15px rgba(154,180,29,0.4); }

.btn-green { background: #9ab41d; color: #fff; }
.btn-green:hover { background: #8aa318; box-shadow: 0 4px 15px rgba(154,180,29,0.4); }

.btn-outline {
    background: transparent;
    color: #9ab41d;
    border: 2px solid #9ab41d;
}
.btn-outline:hover { background: #9ab41d; color: #fff; }


.welcome {
    padding: 60px 0;
    text-align: center;
}

.divider-line {
    width: 55%;
    height: 1px;
    background: #ddd;
    margin: 0 auto 25px;
}

.welcome-title {
    font-size: 24px;
    font-weight: 300;
    color: #333;
    margin-bottom: 20px;
    font-style: normal;
}

.welcome-text {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.8;
    font-style: normal;
}


.credentials {
    padding: 50px 0 60px;
}

.cred-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.cred-item { padding: 10px 0; }

.cred-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #9ab41d;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
    font-family: 'Montserrat', sans-serif;
}

.cred-title {
    font-size: 17px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.cred-underline {
    width: 40px;
    height: 3px;
    background: #9ab41d;
    margin-bottom: 15px;
}

.cred-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.cred-desc a {
    color: #9ab41d;
    text-decoration: underline;
}


.recruitment {
    padding: 70px 0;
    background: #f9f9f9;
}

.section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #9ab41d;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.section-label.center { text-align: center; }

.section-title-large {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 35px;
    font-family: 'Montserrat', sans-serif;
}

.section-title-large.center { text-align: center; }

.recruit-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 40px;
}

.recruit-col p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}


.where-operate {
    padding: 70px 0;
    background: #fff;
}

.section-title {
    font-size: 28px;
    font-weight: 300;
    color: #333;
    margin-bottom: 40px;
}

.section-title.center { text-align: center; }

.country-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.country-card { overflow: hidden; }

.country-img {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 4px;
}

.country-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.country-label {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
}

.country-desc {
    padding: 20px 5px;
}

.country-desc p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}


.gallery {
    padding: 60px 0;
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 4px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
}

.gallery-overlay h4 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 4px;
    font-family: 'Montserrat', sans-serif;
}

.gallery-overlay p {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}


.identify {
    padding: 70px 0;
    background: #fff;
}

.identify-list {
    max-width: 800px;
    margin: 0 auto 40px;
}

.identify-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.check-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 16px;
    margin-top: 3px;
}

.identify-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.identify-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 5px;
}


.steps {
    padding: 70px 0;
    background: #f9f9f9;
}

.step-underline {
    width: 50px;
    height: 3px;
    background: #9ab41d;
    margin: 0 auto 25px;
}

.steps-subtitle {
    text-align: center;
    font-size: 15px;
    color: #666;
    margin-bottom: 45px;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

.step-card {
    background: #3a3c3c;
    padding: 30px 25px;
    border-radius: 4px;
    color: #fff;
}

.step-icon {
    width: 48px;
    height: 48px;
    background: #9ab41d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 15px;
}

.step-card h4 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.step-card p {
    font-size: 13px;
    color: #bbb;
    line-height: 1.7;
}

.steps-bottom-text {
    text-align: center;
    font-size: 14px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}


.reasons {
    padding: 70px 0;
    background: #fff;
}

.divider-line-green {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #9ab41d, #c5d631, #9ab41d);
    margin-bottom: 40px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.reason-card {
    padding: 25px 20px;
    border-top: 3px solid #9ab41d;
    transition: transform 0.3s, box-shadow 0.3s;
}

.reason-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.reason-card h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.reason-line {
    width: 30px;
    height: 2px;
    background: #ddd;
    margin-bottom: 15px;
}

.reason-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.reason-line-bottom {
    width: 100%;
    height: 2px;
    background: #9ab41d;
    margin-top: 20px;
    opacity: 0.3;
}


.about {
    padding: 70px 0;
    background: #f9f9f9;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    margin-bottom: 35px;
}

.about-col p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

.about-col h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 18px 0 10px;
}

.about-col ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 12px;
}

.about-col ul li {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 6px;
}

.about-cta {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #ddd;
}

.about-cta p {
    font-size: 15px;
    color: #555;
    margin-bottom: 18px;
}


.processing {
    padding: 70px 0;
    background: #fff;
}

.proc-block {
    background: #f9f9f9;
    padding: 35px;
    border-radius: 6px;
    margin-bottom: 25px;
}

.proc-block h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e8e8e8;
    font-family: 'Montserrat', sans-serif;
}

.proc-block > p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

.highlight-box {
    background: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 22px 25px;
    margin: 20px 0;
    border-radius: 0 6px 6px 0;
}

.highlight-box.green {
    background: #f1f8e9;
    border-left-color: #9ab41d;
}

.highlight-box h4 {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.highlight-text {
    font-size: 17px;
    font-weight: 700;
    color: #d32f2f;
    margin-bottom: 8px;
}

.highlight-box.green .highlight-text { color: #2e7d32; }

.highlight-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.proc-list {
    list-style: disc;
    padding-left: 22px;
    margin: 12px 0;
}

.proc-list li {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 6px;
}

.proc-list.numbered { list-style: decimal; }

.info-box {
    background: #e8f5e9;
    padding: 22px 25px;
    border-radius: 6px;
    margin: 20px 0;
}

.info-box h4 {
    font-size: 15px;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 10px;
}

.info-box h4 i { margin-right: 6px; }

.info-box ul {
    list-style: disc;
    padding-left: 22px;
}

.info-box ul li {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 6px;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 22px 0;
}

.coverage-card {
    background: #fff;
    padding: 22px;
    border-radius: 6px;
    text-align: center;
    transition: transform 0.3s;
}

.coverage-card:hover { transform: translateY(-3px); }

.coverage-icon {
    width: 48px;
    height: 48px;
    background: #9ab41d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    margin: 0 auto 12px;
}

.coverage-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
}

.coverage-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.proc-step {
    display: flex;
    gap: 22px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.proc-step-number {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: #9ab41d;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
}

.proc-step-content { flex: 1; }

.proc-step-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.proc-step-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.proc-step-content ul {
    list-style: disc;
    padding-left: 18px;
    margin-bottom: 8px;
}

.proc-step-content ul li {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 5px;
}

.doc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 12px;
}

.doc-item {
    background: #fff;
    padding: 18px;
    border-radius: 6px;
    border-left: 3px solid #9ab41d;
}

.doc-item i {
    color: #9ab41d;
    font-size: 20px;
    margin-bottom: 8px;
}

.doc-item h5 {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}

.doc-item p {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

.proc-timeline {
    background: #3a3c3c;
    color: #fff;
    padding: 28px 35px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 25px;
}

.timeline-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 90px;
}

.timeline-badge i {
    font-size: 26px;
    color: #9ab41d;
    margin-bottom: 6px;
}

.timeline-badge span {
    font-size: 18px;
    font-weight: 800;
    color: #c5d631;
    font-family: 'Montserrat', sans-serif;
}

.proc-timeline p {
    font-size: 14px;
    color: #bbb;
    line-height: 1.7;
}

.proc-summary {
    background: #f9f9f9;
    padding: 35px;
    border-radius: 6px;
    text-align: center;
}

.summary-items {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.summary-item i {
    color: #9ab41d;
    font-size: 18px;
}


.managers {
    padding: 70px 0;
    background: #f9f9f9;
}

.managers-subtitle {
    text-align: center;
    font-size: 15px;
    color: #666;
    margin-bottom: 40px;
    margin-top: -20px;
}

.managers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    max-width: 750px;
    margin: 0 auto 40px;
}

.managers-grid.top-managers {
    grid-template-columns: repeat(2, 1fr);
    max-width: 750px;
    margin-bottom: 50px;
}

.managers-grid.three-cols {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
}

.manager-card {
    text-align: center;
    padding: 0 10px;
}

.manager-photo {
    width: 130px;
    height: 130px;
    margin: 0 auto 18px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ddd;
}

.manager-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.manager-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #90a4ae, #607d8b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 42px;
}

.top-managers .manager-card:first-child .manager-placeholder {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.top-managers .manager-card:nth-child(2) .manager-placeholder {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.managers-grid:not(.top-managers) .manager-card:first-child .manager-placeholder {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.managers-grid:not(.top-managers) .manager-card:nth-child(2) .manager-placeholder {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.manager-name {
    font-size: 17px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}

.manager-role {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #9ab41d;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.manager-timeline p {
    font-size: 13px;
    color: #9ab41d;
    line-height: 1.6;
    font-style: italic;
}


.contact {
    padding: 70px 0;
    background: linear-gradient(135deg, #2d5a1b, #3a6b24);
    color: #fff;
}

.contact .section-title-large { color: #fff; }

.contact-subtitle {
    text-align: center;
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    margin-top: -20px;
    margin-bottom: 45px;
    line-height: 1.7;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 850px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    padding: 30px 22px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.12);
    transition: transform 0.3s, background 0.3s;
}

.contact-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.15);
}

.contact-card > i {
    font-size: 32px;
    color: #c5d631;
    margin-bottom: 12px;
}

.contact-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 18px;
}

.contact-card .btn-outline {
    color: #c5d631;
    border-color: #c5d631;
    padding: 10px 24px;
}

.contact-card .btn-outline:hover {
    background: #c5d631;
    color: #333;
}


.footer {
    background: #f5f5f5;
    padding: 50px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 35px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 18px;
    font-family: 'Montserrat', sans-serif;
}

.footer-col p {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-col p i {
    color: #9ab41d;
    margin-right: 6px;
    width: 16px;
}

.footer-col ul li { margin-bottom: 6px; }

.footer-col ul li a {
    font-size: 13px;
    color: #666;
}

.footer-col ul li a:hover { color: #9ab41d; }

.offices-list {
    list-style: none;
}

.offices-list li {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 6px;
}

.offices-list li i {
    color: #9ab41d;
    margin-right: 6px;
    width: 16px;
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 30px 0;
    border-top: 1px solid #ddd;
}

.footer-logos img {
    height: 55px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-logos img:hover { opacity: 1; }

.footer-bottom {
    border-top: 1px solid #ddd;
    padding: 18px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #888;
}


.scroll-top {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.scroll-top.visible { opacity: 1; visibility: visible; }

.scroll-top:hover {
    background: #9ab41d;
    color: #fff;
    border-color: #9ab41d;
}


.animate-target {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-target.animate-in {
    opacity: 1;
    transform: translateY(0);
}


@media (max-width: 1024px) {
    .cred-grid, .reasons-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 40px; }
    .hero-content { padding: 0 40px; }
    .coverage-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .recruit-cols { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .top-right { display: none; }

    .mobile-toggle { display: flex; }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: #c5d631;
    }

    .nav-links.active { display: flex; }

    .nav-links li a {
        padding: 14px 24px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .hero { height: 420px; }
    .hero-title { font-size: 28px; }
    .hero-desc { font-size: 14px; }
    .hero-desc br, .welcome-text br, .steps-bottom-text br, .contact-subtitle br { display: none; }
    .hero-content { padding: 0 25px; }

    .cred-grid { grid-template-columns: 1fr; gap: 25px; }
    .reasons-grid { grid-template-columns: 1fr; }
    .about-content { grid-template-columns: 1fr; gap: 25px; }
    .steps-grid { grid-template-columns: 1fr; }
    .country-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .managers-grid, .managers-grid.top-managers, .managers-grid.three-cols { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 25px; }
    .section-title-large { font-size: 26px; }

    .proc-block { padding: 22px 18px; }
    .proc-step { flex-direction: column; gap: 12px; }
    .doc-grid { grid-template-columns: 1fr; }
    .proc-timeline { flex-direction: column; text-align: center; padding: 22px 18px; }
    .summary-items { flex-direction: column; align-items: center; gap: 10px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 24px; }
    .hero { height: 380px; }
    .section-title-large { font-size: 22px; }
    .proc-block h3 { font-size: 17px; }
    .btn { padding: 12px 26px; font-size: 11px; }
}

