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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #2B2B2B;
    line-height: 1.6;
}

/* =====================
   CONTAINER
===================== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* =====================
   HEADER
===================== */
.header {
    background: #ffffff;
    border-bottom: 1px solid #E6D9FF;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 55px;
}

/* =====================
   NAVBAR
===================== */
.navbar ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

.navbar a {
    text-decoration: none;
    color: #6A4BBC;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: #C9A24D;
}

.btn-gold {
    background: #C9A24D;
    color: #ffffff !important;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    transition: background 0.3s ease;
}

.btn-gold:hover {
    background: #b8933f;
}

/* =====================
   HERO SECTION
===================== */
.hero {
    background: linear-gradient(135deg, #ffffff, #E6D9FF);
    padding: 80px 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.hero-text h1 {
    font-size: 42px;
    color: #6A4BBC;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 16px;
    margin-bottom: 25px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-outline {
    border: 2px solid #6A4BBC;
    color: #6A4BBC;
    padding: 10px 18px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #6A4BBC;
    color: #ffffff;
}

.hero-image img {
    width: 100%;
    max-width: 480px;
}

/* =====================
   SECTIONS COMMON
===================== */
section {
    padding: 70px 0;
}

section h2 {
    text-align: center;
    font-size: 32px;
    color: #6A4BBC;
    margin-bottom: 40px;
}

/* =====================
   COUNTRIES
===================== */
.country-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.country-card {
    padding: 25px;
    text-align: center;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #CFCFD6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.country-card:hover {
    background: #E6D9FF;
    transform: translateY(-6px);
}

/* =====================
   WHY DU
===================== */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.feature-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px;
    border: 1px solid #CFCFD6;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: #F6D6E8;
    transform: translateY(-6px);
}

/* =====================
   SERVICES
===================== */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.service-card {
    padding: 30px;
    text-align: center;
    border-radius: 18px;
    border: 1px solid #CFCFD6;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: #E6D9FF;
    transform: translateY(-6px);
}

/* =====================
   STATS
===================== */
.stats {
    background: #6A4BBC;
    color: #ffffff;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    text-align: center;
    gap: 20px;
}

.stat-box h3 {
    font-size: 32px;
    color: #C9A24D;
}

/* =====================
   CTA
===================== */
.cta {
    background: #C9A24D;
    text-align: center;
    color: #ffffff;
}

.cta a {
    margin-top: 20px;
    display: inline-block;
}

/* =====================
   FOOTER
===================== */
.footer {
    background: #6A4BBC;
    color: #ffffff;
    padding: 40px 0;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 15px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: #F6D6E8;
}

copyright {
    text-align: center;
    font-size: 13px;
}
.page-hero {
  background: linear-gradient(135deg, #E6D9FF, #ffffff);
  padding: 80px 0;
  text-align: center;
}

.page-hero h1 {
  color: #6A4BBC;
  font-size: 38px;
  margin-bottom: 10px;
}

.page-hero p {
  max-width: 700px;
  margin: auto;
}
