/* =========================================================
   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{

    /* =========================
       SAUDI GOVERNMENT COLORS
    ========================= */

    --primary-red:#006C35;      /* Saudi Green */
    --primary-yellow:#C8A951;   /* Gold Accent */
    --primary-white:#FFFFFF;

    --red-light:#0A7A44;
    --red-dark:#004B25;

    --yellow-light:#D8B96A;
    --yellow-dark:#A88635;

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

    --bg-primary:#FFFFFF;
    --bg-light:#F7F8F6;
    --bg-dark:#004B25;

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

    --text-dark:#1F2937;
    --text-light:#FFFFFF;
    --text-muted:#6B7280;

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

    --border-color:#DCE3DD;

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

    --success:#006C35;
    --success-light:#EAF7F0;

    --warning:#C8A951;
    --warning-light:#FFF9EA;

    --danger:#B42318;
    --danger-light:#FEF3F2;

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

    --shadow-sm:0 4px 18px rgba(0,108,53,.08);
    --shadow-md:0 10px 30px rgba(0,108,53,.12);

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

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

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

    --transition:all .3s ease;

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

    --gradient-primary:
        linear-gradient(
            135deg,
            #006C35,
            #0A7A44
        );

    --gradient-yellow:
        linear-gradient(
            135deg,
            #C8A951,
            #D8B96A
        );

    --gradient-vietnam:
        linear-gradient(
            135deg,
            #006C35,
            #C8A951
        );

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

    --footer-bg:#004B25;
}

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

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: .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: 28px;
}

h2 {
	font-size: 24px;
}

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: 18px;
}

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: 24px;
	}

	h2 {
		font-size: 22px;
	}

	h3 {
		font-size: 18px;
	}

	h4 {
		font-size: 16px;
	}
}

@media(max-width:768px) {

	body {
		font-size: 12px;
	}

	h1 {
		font-size: 22px;
	}

	h2 {
		font-size: 20px;
	}

	h3 {
		font-size: 17px;
	}

	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;
}

/* =========================================================
   BUTTON SYSTEM
========================================================= */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    height:44px;
    padding:0 20px;

    border-radius:4px;

    font-weight:600;
    font-size:13px;

    border:none;
    cursor:pointer;

    transition:.25s ease;
}

.btn-primary{
    background:var(--primary-red);
    color:#fff;
}

.btn-primary:hover{
    background:var(--red-dark);
    color:#fff;
}

.form-btn{
    width:100%;
}

.btn-outline{
    border:1px solid var(--primary-red);
    background:#fff;
    color:var(--primary-red);
}

.btn-outline:hover{
    background:var(--primary-red);
    color:#fff;
}

.btn-dark{
    background:var(--bg-dark);
    color:#fff;
}

.btn-dark:hover{
    background:var(--red-dark);
    color:#fff;
}

.btn-block{
    width:100%;
}

/* =========================================================
   CARD SYSTEM
========================================================= */

.card{
    background:#fff;

    border:1px solid #d7dde5;

    border-radius:6px;

    padding:20px;

    transition:.25s ease;

    overflow:hidden;
}

.card:hover{
    border-color:#c5ced8;
}

.card-header{
    font-size:16px;
    font-weight:700;

    margin-bottom:10px;

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

.card-header::after{
    content:'';

    display:block;

    width:40px;
    height:2px;

    margin-top:8px;

    background:var(--primary-yellow);
}

.card-body{
    color:var(--text-muted);

    line-height:1.7;

    font-size:13px;
}

/* =========================================================
   CARD ICON
========================================================= */

.card-icon{
    width:50px;
    height:50px;

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

    border-radius:4px;

    background:rgba(0,108,53,.08);

    color:var(--primary-red);

    font-size:20px;

    margin-bottom:12px;
}

/* =========================================================
   FEATURE CARD
========================================================= */

.feature-card{
    text-align:center;
    height:100%;
}

.feature-card:hover .card-icon{
    background:var(--primary-red);
    color:#fff;
}

/* =========================================================
   VISA CARD
========================================================= */

.visa-card{
    position:relative;
}

.visa-card::before{
    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:3px;

    background:var(--primary-yellow);
}

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

@media(max-width:768px){

    .card{
        padding:16px;
    }

    .card-header{
        font-size:15px;
    }

    .card-body{
        font-size:12px;
    }

    .card-icon{
        width:44px;
        height:44px;
        font-size:18px;
    }

    .btn{
        width:100%;
    }
}

/* =========================================================
   BADGES
========================================================= */

.badge{
    display:inline-flex;
    align-items:center;
    gap:5px;

    padding:4px 10px;

    border-radius:4px;

    font-size:11px;
    font-weight:600;

    line-height:1.4;
}

/* PRIMARY */

.badge-primary{
    background:rgba(0,108,53,.08);
    border:1px solid rgba(0,108,53,.15);
    color:var(--primary-red);
}

/* SUCCESS */

.badge-success{
    background:#EAF8F1;
    border:1px solid rgba(15,138,95,.15);
    color:var(--success);
}

/* DANGER */

.badge-danger{
    background:#FFF2F2;
    border:1px solid rgba(204,0,0,.12);
    color:#CC0000;
}

/* WARNING */

.badge-warning{
    background:#FFF8E1;
    border:1px solid rgba(200,169,81,.18);
    color:var(--yellow-dark);
}

/* LIGHT */

.badge-light{
    background:#F8FAFC;
    border:1px solid #D7DDE5;
    color:var(--text-dark);
}

/* GOVT FEATURED */

.badge-gradient{
    background:var(--primary-red);
    color:#FFFFFF;
    border:1px solid var(--primary-red);
}

/* =========================================================
   UTILITIES
========================================================= */

/* TEXT ALIGN */

.text-center{
    text-align:center;
}

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

.text-right{
    text-align:right;
}

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

.text-primary{
    color:var(--primary-red)!important;
}

.text-warning{
    color:var(--primary-yellow)!important;
}

.text-success{
    color:var(--success)!important;
}

.text-danger{
    color:#CC0000!important;
}

.text-white{
    color:#FFFFFF!important;
}

.text-muted{
    color:var(--text-muted)!important;
}

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

.bg-primary{
    background:var(--primary-red)!important;
}

.bg-warning{
    background:var(--primary-yellow)!important;
}

.bg-success{
    background:var(--success)!important;
}

.bg-danger{
    background:#CC0000!important;
}

.bg-light{
    background:var(--bg-light)!important;
}

.bg-white{
    background:#FFFFFF!important;
}

/* =========================================================
   MARGIN TOP
========================================================= */

.mt-10{margin-top:10px;}
.mt-20{margin-top:20px;}
.mt-30{margin-top:30px;}
.mt-40{margin-top:40px;}
.mt-50{margin-top:50px;}

/* =========================================================
   MARGIN BOTTOM
========================================================= */

.mb-10{margin-bottom:10px;}
.mb-20{margin-bottom:20px;}
.mb-30{margin-bottom:30px;}
.mb-40{margin-bottom:40px;}
.mb-50{margin-bottom:50px;}

/* =========================================================
   PADDING
========================================================= */

.pt-20{padding-top:20px;}
.pt-40{padding-top:40px;}

.pb-20{padding-bottom:20px;}
.pb-40{padding-bottom:40px;}

/* =========================================================
   WIDTH
========================================================= */

.w-100{
    width:100%;
}

/* =========================================================
   DISPLAY
========================================================= */

.d-flex{
    display:flex;
}

.align-center{
    align-items:center;
}

.justify-center{
    justify-content:center;
}

.justify-between{
    justify-content:space-between;
}

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

.radius-sm{
    border-radius:4px;
}

.radius-md{
    border-radius:6px;
}

.radius-lg{
    border-radius:8px;
}

/* =========================================================
   SHADOW
========================================================= */

.shadow-sm{
    box-shadow:none;
}

.shadow-md{
    box-shadow:0 4px 12px rgba(0,0,0,.06);
}

/* =========================================================
   GOVERNMENT HELPERS
========================================================= */

.border{
    border:1px solid #D7DDE5;
}

.border-top{
    border-top:1px solid #D7DDE5;
}

.border-bottom{
    border-bottom:1px solid #D7DDE5;
}

.gov-highlight{
    border-left:3px solid var(--primary-yellow);
    padding-left:12px;
}

.gov-section{
    background:#FFFFFF;
    border:1px solid #D7DDE5;
    border-radius:6px;
}

/* =========================================================
   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:.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:13px;

    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:.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:13px;

    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:var(--primary-red);

    border:1px solid rgba(0,108,53,.15);

    border-left:3px solid var(--primary-red);
}

/* WARNING */

.status-message-box.warning{
    background:#FFF8E1;

    color:var(--yellow-dark);

    border:1px solid rgba(200,169,81,.20);

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

/* 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:.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:.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;
    }
}