:root {
    --primary: #07263b;
    --accent-green: #63AD8E;
    --accent-blue: #00AEEF;
    --surface: #F8FAFC;
    --muted: #64748B;
    --text-dark: #0F172A;
    --bg-light-blue: #EBF7FF;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: white;
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Rounded Utilities - Matching the Image's Large Radii */
.rounded-4xl {
    border-radius: 2rem;
}

.rounded-5xl {
    border-radius: 3rem;
}

.rounded-6xl {
    border-radius: 4rem;
}

/* Header */
.site-header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--accent-blue);
}

.btn-apply {
    background: var(--accent-blue);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background-color 0.2s, transform 0.2s;
}

.btn-apply:hover {
    background-color: #0096ce;
    transform: translateY(-1px);
}

/* Hero Titles */
.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    color: var(--primary);
}

.internal-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
}

.internal-hero-title-dark {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
}

/* Sections */
.section-padding {
    padding: 6rem 0;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

/* Cards & Tables */
.card-light-blue {
    background-color: var(--bg-light-blue);
    border-radius: 2.5rem;
    padding: 2.5rem;
}

.table-custom {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 2rem;
    overflow: hidden;
}

.table-custom th {
    background-color: var(--accent-blue);
    color: white;
    padding: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

.table-custom td {
    padding: 1.5rem;
    background-color: white;
    border-bottom: 1px solid #F1F5F9;
    font-weight: 600;
    color: var(--primary);
}

/* Forms */
.input-custom {
    width: 100%;
    background-color: #F8FAFC;
    border: none;
    border-radius: 1.25rem;
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.input-custom:focus {
    ring: 2px;
    ring-color: var(--accent-blue);
}

/* RTL Support */
[dir="rtl"] {
    font-family: 'Noto Sans Arabic', 'Inter', sans-serif;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .internal-hero-title {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .internal-hero-title {
        font-size: 2.25rem;
    }

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