/* ===================================
   DESIGN SYSTEM V2 (Based on Mockups)
   =================================== */

:root {
    /* Primary Colors - Deep Royal Blue (Refined) */
    --primary-900: #0a1628;
    --primary-800: #1e40af;
    /* Deep Blue Background - closer to mockup */
    --primary-700: #2563eb;
    /* Button Blue */
    --primary-600: #3b82f6;
    --primary-100: #e0f2fe;
    /* Light Blue Cards - softer */
    --primary-50: #f0f9ff;
    /* Very light blue for subtle backgrounds */

    /* Accent Colors - Sunny Yellow/Gold (Refined) */
    --accent-500: #fbbf24;
    /* Bright Yellow - warmer tone */
    --accent-400: #fcd34d;
    --accent-600: #f59e0b;
    /* Darker Yellow for borders */
    --accent-700: #d97706;
    /* Even darker for text */

    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f8fafc;
    /* Page Background */
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-600: #475569;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Inter', sans-serif;
    /* Mockup uses clean sans-serif */

    /* Spacing & Layout */
    --container-width: 1100px;
    /* Slightly tighter container */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1.5rem;
    /* Large rounded corners from mockup */
    --radius-xl: 2rem;

    /* Shadows */
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-floating: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* ===================================
   RESET & BASE
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--gray-50);
    color: var(--gray-800);
    line-height: 1.5;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    /* Heavy headings */
    line-height: 1.1;
    color: var(--primary-900);
    text-transform: uppercase;
    /* Mockup style */
    letter-spacing: -0.02em;
}

p {
    color: var(--gray-600);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   COMPONENTS
   =================================== */

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    border-radius: 0.5rem;
    /* Buttons are sharper in mockup */
    cursor: pointer;
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: var(--primary-800);
    color: var(--white);
    letter-spacing: 0.05em;
}

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

.btn-accent {
    background-color: var(--accent-500);
    color: var(--primary-900);
    box-shadow: 0 4px 0 var(--accent-600);
    /* 3D effect */
}

.btn-accent:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 var(--accent-600);
}

.section-tag {
    display: none;
    /* Mockup doesn't use tags much in that style */
}

/* ===================================
   HEADER
   =================================== */

.navbar {
    padding: 2rem 0;
    background: transparent;
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--primary-800);
    letter-spacing: -1px;
}

.logo-highlight {
    color: var(--accent-500);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.9rem;
}

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

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.hero-top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-end;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--primary-900);
    line-height: 1.1;
    letter-spacing: -0.03em;
    /* Tighter for impact */
}

.hero-desc-container {
    padding-bottom: 0.5rem;
}

.hero-subtitle {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    max-width: 400px;
}

.consultation-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary-700);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow-card);
}

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

.stats-card {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    display: flex;
    gap: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-left: 5px solid var(--accent-600);
    /* Thicker yellow accent */
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-900);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray-600);
    text-transform: lowercase;
}

/* ===================================
   TEAM SECTION (White Section)
   =================================== */

.team-section {
    padding: 4rem 0;
}

.team-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    align-items: flex-end;
}

.team-title {
    font-size: 2.5rem;
    max-width: 500px;
}

.team-desc {
    max-width: 400px;
    text-align: right;
    font-size: 0.9rem;
}

.team-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
}

.team-image-container {
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

.team-info-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.info-card {
    background: var(--primary-100);
    padding: 2rem;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
    transition: transform 0.2s ease;
}

.info-card:hover {
    transform: translateY(-4px);
}

.info-card.cta-card {
    background: var(--primary-100);
    border-right: 5px solid var(--accent-600);
    position: relative;
}

.info-card.cta-card::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 12px;
    height: 12px;
    background: var(--accent-500);
    border-radius: 50%;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary-900);
}

.card-text {
    font-size: 0.9rem;
    color: var(--primary-800);
    opacity: 0.8;
}

/* ===================================
   PERKS SECTION (Deep Blue)
   =================================== */

.perks-section {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    padding: 5rem 0;
    color: var(--white);
    border-radius: var(--radius-xl);
    margin: 2rem 1rem;
    position: relative;
    overflow: hidden;
}

.perks-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.perks-header {
    margin-bottom: 4rem;
    padding: 0 3rem;
}

.perks-title {
    color: var(--white);
    font-size: 2.5rem;
    max-width: 500px;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 0 3rem;
}

.perk-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.perk-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.perk-card.highlight {
    border: 2.5px solid var(--accent-500);
    background: rgba(251, 191, 36, 0.08);
}

.perk-card.highlight:hover {
    border-color: var(--accent-400);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.2);
}

.perk-icon {
    font-size: 2rem;
    color: var(--accent-500);
    margin-bottom: 1rem;
}

.perk-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.perk-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: normal;
}

/* ===================================
   SERVICES / COUNTRIES (Deep Blue continued)
   =================================== */

.services-container {
    padding: 0 3rem 4rem 3rem;
}

.services-title {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.country-selector {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 2rem;
}

.country-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.country-flag {
    font-size: 2rem;
}

.country-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-icon {
    color: var(--accent-500);
}

.lead-form-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-title {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.form-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.simple-input {
    width: 100%;
    padding: 1rem;
    border-radius: 0.5rem;
    border: none;
    margin-bottom: 1rem;
    background: var(--gray-100);
}

.btn-full {
    width: 100%;
}

/* ===================================
   PROCESS SECTION (Light)
   =================================== */

.process-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.process-card {
    background: var(--primary-100);
    padding: 2rem;
    padding-top: 4rem;
    border-radius: var(--radius-md);
    position: relative;
    min-height: 250px;
}

.process-number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-600);
    opacity: 0.3;
}

.process-title {
    font-size: 1rem;
    color: var(--primary-900);
    margin-bottom: 4rem;
}

.process-desc {
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* ===================================
   FOOTER (Simple)
   =================================== */

.footer-simple {
    text-align: center;
    padding: 2rem;
    color: var(--gray-600);
    font-size: 0.9rem;
    background: var(--white);
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 900px) {
    .hero-top {
        grid-template-columns: 1fr;
    }

    .team-grid,
    .team-info-grid,
    .services-layout,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .perks-header,
    .perks-grid,
    .services-container {
        padding: 0 1.5rem;
    }

    .section-tag {
        display: block;
    }

    .team-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .team-desc {
        text-align: left;
    }
}