/* Fonts */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/Inter-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    src: url('fonts/Inter-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    src: url('fonts/Inter-SemiBold.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/Poppins-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('fonts/Poppins-SemiBold.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/Poppins-Bold.ttf') format('truetype');
}

:root {
    --primary-color: #3ba8df;
    --secondary-color: #ffffff;
    --bg-color: #ffffff;
    --text-color: #2D3748;
    --text-black: #000000;
    --white: #ffffff;
    --gray-light: #F7FAFC;
    --gray: #718096;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-black);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    gap: 10px;
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #2e8dbb;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--text-black);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #222222;
    transform: translateY(-2px);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Icons */
.icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Mobile Sticky Bar */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 10px 20px;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    justify-content: space-between;
    gap: 10px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .header-contact {
        display: none !important;
    }

    section {
        padding: 50px 0;
    }

    .sticky-cta {
        display: flex;
    }

    body {
        padding-bottom: 80px;
    }

    .hero h1 {
        font-size: 2.2rem !important;
    }

    .hero {
        background-image: linear-gradient(to bottom, rgb(0 0 0 / 30%) 5%, rgb(0 0 0 / 60%) 100%), url(hero-bg-mobile.webp) !important;
        background-position: center top !important;
    }

    .hero-content {
        text-align: center;
    }

    .hero .container {
        flex-direction: column !important;
    }

    .country-banner-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .hero-floating-elements {
        display: none;
    }
}

/* Header Merge */
header.container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 100;
    background: transparent;
}

.hero {
    position: relative;
    padding-top: 200px !important;
    background-image: linear-gradient(to right, rgb(0 0 0 / 50%) 5%, rgb(0 0 0 / 50%) 5%), url(hero-bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Specific Grid for Why Choose - 3 Columns */
.staggered-grid {
    display: grid;
    gap: 20px;
}

.why-us .staggered-grid {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
    .why-us .staggered-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-us .staggered-grid {
        grid-template-columns: 1fr;
    }
}

.floating-img {
    animation: float 6s ease-in-out infinite;
    max-width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

@keyframes float {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-20px);
    }

    100% {
        transform: translatey(0px);
    }
}

.hero-visual {
    position: relative;
}

.hero-stamp-floating {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    z-index: 10;
    animation: float 5s ease-in-out infinite;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color) !important;
}

.why-us div:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color) !important;
}

.service-card {
    transition: var(--transition);
    border: 1px solid transparent;
}

.process div {
    transition: var(--transition);
}

.process div:hover {
    transform: scale(1.02);
}

/* Country Card Styles */
.country-banner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.country-card {
    background: white;
    padding: 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #edf2f7;
}

.country-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.country-flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 1px #eee;
}

.country-card span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-black);
}

.hero-badge {
    display: inline-block;
    background: #EBF8FF;
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}