/* ================= RESET & BASE ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, sans-serif;
}

body {
    background-color: #0b0b0b;
    color: #ffffff;
    direction: rtl;
}
html[dir="rtl"] h2{
    line-height: 2.2;
}
html[dir="rtl"] h3{
   line-height: 2.2; 
}

html[dir="ltr"] body {
  text-align: left;
}

html[dir="rtl"] body {
  text-align: right;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ================= HEADER ================= */
.header {
    padding: 20px 0;
}

.logo {
    width: 25%;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border-radius: 50px;
    background: linear-gradient(135deg,
            rgb(198, 155, 68),
            /* Rich Gold */
            rgb(241, 209, 115)
            /* Light Gold */
        );
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 6px 18px rgba(179, 139, 89, 0.35);
    transition: all 0.35s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #9c7446, #b38b59);
    box-shadow: 0 12px 30px rgba(179, 139, 89, 0.55);
}

.wa-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-icon i {
    /* color: #25D366; */
    font-size: 18px;
}

/* ================= HERO ================= */
.hero {
    padding: 60px 0;
}

/* .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
} */

.welcome {
    color: #fff;
    margin-bottom: 10px;
}

.hero-text h1 {
    font-size: 42px;
    line-height: 1.4;
    background: linear-gradient(135deg,
            rgb(198, 155, 68),
            /* Rich Gold */
            rgb(241, 209, 115)
            /* Light Gold */
        );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.hero-text h1 span {
    background: linear-gradient(135deg,
            rgb(198, 155, 68),
            /* Rich Gold */
            rgb(241, 209, 115)
            /* Light Gold */
        );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.description {
    color: #ccc;
    /* max-width: 500px; */
    margin-bottom: 30px;
}

/* Features */
.features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.feature {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: #0f1b2e;
    border-radius: 14px;
    font-size: 14px;
    transition: 0.3s ease;
}

.feature:hover {
    background: #122645;
    transform: translateY(-2px);
}

.feature-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(179, 139, 89, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    color: #d9b459;
    font-size: 14px;
}

/* CTA Button */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 30px;
    border-radius: 50px;
    background: linear-gradient(135deg,
            rgb(198, 155, 68),
            /* Rich Gold */
            rgb(241, 209, 115)
            /* Light Gold */
        );
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(179, 139, 89, 0.35);
    transition: 0.35s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(179, 139, 89, 0.5);
}

.btn-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-btn:hover .btn-icon {
    background: #ffffff;
}

.cta-btn:hover i {
    color: #b38b59;
}

/* ================= HERO IMAGE ================= */
.hero-image {
    display: flex;
    justify-content: center;
}

.lawyer-wrapper {
    position: relative;
    max-width: 460px;
    animation: fadeUp 1.2s ease forwards;
}

.lawyer-img {
    width: 100%;
    z-index: 2;
    position: relative;
    animation: floatImage 6s ease-in-out infinite;
}

.base-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60px;
    background: radial-gradient(ellipse, rgba(179, 139, 89, 0.35), transparent 70%);
    z-index: 1;
}

/* Contact Card */
.contact-card {
    position: absolute;
    top: 0;
    right: -30px;
    width: 190px;
    background: rgba(14, 34, 64, 0.45);
    backdrop-filter: blur(14px);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.55);
    overflow: hidden;
    z-index: 5;
    animation: floatCard 5s ease-in-out infinite;
}

.card-image {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
}

.card-image img {
    width: 64%;
}

.card-content {
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b38b59, #d4a76a);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================= WHY US ================= */
.why-us {
    padding: 80px 0;
}

.why-content h2 {
    background: linear-gradient(135deg,
            rgb(198, 155, 68),
            /* Rich Gold */
            rgb(241, 209, 115)
            /* Light Gold */
        );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    color: #fff;
    margin-bottom: 10px;
    display: inline-block;
}

.section-desc {
    color: #ccc;
    /* max-width: 480px; */
    margin-bottom: 40px;
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.why-card {
    background: rgba(14, 34, 64, 0.45);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.45);
}

.why-card i {
    color: #d9b459;
    font-size: 22px;
    margin-bottom: 12px;
}

/* Visual */
.visual-wrapper {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 22px;
}

.visual-image {
    width: 260px;
    height: 420px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
}

.visual-image.left {
    transform: translateY(12px);
}

.visual-image.right {
    transform: translateY(-12px);
}

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

.visual-counter {
    position: absolute;
    top: 50%;
    left: 57%;
    transform: translate(-50%, -50%);
    background: rgba(14, 34, 64, 0.75);
    backdrop-filter: blur(18px);
    border-radius: 22px;
    padding: 22px 28px;
    text-align: center;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.6);
}

.counter-value {
    font-size: 38px;
    font-weight: 700;
}

.counter-text {
    font-size: 14px;
    color: #b38b59;
}

/* ================= WHY US CTA BUTTON ================= */
.why-cta-btn {
    margin-top: 40px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 36px;
    border-radius: 50px;

    background: linear-gradient(135deg,
            rgb(198, 155, 68),
            /* Rich Gold */
            rgb(241, 209, 115)
            /* Light Gold */
        );

    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;

    box-shadow: 0 10px 28px rgba(179, 139, 89, 0.45);
    transition: all 0.35s ease;
}

/* Icon circle */
.why-cta-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

.why-cta-icon i {
    font-size: 16px;
}

/* Hover effects */
.why-cta-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #9c7446, #b38b59);
    box-shadow: 0 14px 34px rgba(179, 139, 89, 0.6);
}

.why-cta-btn:hover .why-cta-icon {
    background: #ffffff;
}

.why-cta-btn:hover .why-cta-icon i {
    color: #b38b59;
}

/* ================= STATS SECTION ================= */
.stats-section {
    position: relative;
    padding: 120px 0 100px;

    background-image: url("../images/lawyer-back.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* Rounded edges */
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;

    /* Overlap with upper section */
    margin-top: -80px;

    overflow: hidden;
    z-index: 3;
}

/* Dark overlay (clipped to radius) */
.stats-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    z-index: 0;
}

/* Ensure content above overlay */
.stats-section .container {
    position: relative;
    z-index: 1;
}

/* Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Glass card */
.stat-card {
    background: rgba(14, 34, 64, 0.55);
    backdrop-filter: blur(16px);
    --webkit-backdrop-filter: blur(16px);
    border-radius: 18px;
    padding: 30px 22px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);

    color: #ffffff;

    /* PERFECT CENTERING */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    min-height: 140px;
    transition: all 0.35s ease;
}


/* Number */
.stat-card h3 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 700;
}

/* Text */
.stat-card p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 90%;
}

/* Hover effect */
.stat-card:hover {
    transform: translateY(-6px);
    background: rgba(14, 34, 64, 0.7);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

/* ================= SERVICES SECTION ================= */
.services-section {
    position: relative;
    padding: 100px 0;
    background: radial-gradient(circle at top, #0f1633, #050510 70%);
    /* overflow: hidden; */
}

/* Header */
.services-header {
    /* max-width: 620px; */
    margin-bottom: 70px;
}

.services-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    margin-bottom: 12px;
}

.services-header h2 {
    background: linear-gradient(135deg,
            rgb(198, 155, 68),
            /* Rich Gold */
            rgb(241, 209, 115)
            /* Light Gold */
        );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-header h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.services-header p {
    color: #cfcfcf;
    line-height: 1.7;
    font-size: 16px;
}

/* Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

/* Card */
.service-card {
    position: relative;
    background: rgba(14, 34, 64, 0.45);
    backdrop-filter: blur(16px);
    --webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 36px 30px 34px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
    transition: all 0.35s ease;
    flex-direction: row; /* default for LTR */
}

.service-card h3 {
    background: linear-gradient(135deg,
            rgb(198, 155, 68),
            /* Rich Gold */
            rgb(241, 209, 115)
            /* Light Gold */
        );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hover */
.service-card:hover {
    transform: translateY(-6px);
    background: rgba(14, 34, 64, 0.7);
}

/* Number badge */
.service-number {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #000000;
    color: #ffffff;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon (top-right) */
.service-icon {

    width: 80px;
    height: 80px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(179, 139, 89, 0.18);
    backdrop-filter: blur(10px);
    --webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(179, 139, 89, 0.35);
    color: #d9b459;
    font-size: 40px;
}

/* Title */
.service-card h3 {
    margin-top: 20px;
    margin-bottom: 14px;
    font-size: 18px;
    color: #d4a76a;
}

/* Text */
.service-card p {
    font-size: 14px;
    color: #d0d0d0;
    line-height: 1.7;
}

/* ================= PROCEDURE SECTION ================= */
.procedure-section {
    position: relative;
    padding: 80px 0;
    background: #000000;
    overflow: hidden;
}

/* Header */
.procedure-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
    gap: 60px;
    flex-direction: row-reverse;
}

.procedure-text {
    max-width: 520px;
    color: #d6d6d6;
    font-size: 16px;
    line-height: 1.7;
}

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

.procedure-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    margin-bottom: 10px;
}

.procedure-title h2 {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg,
            rgb(198, 155, 68),
            /* Rich Gold */
            rgb(241, 209, 115)
            /* Light Gold */
        );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.procedure-title h2 span {
    color: #d4a76a;
}

/* Cards wrapper */
.procedure-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Card */
.procedure-card {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
}

/* Image */
.procedure-card img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

/* Glass overlay */
.procedure-glass {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;

    background: rgba(14, 34, 64, 0.65);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-radius: 22px;
    padding: 32px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);

    color: #ffffff;
}

.procedure-glass h3 {
    background: linear-gradient(135deg,
            rgb(198, 155, 68),
            /* Rich Gold */
            rgb(241, 209, 115)
            /* Light Gold */
        );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Icon */
.procedure-icon {
    width: 80px;
    height: 80px;
    border-radius: 100%;

    background: rgba(212, 167, 106, 0.2);
    border: 1px solid rgba(212, 167, 106, 0.45);

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

    color: #d9b459;
    font-size: 40px;
    margin-bottom: 18px;
}

/* Title */
.procedure-glass h3 {
    font-size: 22px;
    margin-bottom: 14px;
}

/* Text */
.procedure-glass p {
    font-size: 15px;
    line-height: 1.7;
    color: #dcdcdc;
}

/* ================= PROCESS SECTION ================= */
.process-section {
    position: relative;
    padding: 80px 0;
    background: radial-gradient(circle at top, #0f1633, #050510 70%);
    overflow: hidden;
}

/* Header */
.process-header {
    /* max-width: 620px; */
    margin-bottom: 70px;
}

.process-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    margin-bottom: 12px;
}

.process-header h2 {
    font-size: 40px;
    line-height: 1.4;
    margin-bottom: 16px;
    background: linear-gradient(135deg,
            rgb(198, 155, 68),
            /* Rich Gold */
            rgb(241, 209, 115)
            /* Light Gold */
        );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-header h2 span {
    background: linear-gradient(135deg,
            rgb(198, 155, 68),
            /* Rich Gold */
            rgb(241, 209, 115)
            /* Light Gold */
        );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-desc {
    font-size: 16px;
    color: #d0d0d0;
    line-height: 1.7;
}

/* Cards Grid */
.process-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}

/* Card */
.process-card {
    background: rgba(14, 34, 64, 0.55);
    backdrop-filter: blur(16px);
    --webkit-backdrop-filter: blur(16px);
    border-radius: 18px;
    padding: 26px 22px 30px;
    text-align: center;

    border: 1px solid rgba(212, 167, 106, 0.25);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.45);

    transition: all 0.35s ease;
}

/* Highlighted middle card */
.process-card.active {
    background: rgba(14, 34, 64, 0.75);
    transform: translateY(-6px);
}

/* Icon */
.process-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 18px;

    border-radius: 12px;
    background: rgba(212, 167, 106, 0.15);
    border: 1px solid rgba(212, 167, 106, 0.4);

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

    color: #d9b459;
    font-size: 40px;
}

/* Title */
.process-card h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffff;
}

/* Text */
.process-card p {
    font-size: 14px;
    color: #cfcfcf;
    line-height: 1.6;
}

/* Hover */
.process-card:hover {
    transform: translateY(-6px);
    background: rgba(14, 34, 64, 0.7);
}

/* ================= REVIEWS SECTION ================= */
.reviews-section {
    padding: 80px 0;
    background: radial-gradient(circle at top, #141414, #050505 70%);
    position: relative;
    /* padding-bottom: 120px; */
}

/* Header */
.reviews-tag {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    margin-bottom: 10px;
}

.reviews-header h2 {
    background: linear-gradient(135deg,
            rgb(198, 155, 68),
            /* Rich Gold */
            rgb(241, 209, 115)
            /* Light Gold */
        );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 38px;
}

.reviews-header h2 span {
    color: #d4a76a;
}

/* Card */
.review-card {
    max-width: 520px;
    margin: auto;

    background: rgba(14, 34, 64, 0.6);
    backdrop-filter: blur(18px);
    border-radius: 22px;

    padding: 40px 30px;
    text-align: center;

    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.55);

    color: #ffffff;
}

/* Image */
.review-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 2px solid #d4a76a;
}

/* Name */
.review-card h5 {
    margin-bottom: 6px;
}

/* Stars */
.stars {
    color: #d4a76a;
    font-size: 18px;
    margin-bottom: 14px;
}

/* Text */
.review-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #dcdcdc;
}

/* ================= FAQ + FORM SECTION ================= */
.faq-contact-section {
    padding: 140px 0;
    background: radial-gradient(circle at top, #141433, #060616 70%);
    color: #fff;
    direction: rtl;
}

/* FAQ */
.faq-tag {
    color: #fff;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.faq-title {
    font-size: 40px;
    margin: 15px 0;
    background: linear-gradient(135deg,
            rgb(198, 155, 68),
            /* Rich Gold */
            rgb(241, 209, 115)
            /* Light Gold */
        );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-desc {
    color: #ccc;
    /* max-width: 520px; */
    margin-bottom: 30px;
}

/* Accordion */
.faq-accordion .accordion-item {
    background: #0f1b2e;
    border: none;
    border-radius: 30px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background: transparent;
    color: #fff;
    font-weight: 500;
}

.faq-accordion .accordion-button::after {
    filter: invert(1);
}

.faq-accordion .accordion-body {
    color: #ccc;
}

/* FORM */
.contact-card-form {
    background: linear-gradient(180deg, #0e2240, #0a1a30);
    border-radius: 30px;
    padding: 40px;
}

.contact-card-form .form-label {
    text-align: right;
    display: block;
}

.contact-card-form .form-control {
    direction: rtl;
    text-align: right;
}

.contact-card-form h3 {
    background: linear-gradient(135deg,
            rgb(198, 155, 68),
            /* Rich Gold */
            rgb(241, 209, 115)
            /* Light Gold */
        );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-card-form p {
    color: #ccc;
    margin-bottom: 30px;
}

.form-control {
    border-radius: 12px;
    padding: 12px;
}

.submit-btn {
    background: linear-gradient(135deg, rgb(198, 155, 68),
            /* Rich Gold */
            rgb(241, 209, 115)
            /* Light Gold */
        );
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    padding: 14px;
}

.submit-btn:hover {
    opacity: 0.9;
}

.form-note {
    display: block;
    margin-top: 15px;
    font-size: 12px;
    color: #ccc;
    text-align: center;
}

.form-note span {
    color: #d9b459;
}

/* Placeholder alignment */
.contact-card-form .form-control::placeholder {
    text-align: right;
    direction: rtl;
}

/* Validation messages */
.contact-card-form .invalid-feedback {
    text-align: right;
    direction: rtl;
}

/* Accordion RTL */
.faq-accordion .accordion-button {
    direction: rtl;
    text-align: right;
    padding-right: 20px;
    padding-left: 40px;
}

/* Move accordion arrow to the LEFT (RTL correct) */
.faq-accordion .accordion-button::after {
    margin-left: 0;
    margin-right: auto;
}

/* Phone input (numbers stay LTR, text RTL) */
#phoneInput {
    direction: ltr;
    text-align: right;
}

/* ================= FOOTER ================= */
.site-footer {
    background: radial-gradient(circle at top, #141414, #050505 70%);
    padding: 80px 0 30px;
    color: #ffffff;
    direction: rtl;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    /* Overlap with upper section */
    /* margin-top: -80px; */

    /* Important */
    position: relative;
    z-index: 5;
    overflow: hidden;
    direction: rtl;
}

.site-footer .col-lg-4 {
    text-align: right;
}

/* Logo */
.footer-logo {
    /* height: 55px; */
    width: 140px;
    margin-bottom: 10px;
}

/* Text */
.footer-desc {
    color: #cfcfcf;
    font-size: 14px;
    line-height: 1.7;
    /* max-width: 320px; */
    width: 100%;
}

/* Titles */
.footer-title {
    font-size: 16px;
    margin-bottom: 20px;
    background: linear-gradient(135deg,
            rgb(198, 155, 68),
            /* Rich Gold */
            rgb(241, 209, 115)
            /* Light Gold */
        );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: 100%;
    text-align: right;
}

/* Contact list */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.footer-list li {
    display: flex;
    align-items: right;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #e0e0e0;
}

.footer-list i {
    color: #d9b459;
    font-size: 15px;
}

/* Bottom */
.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #bfbfbf;
}




/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
    .process-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .process-cards {
        grid-template-columns: 1fr;
    }

    .process-header h2 {
        font-size: 32px;
    }
    
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .procedure-header {
        flex-direction: column;
        text-align: center;
    }

    .procedure-title {
        text-align: center;
    }
    .procedure-glass{
        bottom: -30px !important;
        right: 5px !important;
        left: 0px !important;
    }
}
 

@media (max-width: 768px) {
    .procedure-cards {
        grid-template-columns: 1fr;
    }

    .procedure-card img {
        height: 420px;
    }
}


/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-header h2 {
        font-size: 32px;
    }
}


/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}


/* Mobile center */
@media (max-width: 900px) {
    .why-cta-btn {
        justify-content: center;
    }
}


/* ================= ANIMATIONS ================= */
@keyframes floatImage {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes floatCard {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@media (max-width: 768px) {
    .stats-section {
        margin-top: -40px;
        border-radius: 30px;
    }

    .stats-section::before {
        border-radius: 30px;
    }
}

@media (max-width: 900px) {

    .hero-grid,
    .why-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .features {
        justify-content: center;
    }

    .why-cards {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .site-footer {
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
    }

    .site-footer .col-lg-4 {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .footer-list li {
        /* justify-content: center; */
        margin-top: 10px;
    }

    .footer-desc {
        /* text-align: left; */
        margin: 20px 0;
    }

    .footer-title {
        /* text-align: center; */
        margin-bottom: 0 !important;
    }
    .footer-col{
        width: 100%;
    }

    .logo {
        width: 55%;
    }
    .wa-text{
        font-size: 10px;
    }
    .contact-card{
        right: 30px;
    } 
    .footer-logo-div{
        /* justify-content: center !important; */
    }
    .procedure-header{
        flex-direction: column-reverse !important;
    }
    html[dir="ltr"] .procedure-badge{
        justify-content: center !important;
    }
    html[dir="rtl"] .procedure-title h2{
        text-align: right !important;
    }
    .header-btns {
        justify-content: center !important;
    }
    html[dir="ltr"] .procedure-text{
        text-align: center !important;
    }
    .faq-accordion .accordion-button{
        font-size: 12px;
    }
}

html[dir="ltr"]  .row {
  flex-direction: row-reverse;
}
.why-us .row {
  flex-direction: row !important;
}
/* LTR: icon on the left */
html[dir="ltr"] .service-card {
    direction: ltr;
}

/* RTL: icon on the right */
html[dir="rtl"] .service-card {
    flex-direction: row-reverse;
}
/* English (LTR): icon left */
html[dir="ltr"] .procedure-badge {
    flex-direction: row;    
    direction: ltr;
}

/* Arabic (RTL): icon right */
html[dir="rtl"] .procedure-badge {
    /* flex-direction: row-reverse;  */
    direction: rtl;   
}
html[dir="ltr"] .faq-accordion .accordion-button{
    direction: ltr;
}
html[dir="ltr"] .faq-accordion .accordion-button::after{
    margin-left: auto;
    margin-right: 0;
}
html[dir="ltr"] .contact-card-form .form-label{
    text-align: left;
}
html[dir="ltr"] .site-footer .col-lg-4{
    text-align: left;
}
html[dir="ltr"] .footer-list li{
    direction: ltr;
}
html[dir="ltr"] .footer-title{
    text-align: left;
}

html[dir="ltr"] .features{
    direction: ltr;
}
html[dir="ltr"] .procedure-header{
    flex-direction: row;
}
html[dir="ltr"] .reviews-header{
    text-align: center;
}
.hero-grid{
    gap: 50px 0;
}
html[dir="rtl"] .procedure-text{
text-align: right;
}
html[dir="ltr"] .procedure-text{
    text-align: left;
}
.footer-logo-div {
    justify-content: flex-start;
}

html[dir="ltr"] .footer-logo-div {
    justify-content: flex-end;
}
html[dir="ltr"] .procedure-glass{
    direction: ltr;
}
html[dir="rtl"] .header-btns{
    justify-content: end;
}
html[dir="rtl"] .services-tag {
    flex-direction: row-reverse;
}
html[dir="ltr"] .faq-accordion .accordion-button{
    text-align: left;
    padding-left: 20px;
}
html[dir="ltr"] .contact-card-form .form-control{
    text-align: left;
    direction: ltr;
}
html[dir="ltr"] #phoneInput {
    direction: ltr;
    text-align: left;
}
html[dir="rtl"] .phone-li{
    direction: ltr;
}
html[dir="rtl"] .reviews-header h2{
    max-width: 800px;
}
.dropdown-item:focus, .dropdown-item:hover{
    background-color: #0a1a30 !important;
}
.whatsapp-icon{
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #25D366;    
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:0px 2px 6px 8px rgb(0 158 53 / 36%);
    z-index: 50;
    transition: transform 0.3s ease;
}

/* PAGINATION */
.active>.page-link, .page-link.active {
    z-index: 3;
    color: var(--bs-pagination-active-color);
    background-color: rgb(198, 155, 68);
    border-color: rgb(227, 187, 106);
}
.page-link:hover{
        color: var(--bs-pagination-active-color);
    background-color: rgb(198, 155, 68);
    border-color: rgb(227, 187, 106);
}
.page-link {
    background-color: #0a1a30;
    color: rgb(227, 187, 106);
    border: 0px;
}