/* ── Base ─────────────────────────────────── */
[x-cloak] { display: none !important; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: #374151;
    -webkit-font-smoothing: antialiased;
    background: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #1e3a5f;
}

/* ── Düymələr ─────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background-color: #1e3a5f;
    color: #fff;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.btn-primary:hover {
    background-color: #172d4a;
    box-shadow: 0 4px 12px rgba(30,58,95,0.2);
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background-color: #c9a84c;
    color: #1e3a5f;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.btn-gold:hover {
    background-color: #b08c35;
    box-shadow: 0 4px 12px rgba(201,168,76,0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border: 2px solid #1e3a5f;
    color: #1e3a5f;
    font-weight: 600;
    border-radius: 0.5rem;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}
.btn-outline:hover {
    background-color: #1e3a5f;
    color: #fff;
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border: 2px solid #fff;
    color: #fff;
    font-weight: 600;
    border-radius: 0.5rem;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}
.btn-outline-white:hover {
    background-color: #fff;
    color: #1e3a5f;
}

/* ── Kart ─────────────────────────────────── */
.card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(30, 58, 95, 0.08);
    border: 1px solid #f3f4f6;
    transition: box-shadow 0.3s;
}
.card:hover {
    box-shadow: 0 8px 40px rgba(30, 58, 95, 0.16);
}

/* ── Başlıqlar ────────────────────────────── */
.section-label {
    color: #c9a84c;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #1e3a5f;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.75;
}

/* ── Form ─────────────────────────────────── */
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    color: #374151;
    background: #fff;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.form-input::placeholder { color: #9ca3af; }
.form-input:focus {
    border-color: #1e3a5f;
    box-shadow: 0 0 0 3px rgba(30,58,95,0.12);
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.375rem;
}

/* ── Navbar linklər ───────────────────────── */
.nav-link {
    color: #4b5563;
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s;
}
.nav-link:hover { color: #1e3a5f; }
.nav-link-active {
    color: #1e3a5f;
    font-weight: 600;
}
