/* =========================================================
   UAE eVisa - DESIGN SYSTEM (GLOBAL FILE)
   Version: 1.0
========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

/* =========================================================
   ROOT VARIABLES (CHANGE COLORS HERE ONLY)
========================================================= */
:root {
    /* =========================
       EGYPT GOVERNMENT COLORS
    ========================= */

    --primary-red: #ce1126; /* Egyptian Flag Red */
    --primary-yellow: #d4af37; /* Eagle Gold */
    --primary-white: #ffffff;

    --red-light: #e5394d;
    --red-dark: #a30d1e;

    --yellow-light: #e3c66a;
    --yellow-dark: #b38b22;

    /* =========================
       BACKGROUNDS
    ========================= */

    --bg-primary: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #000000; /* Egyptian Black */

    /* =========================
       TEXT COLORS
    ========================= */

    --text-dark: #1f2937;
    --text-light: #ffffff;
    --text-muted: #6b7280;

    /* =========================
       BORDER
    ========================= */

    /* --border-color: #e5e7eb; */

    /* =========================
       STATUS COLORS
    ========================= */

    --success: #2e7d32;
    --success-light: #e8f5e9;

    --warning: #d4af37;
    --warning-light: #fff8e1;

    --danger: #ce1126;
    --danger-light: #fef2f2;

    /* =========================
       SHADOWS
    ========================= */

    --shadow-sm: 0 4px 18px rgba(206, 17, 38, 0.08);
    --shadow-md: 0 10px 30px rgba(206, 17, 38, 0.12);

    /* =========================
       RADIUS
    ========================= */

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 999px;

    /* =========================
       TRANSITION
    ========================= */

    --transition: all 0.3s ease;

    /* =========================
       GRADIENTS
    ========================= */

    --gradient-primary: linear-gradient(135deg, #ce1126, #e5394d);

    --gradient-yellow: linear-gradient(135deg, #d4af37, #e3c66a);

    --gradient-egypt: linear-gradient(135deg, #ce1126, #d4af37);

    --gov-primary: #0b5ea8; /* Official Blue */
    --gov-primary-dark: #084b87;

    --gov-secondary: #5f6b7a; /* Slate Gray */
    --gov-secondary-dark: #4d5865;

    --gov-success: #2e6b3f; /* Government Green */
    --gov-success-dark: #245532;

    --gov-warning: #9a6700; /* Mustard Gold */
    --gov-warning-dark: #7b5200;

    --gov-danger: #8b1e1e; /* Dark Red */
    --gov-danger-dark: #6f1818;

    --gov-preview: #3f5f8c; /* Steel Blue */
    --gov-preview-dark: #324c70;

    --egypt-red: #c8102e;
    --egypt-red-light: rgba(200, 16, 46, 0.12);
    --egypt-gold: #d4af37;
    --egypt-dark: #1f1f1f;
    --border-color: #d8d8d8;

    /* =========================
       FOOTER
    ========================= */

    --footer-bg: #000000;
}

/* =========================================================
   GLOBAL RESET & TYPOGRAPHY
========================================================= */

html[dir="rtl"] .navbar-nav {
    margin-right: auto !important;
    margin-left: 0 !important;
}

html[dir="rtl"] .dropdown-menu {
    text-align: right;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

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

body {
    font-family: Arial, Helvetica, sans-serif;

    background: var(--bg-light);

    color: var(--text-dark);

    font-size: 14px;

    line-height: 1.7;

    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;

    color: var(--primary-red);

    transition: 0.25s ease;
}

a:hover {
    color: var(--red-dark);
}

/* =========================================================
   HEADINGS
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-dark);

    font-weight: 700;

    line-height: 1.4;

    margin-bottom: 10px;
}

h1 {
    font-size: 25px;
}

h2 {
    font-size: 22px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}

/* =========================================================
   TEXT
========================================================= */

p {
    font-size: 14px;

    line-height: 1.6;

    margin-bottom: 12px;

    /* color: var(--text-muted); */
}

span {
    font-size: 14px;
}

small {
    font-size: 11px;

    color: var(--text-muted);
}

/* =========================================================
   LISTS
========================================================= */

ul,
ol {
    padding-left: 22px;
}

li {
    font-size: 14px;

    line-height: 1.8;
}

/* =========================================================
   TABLE
========================================================= */

table {
    width: 100%;
}

th {
    font-size: 14px;
    font-weight: 700;
}

td {
    font-size: 14px;
}

/* =========================================================
   FORM ELEMENTS
========================================================= */

input,
select,
textarea,
button {
    font-family: inherit;
    font-size: 14px;
}

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

@media (max-width: 991px) {
    h1 {
        font-size: 22px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 18px;
    }

    h4 {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 12px;
    }

    h1 {
        font-size: 20px;
    }

    h2 {
        font-size: 18px;
    }

    h3 {
        font-size: 16px;
    }

    h4 {
        font-size: 15px;
    }

    h5 {
        font-size: 14px;
    }

    h6 {
        font-size: 14px;
    }

    p,
    span,
    li,
    td {
        font-size: 12px;
    }
}

/* =========================================================
   CONTAINER
========================================================= */

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

/* =========================================================
   FAQ SECTION - GOVERNMENT STYLE
========================================================= */

.faq-section {
    background: var(--bg-light);
    position: relative;
}

.custom-faq {
    max-width: 100%;
    margin: auto;
}

/* =========================================================
   FAQ ITEM
========================================================= */

.custom-faq .accordion-item {
    background: #fff;

    border: 1px solid #d7dde5;

    border-radius: 6px;

    overflow: hidden;

    margin-bottom: 12px;

    box-shadow: none;

    transition: 0.25s ease;
}

.custom-faq .accordion-item:hover {
    border-color: #c5ced8;
}

/* =========================================================
   FAQ BUTTON
========================================================= */

.custom-faq .accordion-button {
    background: #fff;

    padding: 16px 50px 16px 16px;

    font-size: 14px;

    font-weight: 600;

    color: var(--text-dark);

    box-shadow: none !important;

    position: relative;

    line-height: 1.6;
}

.custom-faq .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.custom-faq .accordion-button:not(.collapsed) {
    background: #f8fafc;
    color: var(--primary-red);
}

/* Remove Bootstrap Icon */

.custom-faq .accordion-button::after {
    display: none;
}

/* =========================================================
   PLUS ICON
========================================================= */

.custom-faq .accordion-button::before {
    content: "+";

    position: absolute;

    right: 14px;
    top: 50%;

    transform: translateY(-50%);

    width: 24px;
    height: 24px;

    border: 1px solid #d7dde5;

    border-radius: 4px;

    background: #fff;

    color: var(--primary-red);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;
    font-weight: 700;

    transition: 0.25s ease;
}

/* =========================================================
   MINUS ICON
========================================================= */

.custom-faq .accordion-button:not(.collapsed)::before {
    content: "−";

    background: var(--primary-red);

    border-color: var(--primary-red);

    color: #fff;
}

/* =========================================================
   FAQ CONTENT
========================================================= */

.custom-faq .accordion-body {
    padding: 0 16px 16px;

    background: #fff;

    color: var(--text-muted);

    /* font-size: 15px; */

    line-height: 1.8;
}

/* =========================================================
   ACTIVE ITEM
========================================================= */

.custom-faq .accordion-item:has(.accordion-button:not(.collapsed)) {
    border-left: 3px solid var(--primary-yellow);
}

/* =========================================================
   FAQ LINKS
========================================================= */

.custom-faq .accordion-body a {
    color: var(--primary-red);
    font-weight: 600;
}

.custom-faq .accordion-body a:hover {
    color: var(--red-dark);
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {
    .custom-faq .accordion-button {
        padding: 14px 45px 14px 14px;
        font-size: 12px;
    }

    .custom-faq .accordion-body {
        padding: 0 14px 14px;
        font-size: 12px;
    }

    .custom-faq .accordion-button::before {
        width: 22px;
        height: 22px;
        font-size: 14px;
        right: 12px;
    }
}

/* =========================================================
   MESSAGE BOXES - GOVERNMENT STYLE
========================================================= */

.status-message-box {
    margin-bottom: 12px;

    padding: 10px 14px;

    border-radius: 4px;

    font-size: 12px;
    font-weight: 500;

    line-height: 1.6;
}

/* SUCCESS */
.status-message-box.success {
    background: #eaf8f1;
    color: #006c35;
    border: 1px solid rgba(0, 108, 53, 0.15);
    border-left: 3px solid #006c35;
}

/* WARNING */
.status-message-box.warning {
    background: #fff8e1;
    color: #c8a951;
    border: 1px solid rgba(200, 169, 81, 0.2);
    border-left: 3px solid #c8a951;
}

/* ERROR */
.status-message-box.error {
    background: #fff2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
    border-left: 3px solid #cc0000;
}

/* =========================================================
   OFFER CARD - GOVERNMENT STYLE
========================================================= */

.offer-card {
    position: relative;

    background: #ffffff;

    border: 1px solid #d7dde5;

    border-left: 4px solid var(--primary-yellow);

    border-radius: 6px;

    padding: 16px 18px;

    overflow: hidden;

    transition: 0.25s ease;
}

.offer-card:hover {
    border-color: #c8d0da;
}

/* GOVT LABEL */

.offer-card::before {
    content: "IMPORTANT";

    position: absolute;

    top: 12px;
    right: 12px;

    background: var(--primary-red);

    color: #ffffff;

    font-size: 10px;
    font-weight: 700;

    padding: 4px 8px;

    border-radius: 3px;

    letter-spacing: 0.4px;
}

/* CONTENT */

.offer-content p {
    margin: 0;

    padding-right: 70px;

    color: var(--text-dark);

    font-size: 13px;

    line-height: 1.7;

    font-weight: 600;
}

/* OPTIONAL HIGHLIGHT */

.offer-content strong {
    color: var(--primary-red);
    font-weight: 700;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {
    .offer-card {
        padding: 14px;
    }

    .offer-content p {
        font-size: 12px;
        padding-right: 0;
        padding-top: 18px;
    }

    .offer-card::before {
        top: 10px;
        right: 10px;

        font-size: 9px;

        padding: 3px 7px;
    }
}
