/* =========================================
   1. Header & Global Styles (from header.php)
   ========================================= */
:root {
    --idafa-dark-navy: #041521;
    --idafa-teal: #00BFA5;
    --idafa-blue: #0097A7;
    --idafa-accent: #4DD0E1;
    --idafa-gray: #6c757d;
    --idafa-white: #ffffff;
    --idafa-light-bg: #f8f9fa;
}

body {
    font-family: 'IBM Plex Sans Arabic', 'Tajawal', 'Cairo', sans-serif !important;
    background-color: var(--idafa-white);
    color: var(--idafa-dark-navy);
    line-height: 1.7;
    direction: rtl;
    text-align: right;
    padding-top: 0 !important;
    position: relative;
}

body:not(.home):not(.single):not(.page):not(.archive):not(.search) {
    padding-top: 90px !important;
}

body>* {
    position: relative;
    z-index: 1;
}

.navbar {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px 0;
    z-index: 1000;
}

/* Make navbar solid and visible on blog, archive, single, and policy pages */
body.archive .navbar,
body.blog .navbar,
body.single .navbar,
body.page .navbar,
body.search .navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 2px solid rgba(0, 191, 165, 0.2);
    box-shadow: 0 12px 48px rgba(4, 21, 33, 0.15);
}

body.archive .navbar .navbar-nav .nav-link,
body.blog .navbar .navbar-nav .nav-link,
body.single .navbar .navbar-nav .nav-link,
body.page .navbar .navbar-nav .nav-link,
body.search .navbar .navbar-nav .nav-link {
    color: var(--idafa-dark-navy) !important;
    text-shadow: none;
}

body.archive .navbar .navbar-brand img,
body.blog .navbar .navbar-brand img,
body.single .navbar .navbar-brand img,
body.page .navbar .navbar-brand img,
body.search .navbar .navbar-brand img {
    filter: drop-shadow(0 2px 8px rgba(0, 191, 165, 0.2));
}

body.archive .navbar .navbar-toggler,
body.blog .navbar .navbar-toggler,
body.single .navbar .navbar-toggler,
body.page .navbar .navbar-toggler,
body.search .navbar .navbar-toggler {
    filter: none;
    border-color: rgba(0, 0, 0, 0.1);
}

body.archive .navbar .navbar-toggler-icon,
body.blog .navbar .navbar-toggler-icon,
body.single .navbar .navbar-toggler-icon,
body.page .navbar .navbar-toggler-icon,
body.search .navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(4, 21, 33, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

body.archive .navbar .nav-separator,
body.blog .navbar .nav-separator,
body.single .navbar .nav-separator,
body.page .navbar .nav-separator,
body.search .navbar .nav-separator {
    color: rgba(4, 21, 33, 0.3);
}

.navbar .navbar-toggler {
    filter: brightness(0) invert(1);
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 2px solid rgba(0, 191, 165, 0.2);
    box-shadow: 0 12px 48px rgba(4, 21, 33, 0.15);
    padding: 12px 0;
}

/* Ensure scrolled state is also visible on blog/policy pages */
body.archive .navbar.scrolled,
body.blog .navbar.scrolled,
body.single .navbar.scrolled,
body.page .navbar.scrolled,
body.search .navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
}

.navbar.scrolled .navbar-toggler {
    filter: none;
    border-color: rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(4, 21, 33, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-brand {
    position: relative;
    padding: 5px 0;
}

.navbar-brand::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--idafa-teal), var(--idafa-blue), var(--idafa-teal));
    background-size: 200% 100%;
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: gradientShift 3s ease infinite;
}

.navbar-brand:hover::after {
    opacity: 1;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.navbar-brand img {
    height: 65px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.navbar.scrolled .navbar-brand img {
    filter: drop-shadow(0 2px 8px rgba(0, 191, 165, 0.2));
}

.navbar-brand:hover img {
    transform: scale(1.08) rotate(2deg);
}

.navbar:not(.scrolled) .navbar-brand:hover img {
    filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(255, 255, 255, 0.5));
}

.navbar.scrolled .navbar-brand:hover img {
    filter: drop-shadow(0 4px 12px rgba(0, 191, 165, 0.4));
}

.navbar-nav {
    margin: 0 auto;
    gap: 5px;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 700;
    padding: 12px 24px !important;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-size: 1rem;
    letter-spacing: -0.3px;
    overflow: hidden;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .navbar-nav .nav-link {
    color: var(--idafa-dark-navy) !important;
    text-shadow: none;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 191, 165, 0.15), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    right: 24px;
    left: 24px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--idafa-teal), transparent);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 1) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.navbar.scrolled .navbar-nav .nav-link:hover {
    color: var(--idafa-teal) !important;
    box-shadow: 0 6px 20px rgba(0, 191, 165, 0.2);
    background: rgba(0, 191, 165, 0.08);
}

.navbar-nav .nav-link:hover::before {
    width: 200px;
    height: 200px;
}

.navbar-nav .nav-link:hover::after {
    transform: scaleX(1);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.navbar.scrolled .navbar-nav .nav-link:hover::after {
    background: linear-gradient(90deg, transparent, var(--idafa-teal), transparent);
}

.nav-separator {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    padding: 0 8px;
    display: none;
}

.navbar.scrolled .nav-separator {
    color: rgba(4, 21, 33, 0.3);
}

@media (min-width: 992px) {
    .nav-separator {
        display: block;
    }
}

.fs-cta-btn {
    background: linear-gradient(135deg, var(--idafa-teal) 0%, var(--idafa-blue) 50%, var(--idafa-teal) 100%);
    background-size: 200% 100%;
    color: #fff !important;
    border: none;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 35px;
    box-shadow: 0 8px 24px rgba(0, 191, 165, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.fs-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.fs-cta-btn:hover::before {
    opacity: 1;
}

.fs-cta-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 36px rgba(0, 191, 165, 0.5);
}

@media (max-width: 991px) {
    body:not(.home) {
        padding-top: 80px;
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(20px);
        border-radius: 20px;
        padding: 25px;
        margin-top: 20px;
        box-shadow: 0 20px 60px rgba(4, 21, 33, 0.15);
        border: 1px solid rgba(0, 191, 165, 0.1);
    }

    .navbar:not(.scrolled) .navbar-collapse {
        background: rgba(255, 255, 255, 0.15) !important;
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    /* On blog/policy pages, mobile menu should be solid */
    body.archive .navbar:not(.scrolled) .navbar-collapse,
    body.blog .navbar:not(.scrolled) .navbar-collapse,
    body.single .navbar:not(.scrolled) .navbar-collapse,
    body.page .navbar:not(.scrolled) .navbar-collapse,
    body.search .navbar:not(.scrolled) .navbar-collapse {
        background: rgba(255, 255, 255, 0.95) !important;
        border: 1px solid rgba(0, 191, 165, 0.1);
    }

    .navbar-nav .nav-link {
        margin-bottom: 8px;
        text-align: center;
        color: var(--idafa-dark-navy) !important;
    }

    .navbar:not(.scrolled) .navbar-nav .nav-link {
        color: rgba(255, 255, 255, 0.95) !important;
    }

    /* On blog/policy pages, links should be dark even when not scrolled */
    body.archive .navbar:not(.scrolled) .navbar-nav .nav-link,
    body.blog .navbar:not(.scrolled) .navbar-nav .nav-link,
    body.single .navbar:not(.scrolled) .navbar-nav .nav-link,
    body.page .navbar:not(.scrolled) .navbar-nav .nav-link,
    body.search .navbar:not(.scrolled) .navbar-nav .nav-link {
        color: var(--idafa-dark-navy) !important;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .nav-separator {
        display: none !important;
    }

    .navbar-brand img {
        height: 55px;
    }
}


/* =========================================
   2. Footer Styles (from footer.php)
   ========================================= */
.site-footer {
    background: linear-gradient(180deg, #041521 0%, #0a2a3a 50%, #041521 100%);
    color: #ffffff;
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(0, 191, 165, 0.12), transparent 60%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 151, 167, 0.15), transparent 60%),
        repeating-linear-gradient(45deg,
            transparent,
            transparent 2px,
            rgba(0, 191, 165, 0.03) 2px,
            rgba(0, 191, 165, 0.03) 4px);
    pointer-events: none;
    animation: footerPattern 20s linear infinite;
}

@media (max-width: 768px) {
    .site-footer::before {
        background:
            radial-gradient(ellipse at 20% 30%, rgba(0, 191, 165, 0.08), transparent 60%),
            radial-gradient(ellipse at 80% 70%, rgba(0, 151, 167, 0.1), transparent 60%);
        animation: none;
    }
}

@keyframes footerPattern {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100px 100px;
    }
}

.site-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
            transparent,
            #00BFA5 20%,
            #0097A7 40%,
            #00BFA5 60%,
            #0097A7 80%,
            transparent);
    background-size: 200% 100%;
    animation: footerBorder 3s ease infinite;
}

@keyframes footerBorder {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.footer-content {
    position: relative;
    z-index: 1;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
}

.site-footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00BFA5);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-footer a:hover {
    color: #00BFA5;
    transform: translateX(-5px);
}

.site-footer a:hover::after {
    width: 100%;
}

.fs-footer-title {
    font-weight: 900;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: -0.5px;
}

.fs-footer-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #00BFA5, #0097A7);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 191, 165, 0.5);
}

.fs-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fs-footer-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    padding-right: 12px;
    position: relative;
}

.fs-footer-list li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #00BFA5, #0097A7);
    border-radius: 2px;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fs-footer-list li:hover {
    background: rgba(0, 191, 165, 0.08);
    transform: translateX(-5px);
}

.fs-footer-list li:hover::before {
    height: 80%;
}

.fs-footer-list li i {
    color: rgba(0, 191, 165, 0.7);
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 20px;
    text-align: center;
}

.fs-footer-list li:hover i {
    color: #00BFA5;
    transform: scale(1.2) rotate(-10deg);
}

.fs-social {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.fs-social a {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.fs-social a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #00BFA5, #0097A7);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.fs-social a i {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.fs-social a:hover {
    transform: translateY(-8px) rotate(5deg) scale(1.1);
    border-color: #00BFA5;
    box-shadow: 0 12px 35px rgba(0, 191, 165, 0.5);
}

.fs-social a:hover::before {
    opacity: 1;
}

.fs-social a:hover i {
    transform: scale(1.3) rotate(-10deg);
    color: white;
}

.fs-copy {
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    padding-top: 30px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    position: relative;
}

.fs-copy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00BFA5, transparent);
}

.fs-copy a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    position: relative;
}

.fs-copy a::after {
    bottom: -1px;
    height: 1px;
}

.fs-copy a:hover {
    color: #00BFA5 !important;
    text-shadow: 0 0 15px rgba(0, 191, 165, 0.6);
}

.footer-brand-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.socpa-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    border: 2px solid rgba(0, 191, 165, 0.3);
    margin-bottom: 1rem;
    margin-left: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.socpa-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 191, 165, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.socpa-badge:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(0, 191, 165, 0.5);
    box-shadow: 0 8px 25px rgba(0, 191, 165, 0.3);
}

.socpa-badge:hover::before {
    opacity: 1;
}

.socpa-badge i {
    color: #00BFA5;
    font-size: 1.1rem;
    filter: drop-shadow(0 0 5px rgba(0, 191, 165, 0.5));
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}

.socpa-badge:hover i {
    transform: scale(1.2) rotate(15deg);
}

.footer-map {
    margin-top: 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.3),
        inset 0 0 0 3px rgba(0, 191, 165, 0.2);
    border: 2px solid rgba(0, 191, 165, 0.3);
    position: relative;
    padding-top: 65%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-map:hover {
    transform: translateY(-5px);
    box-shadow:
        0 20px 55px rgba(0, 191, 165, 0.4),
        inset 0 0 0 3px rgba(0, 191, 165, 0.4);
    border-color: rgba(0, 191, 165, 0.5);
}

.footer-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.2) brightness(0.9);
    transition: filter 0.4s ease;
}

.footer-map:hover iframe {
    filter: grayscale(0) brightness(1);
}

.footer-payment-methods {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.footer-payment-methods-title {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    width: 100%;
}

.payment-method-img {
    height: 35px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.payment-method-img:hover {
    opacity: 1;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .footer-payment-methods {
        justify-content: center;
        margin-top: 1.5rem;
    }

    .footer-payment-methods-title {
        text-align: center;
    }

    .payment-method-img {
        height: 30px;
    }
}

@media (max-width: 576px) {
    .footer-payment-methods {
        justify-content: center;
        margin-top: 1.2rem;
        gap: 10px;
    }

    .footer-payment-methods-title {
        font-size: 0.85rem;
        text-align: center;
    }

    .payment-method-img {
        height: 28px;
    }
}

@media (max-width: 992px) {
    .site-footer {
        padding: 70px 0 30px;
    }

    .site-footer .row {
        gap: 2rem !important;
    }

    .footer-content .col-lg-4,
    .footer-content .col-lg-2 {
        margin-bottom: 2rem;
    }

    .footer-brand-section {
        text-align: center;
    }

    .footer-brand-section .d-flex.align-items-center {
        justify-content: center;
    }

    .fs-footer-title {
        text-align: center;
        margin-bottom: 1.5rem;
        font-size: 1.3rem;
    }

    .fs-footer-title::before {
        right: 50%;
        transform: translateX(50%);
    }

    .fs-footer-list {
        text-align: center;
        display: inline-block;
        width: 100%;
    }

    .fs-footer-list li {
        justify-content: center;
        padding-right: 0;
    }

    .footer-brand-desc {
        text-align: center;
    }

    .fs-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 50px 0 25px;
        background: linear-gradient(180deg, #041521 0%, #0a2a3a 100%);
    }

    .site-footer .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .site-footer .row {
        gap: 2rem !important;
        margin: 0;
    }

    .footer-content .col-lg-4,
    .footer-content .col-lg-2,
    .footer-content .col-md-6,
    .footer-content .col-md-3,
    .footer-content .col-md-12,
    .footer-content .col-sm-6 {
        margin-bottom: 2.5rem;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .footer-brand-section {
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-brand-section .d-flex.align-items-center {
        justify-content: center;
    }

    .footer-brand-section img {
        height: 70px !important;
    }

    .fs-footer-title {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
        text-align: center;
    }

    .fs-footer-title::before {
        right: 50%;
        transform: translateX(50%);
        width: 50px;
    }

    .fs-footer-list {
        text-align: center;
        display: block;
        width: 100%;
        padding: 0;
    }

    .fs-footer-list li {
        justify-content: center;
        margin-bottom: 0.8rem;
        font-size: 0.95rem;
        padding-right: 0;
        padding-left: 0;
    }

    .footer-brand-desc {
        font-size: 0.95rem;
        line-height: 1.8;
        padding: 0 15px;
        text-align: center;
    }

    .socpa-badge {
        font-size: 0.85rem;
        padding: 10px 18px;
        margin-left: 0;
        margin-right: 0;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        text-align: center;
    }

    .socpa-badge span {
        text-align: center;
        line-height: 1.5;
    }

    .fs-social {
        gap: 12px;
        justify-content: center;
    }

    .fs-social a {
        width: 42px;
        height: 42px;
    }

    .fs-copy {
        margin-top: 40px;
        padding-top: 20px;
        font-size: 0.9rem;
        text-align: center;
        flex-direction: column !important;
        gap: 15px !important;
    }

    .footer-map {
        margin-top: 1.2rem;
        padding-top: 75%;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .site-footer {
        padding: 40px 0 20px;
        background: linear-gradient(180deg, #041521 0%, #0a2a3a 100%);
    }

    .site-footer .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .site-footer .row {
        margin-left: 0;
        margin-right: 0;
        gap: 2rem !important;
    }

    .site-footer .row>[class*="col-"] {
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .footer-brand-section {
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-brand-section .d-flex.align-items-center {
        justify-content: center;
    }

    .footer-brand-section img {
        height: 65px !important;
    }

    .fs-footer-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .fs-footer-title::before {
        right: 50%;
        transform: translateX(50%);
        width: 45px;
        height: 3px;
    }

    .fs-footer-list {
        text-align: center;
        display: block;
        width: 100%;
        padding: 0;
    }

    .fs-footer-list li {
        justify-content: center;
        font-size: 0.9rem;
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 0.7rem;
    }

    .footer-brand-desc {
        font-size: 0.9rem;
        text-align: center;
        padding: 0 10px;
        margin-bottom: 1.5rem;
        line-height: 1.75;
    }

    .socpa-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 1rem;
        display: flex;
        justify-content: center;
        width: 100%;
        text-align: center;
    }

    .socpa-badge span {
        text-align: center;
        line-height: 1.4;
    }

    .fs-social {
        text-align: center;
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .fs-social a {
        width: 40px;
        height: 40px;
        margin: 0;
    }

    .fs-copy {
        margin-top: 30px;
        padding-top: 18px;
        font-size: 0.85rem;
        text-align: center;
        flex-direction: column !important;
        gap: 12px !important;
    }

    .footer-map {
        margin-top: 1rem;
        padding-top: 80%;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        max-width: 100%;
    }

    .footer-map iframe {
        width: 100%;
        height: 100%;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: white;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    }

    50% {
        box-shadow: 0 8px 40px rgba(37, 211, 102, 0.8), 0 0 0 15px rgba(37, 211, 102, 0.1);
    }
}

.whatsapp-btn:hover {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 12px 45px rgba(37, 211, 102, 0.8);
    color: white;
}

.whatsapp-btn i {
    font-size: 2.2rem;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
    }

    .whatsapp-btn {
        width: 60px;
        height: 60px;
    }

    .whatsapp-btn i {
        font-size: 1.8rem;
    }
}

/* =========================================
   3. Front Page Styles (from front-page.php)
   ========================================= */
main {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.hero-section {
    background: linear-gradient(135deg, rgba(4, 21, 33, 0.75) 0%, rgba(0, 151, 167, 0.65) 100%),
        url('https://media.cnn.com/api/v1/images/stellar/prod/231006161801-01-body-saudi-arabia-tourism-basics-riyadh.jpg?c=original') center/cover no-repeat;
    background-attachment: fixed;
    color: white;
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 0 !important;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 191, 165, 0.4) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(4, 21, 33, 0.5) 0%, transparent 60%);
    animation: heroGlow 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes heroGlow {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(0, 191, 165, 0.03) 2px,
            rgba(0, 191, 165, 0.03) 4px);
    pointer-events: none;
    z-index: 1;
}

@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideFromLeft {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

@keyframes textShine {

    0%,
    100% {
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    }

    50% {
        filter: drop-shadow(0 0 20px rgba(0, 191, 165, 0.8)) drop-shadow(0 0 30px rgba(0, 191, 165, 0.4));
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 16px 32px;
    border-radius: 60px;
    font-size: 1.05rem;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.25);
    margin-bottom: 40px;
    animation: floatUp 1s ease-out, slideFromLeft 0.8s ease-out 0.3s both;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.hero-badge:hover::before {
    left: 100%;
}

.hero-badge:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.18);
}

.hero-badge i {
    color: #ffffff;
    font-size: 1.4rem;
    filter: drop-shadow(0 2px 4px rgba(0, 191, 165, 0.5));
    animation: textShine 3s ease-in-out infinite;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.15;
    animation: floatUp 1.2s ease-out 0.5s both, textShine 4s ease-in-out infinite;
    text-shadow: 0 6px 40px rgba(0, 0, 0, 0.4), 0 2px 10px rgba(0, 191, 165, 0.3);
    letter-spacing: -1px;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(0, 191, 165, 0.8), transparent);
    border-radius: 2px;
    animation: shimmer 3s linear infinite;
    background-size: 200% 100%;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.8rem;
    opacity: 0.98;
    line-height: 1.6;
    animation: slideFromLeft 1s ease-out 0.8s both;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 1.35rem;
    margin-bottom: 3rem;
    opacity: 0.92;
    line-height: 1.9;
    animation: floatUp 1s ease-out 1s both;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    animation: floatUp 1s ease-out 1.2s both;
}

.hero-buttons .btn {
    padding: 22px 48px;
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 60px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
    letter-spacing: -0.3px;
}

.btn-primary-custom {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    border: 3px solid rgba(255, 255, 255, 0.5);
    color: #041521;
    box-shadow: 0 10px 35px rgba(255, 255, 255, 0.4), 0 0 0 0 rgba(255, 255, 255, 0.7);
    position: relative;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 191, 165, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.btn-primary-custom:hover::before {
    opacity: 1;
}

.btn-primary-custom:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #041521;
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 18px 50px rgba(255, 255, 255, 0.5), 0 0 0 8px rgba(255, 255, 255, 0.2);
}

.btn-outline-custom {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 3px solid rgba(255, 255, 255, 0.6);
    color: white;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 18px 50px rgba(255, 255, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-buttons .btn i {
    font-size: 1.3rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-buttons .btn:hover i {
    transform: scale(1.3) rotate(10deg);
}

@media (max-width: 992px) {
    .hero-section {
        padding: 130px 0 90px;
        min-height: 85vh;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.6rem;
    }

    .hero-description {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 140px 0 80px;
        min-height: auto;
        background-attachment: scroll;
    }

    .hero-badge {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .hero-badge i {
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.6rem;
    }

    .hero-title::after {
        display: none;
    }

    .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .hero-description {
        font-size: 1.15rem;
        margin-bottom: 2.5rem;
    }

    .hero-buttons {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-buttons .btn {
        width: auto;
        min-width: 160px;
        max-width: none;
        flex: 1 1 auto;
        justify-content: center;
        padding: 18px 35px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 130px 0 60px;
    }

    .hero-badge {
        padding: 12px 24px;
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .hero-badge i {
        font-size: 1.1rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1.4rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .hero-description {
        font-size: 1.05rem;
        margin-bottom: 2rem;
        padding: 0 15px;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-buttons .btn {
        padding: 16px 28px;
        font-size: 1rem;
        min-width: 140px;
        max-width: none;
        flex: 1 1 calc(50% - 6px);
    }
}

.services-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    padding: 140px 0 120px;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/pattern.png') repeat;
    background-size: 300px 300px;
    background-attachment: fixed;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.services-section>* {
    position: relative;
    z-index: 2;
}

.services-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--idafa-teal), var(--idafa-blue), var(--idafa-teal), transparent);
    background-size: 200% 100%;
    animation: gradientShift 5s ease infinite;
    z-index: 1;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.services-section .services-pulse {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 191, 165, 0.05), transparent 70%);
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

/* Services Grid Container - No Carousel on Desktop */
.services-grid-container {
    position: relative;
    margin-top: 5rem;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Advanced Flip Service Card */
.service-card-wrapper {
    perspective: 1000px;
    -webkit-perspective: 1000px;
    height: 380px;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

.service-card {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    will-change: transform;
}

.service-card-wrapper:hover .service-card {
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    border-radius: 25px;
    overflow: hidden;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

.service-card-front {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 50px 35px;
    text-align: center;
    box-shadow:
        0 12px 45px rgba(4, 21, 33, 0.1),
        0 0 0 2px rgba(0, 191, 165, 0.1);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-back {
    background: linear-gradient(135deg, #00BFA5 0%, #0097A7 100%);
    padding: 50px 35px;
    text-align: center;
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    box-shadow:
        0 25px 80px rgba(0, 191, 165, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.service-card:hover .service-card-front {
    box-shadow:
        0 20px 60px rgba(0, 191, 165, 0.2),
        0 0 0 2px rgba(0, 191, 165, 0.2);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #00BFA5 0%, #0097A7 50%, #00BFA5 100%);
    background-size: 200% 200%;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    box-shadow:
        0 10px 30px rgba(0, 191, 165, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    animation: iconGradient 4s ease infinite;
}

@keyframes iconGradient {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.service-card-back .service-icon {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.service-icon i {
    font-size: 3rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 900;
    color: #041521;
    margin-bottom: 18px;
    line-height: 1.4;
    position: relative;
    z-index: 2;
    transition: all 0.8s ease;
}

.service-card-back .service-title {
    color: white;
    font-size: 1.5rem;
}

.service-description {
    color: #6c757d;
    line-height: 1.85;
    font-size: 1rem;
    position: relative;
    z-index: 2;
    transition: all 0.8s ease;
    margin: 0;
}

.service-card-back .service-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    line-height: 1.9;
}

.service-card-back-content {
    margin-top: 25px;
}

.service-card-back .service-icon {
    margin-bottom: 25px;
}

/* Responsive Grid */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
        max-width: 1200px;
    }

    .service-card-wrapper {
        height: 360px;
    }
}

@media (max-width: 992px) {
    .services-section {
        padding: 100px 0 80px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .service-card-wrapper {
        height: 400px;
    }

    .service-card-front,
    .service-card-back {
        padding: 45px 30px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 80px 0 60px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 600px;
    }

    .service-card-wrapper {
        height: 380px;
    }

    .service-card-front,
    .service-card-back {
        padding: 40px 30px;
    }

    .service-icon {
        width: 90px;
        height: 90px;
        margin-bottom: 25px;
    }

    .service-icon i {
        font-size: 2.6rem;
    }

    .service-title {
        font-size: 1.3rem;
    }

    .service-description {
        font-size: 0.98rem;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 60px 0 50px;
    }

    .services-grid {
        gap: 20px;
    }

    .service-card-wrapper {
        height: 350px;
    }

    .service-card-front,
    .service-card-back {
        padding: 35px 25px;
    }

    .service-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .service-icon i {
        font-size: 2.4rem;
    }

    .service-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .service-description {
        font-size: 0.95rem;
        line-height: 1.8;
    }
}

.contact-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 140px 0 120px;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/pattern.png') repeat;
    background-size: 300px 300px;
    background-attachment: fixed;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.contact-section>* {
    position: relative;
    z-index: 2;
}

.contact-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--idafa-teal), var(--idafa-blue), var(--idafa-teal), transparent);
    background-size: 200% 100%;
    animation: gradientShift 5s ease infinite;
    z-index: 1;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0 60px;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 60px 0 50px;
    }
}

/* Zoho Form Base Styles */
.zoho-form-wrapper {
    margin-top: 3rem;
}

.zoho-form-wrapper * {
    box-sizing: border-box;
}

.zoho-form-wrapper .wf-parent {
    background-color: transparent !important;
    padding: 0 !important;
    height: auto !important;
    overflow: visible !important;
}

.zoho-form-wrapper .wf-wrapper {
    background: white;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(4, 21, 33, 0.1);
    border: 1px solid rgba(0, 191, 165, 0.12);
    max-width: 100%;
    width: 100%;
}

.zoho-form-wrapper .wf-form-component {
    padding: 55px 50px 60px;
    font-family: 'IBM Plex Sans Arabic', Arial, sans-serif;
}

.zoho-form-wrapper .wf-header {
    color: #041521;
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    padding-bottom: 35px;
    word-break: break-word;
}

.zoho-form-wrapper .wf-row {
    margin-bottom: 25px;
}

.zoho-form-wrapper .wf-label {
    color: #041521;
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 0;
    display: block;
    word-break: break-word;
}

.zoho-form-wrapper .wf-field {
    text-align: right;
    word-break: break-word;
    position: relative;
}

.zoho-form-wrapper .wf-field-inner {
    position: relative;
    display: flex;
    flex: 1;
}

.zoho-form-wrapper .wf-field-input,
.zoho-form-wrapper .wf-field-dropdown {
    width: 100%;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px 20px;
    min-height: 50px;
    font-size: 1rem;
    font-family: 'IBM Plex Sans Arabic', Arial, sans-serif;
    transition: all 0.3s ease;
    color: #041521;
}

.zoho-form-wrapper .wf-field-input:focus,
.zoho-form-wrapper .wf-field-dropdown:focus {
    border-color: #00BFA5 !important;
    box-shadow: 0 0 0 4px rgba(0, 191, 165, 0.15) !important;
    outline: none;
}

.zoho-form-wrapper .wf-field-dropdown {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23041521' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: left 15px center;
    padding-left: 45px;
    cursor: pointer;
}

.zoho-form-wrapper .wf-field-mandatory .wf-field-inner::before {
    content: '';
    position: absolute;
    right: 0;
    background-color: #00BFA5;
    width: 4px;
    height: 100%;
    border-radius: 0 12px 12px 0;
    z-index: 2;
    top: 0;
}

.zoho-form-wrapper .wf-text-area-input {
    min-height: 130px;
    resize: vertical;
}

.zoho-form-wrapper .wform-btn-wrap {
    display: flex;
    margin-top: 40px;
    justify-content: center;
}

.zoho-form-wrapper .wf-btn {
    background: linear-gradient(135deg, #00BFA5, #041521) !important;
    border: none !important;
    color: white !important;
    padding: 18px 50px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 1.15rem !important;
    font-family: 'IBM Plex Sans Arabic', Arial, sans-serif !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    box-shadow: 0 8px 25px rgba(0, 191, 165, 0.3);
}

.zoho-form-wrapper .wf-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 191, 165, 0.4) !important;
}

.zoho-form-wrapper .g-recaptcha {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.zoho-form-wrapper .wf-field-error {
    color: #FF5050;
    font-size: 0.85rem;
    margin-top: 8px;
    display: block;
    text-align: right;
}

.zoho-form-wrapper .wf-field-error-active .wf-field-input,
.zoho-form-wrapper .wf-field-error-active .wf-field-dropdown {
    border-color: #FF5050 !important;
    box-shadow: 0 0 0 4px rgba(255, 80, 80, 0.15) !important;
}

.zoho-form-wrapper .wf-error-parent-ele {
    display: block;
}

@media (max-width: 768px) {
    .zoho-form-wrapper .wf-form-component {
        padding: 40px 25px 50px;
    }

    .zoho-form-wrapper .wf-header {
        font-size: 1.75rem;
    }

    .zoho-form-wrapper .wf-btn {
        padding: 15px 40px !important;
        font-size: 1rem !important;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .zoho-form-wrapper .wf-form-component {
        padding: 35px 20px 45px;
    }

    .zoho-form-wrapper .wf-header {
        font-size: 1.5rem;
    }

    .zoho-form-wrapper .wf-field-input,
    .zoho-form-wrapper .wf-field-dropdown {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
}

/* =========================================
   4. Zoho Dynamic Wrapper Overrides
   ========================================= */
.idafa-zoho-wrapper input[type="text"],
.idafa-zoho-wrapper input[type="email"],
.idafa-zoho-wrapper input[type="tel"],
.idafa-zoho-wrapper input[type="number"],
.idafa-zoho-wrapper select,
.idafa-zoho-wrapper textarea {
    width: 100%;
    background: white;
    border: 2px solid #e9ecef;
    color: #041521;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.idafa-zoho-wrapper input:focus,
.idafa-zoho-wrapper select:focus,
.idafa-zoho-wrapper textarea:focus {
    border-color: #00BFA5;
    box-shadow: 0 0 0 0.2rem rgba(0, 191, 165, 0.15);
    outline: none;
}

.idafa-zoho-wrapper input[type="submit"],
.idafa-zoho-wrapper button {
    background: linear-gradient(135deg, #00BFA5, #041521);
    border: none;
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.idafa-zoho-wrapper input[type="submit"]:hover,
.idafa-zoho-wrapper button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 191, 165, 0.4);
}

/* =========================================
   7. About Us Page Styles
   ========================================= */
.about-page {
    background: #ffffff url('../images/pattern.png') repeat;
    background-size: 200px 200px;
    background-blend-mode: overlay;
    min-height: 100vh;
    padding-top: 120px !important;
}

.about-section {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    padding: 140px 0 120px;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/pattern.png') repeat;
    background-size: 300px 300px;
    background-attachment: fixed;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.about-section>* {
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #00BFA5, #0097A7);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #041521, #00BFA5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 400;
}

.about-logo-container {
    text-align: center;
    margin: 2rem 0 3rem;
}

.about-logo {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 191, 165, 0.2));
    transition: transform 0.5s ease;
}

.about-logo:hover {
    transform: scale(1.05);
}

.about-section-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-section-item {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 80px 0;
    margin-bottom: 0;
    animation: fadeInUp 0.6s ease;
    position: relative;
}

.about-section-item:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 191, 165, 0.3), transparent);
}

.section-item-title {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #041521, #00BFA5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 25px;
    letter-spacing: -0.5px;
}

.section-item-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #00BFA5, #0097A7);
    border-radius: 2px;
}

.about-intro-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-intro-content p {
    font-size: 1.3rem;
    line-height: 2.3;
    color: #495057;
    font-weight: 400;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 20px;
}

.about-content-text {
    text-align: right;
}

.about-content-text p {
    font-size: 1.15rem;
    line-height: 2.1;
    color: #495057;
    font-weight: 400;
}

.about-content-image {
    text-align: center;
    position: relative;
}

.about-content-image::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, rgba(0, 191, 165, 0.1), rgba(0, 151, 167, 0.1));
    border-radius: 30px;
    z-index: -1;
}

.about-content-image img {
    max-width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 191, 165, 0.2);
    transition: transform 0.5s ease;
}

.about-content-image:hover img {
    transform: scale(1.05);
}

.about-why-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.vision-mission-card {
    background: linear-gradient(135deg, rgba(0, 191, 165, 0.08), rgba(0, 151, 167, 0.08));
    padding: 50px 45px;
    border-radius: 25px;
    border-right: 4px solid #00BFA5;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-align: right;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 191, 165, 0.1);
}

.vision-mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 191, 165, 0.05), transparent);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.vision-mission-card:hover::before {
    opacity: 1;
}

.vision-mission-card:hover {
    transform: translateY(-12px) translateX(-5px);
    box-shadow: 0 25px 60px rgba(0, 191, 165, 0.25);
    border-right-color: #0097A7;
}

.vision-mission-card h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #041521;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.vision-mission-card h3 i {
    font-size: 2rem;
    color: #00BFA5;
}

.vision-mission-card p {
    font-size: 1.1rem;
    line-height: 2;
    color: #495057;
    margin: 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.why-us-item {
    background: linear-gradient(135deg, rgba(0, 191, 165, 0.08), rgba(0, 151, 167, 0.08));
    padding: 30px 35px;
    border-radius: 20px;
    border-right: 4px solid #00BFA5;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 191, 165, 0.1);
}

.why-us-item:hover {
    transform: translateX(-8px) translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 191, 165, 0.2);
    background: linear-gradient(135deg, rgba(0, 191, 165, 0.12), rgba(0, 151, 167, 0.12));
    border-right-color: #0097A7;
}

.why-us-item::before {
    content: '✓';
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00BFA5, #0097A7);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(0, 191, 165, 0.4);
    transition: all 0.4s ease;
}

.why-us-item:hover::before {
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 10px 25px rgba(0, 191, 165, 0.5);
}

.why-us-item p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 2;
    color: #495057;
    padding-right: 20px;
    font-weight: 400;
}

.values-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/pattern.png') repeat;
    background-size: 300px 300px;
    background-attachment: fixed;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.values-section>* {
    position: relative;
    z-index: 2;
}

.values-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--idafa-teal), var(--idafa-blue), var(--idafa-teal), transparent);
    background-size: 200% 100%;
    animation: gradientShift 5s ease infinite;
    z-index: 1;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 4rem;
}

.value-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 25px;
    padding: 55px 35px;
    text-align: center;
    box-shadow:
        0 12px 45px rgba(4, 21, 33, 0.1),
        0 0 0 1px rgba(0, 191, 165, 0.1);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.value-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(0, 191, 165, 0.1), transparent 70%);
    opacity: 0;
    transition: all 0.7s ease;
    transform: translate(-50%, -50%);
}

.value-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 25px;
    background: linear-gradient(135deg, #00BFA5, #0097A7, #00BFA5);
    background-size: 200% 200%;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.7s ease;
    animation: borderGlow 4s ease infinite;
}

@keyframes borderGlow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.value-card:hover::before {
    top: 50%;
    left: 50%;
    opacity: 1;
}

.value-card:hover::after {
    opacity: 0.3;
}

.value-card:hover {
    transform: translateY(-18px) scale(1.03);
    box-shadow:
        0 30px 80px rgba(0, 191, 165, 0.25),
        0 0 0 3px rgba(0, 191, 165, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.value-icon-wrapper {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #00BFA5 0%, #0097A7 50%, #00BFA5 100%);
    background-size: 200% 200%;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
    position: relative;
    z-index: 2;
    box-shadow:
        0 15px 40px rgba(0, 191, 165, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    animation: iconGradientMove 4s ease infinite;
}

@keyframes iconGradientMove {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.value-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 25px;
    background: linear-gradient(135deg, #00BFA5, #0097A7);
    opacity: 0;
    z-index: -1;
    filter: blur(12px);
    transition: opacity 0.7s ease;
}

.value-card:hover .value-icon-wrapper {
    transform: scale(1.18) rotate(12deg) translateY(-8px);
    box-shadow:
        0 25px 60px rgba(0, 191, 165, 0.6),
        0 0 0 10px rgba(0, 191, 165, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

.value-card:hover .value-icon-wrapper::before {
    opacity: 0.8;
}

.value-icon-wrapper i {
    font-size: 3.5rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

@keyframes iconPulseValue {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

@keyframes iconRotateValue {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(10deg);
    }
}

@keyframes iconBounceValue {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.value-card:hover .value-icon-wrapper i {
    transform: scale(1.25) rotate(-15deg);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.value-card:nth-child(1) .value-icon-wrapper {
    animation: iconPulseValue 3s ease-in-out infinite, iconGradientMove 4s ease infinite;
}

.value-card:nth-child(2) .value-icon-wrapper {
    animation: iconRotateValue 3s ease-in-out infinite, iconGradientMove 4s ease infinite;
}

.value-card:nth-child(3) .value-icon-wrapper {
    animation: iconPulseValue 3.5s ease-in-out infinite, iconGradientMove 4s ease infinite;
}

.value-card:nth-child(4) .value-icon-wrapper {
    animation: iconBounceValue 3s ease-in-out infinite, iconGradientMove 4s ease infinite;
}

.value-card:nth-child(5) .value-icon-wrapper {
    animation: iconRotateValue 3.5s ease-in-out infinite, iconGradientMove 4s ease infinite;
}

.value-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: #041521;
    margin-bottom: 18px;
    line-height: 1.4;
    position: relative;
    z-index: 2;
    transition: color 0.6s ease;
}

.value-card:hover .value-title {
    color: #00BFA5;
}

.value-description {
    color: #6c757d;
    line-height: 1.9;
    font-size: 1.05rem;
    position: relative;
    z-index: 2;
    margin: 0;
    transition: color 0.6s ease;
}

@media (max-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .about-section-content {
        margin: 0 20px;
    }

    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content-image {
        order: -1;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0 60px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-item-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1.15rem;
        margin-bottom: 2rem;
    }

    .about-logo {
        max-width: 200px;
    }

    .about-section-item {
        padding: 60px 0;
    }

    .about-section-item:not(:last-child)::after {
        width: 90%;
    }

    .section-item-title {
        font-size: 2rem;
        margin-bottom: 35px;
    }

    .about-intro-content {
        padding: 0 20px;
    }

    .about-intro-content p {
        font-size: 1.15rem;
        line-height: 2.1;
    }

    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 30px;
    }

    .about-content-text {
        text-align: center;
    }

    .about-content-text p {
        font-size: 1.05rem;
        line-height: 2;
    }

    .about-content-image {
        order: -1;
    }

    .about-content-image::before {
        display: none;
    }

    .vision-mission-card {
        padding: 40px 35px;
    }

    .vision-mission-card h3 {
        font-size: 1.7rem;
    }

    .vision-mission-card p {
        font-size: 1.05rem;
        line-height: 1.9;
    }

    .why-us-grid {
        gap: 20px;
    }

    .why-us-item {
        padding: 25px 30px;
    }

    .why-us-item::before {
        right: -15px;
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }

    .why-us-item p {
        font-size: 1.05rem;
        padding-right: 15px;
    }

    .values-section {
        padding: 60px 0;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .value-card {
        padding: 40px 25px;
    }

    .value-icon-wrapper {
        width: 90px;
        height: 90px;
        margin-bottom: 25px;
    }

    .value-icon-wrapper i {
        font-size: 2.5rem;
    }

    .value-title {
        font-size: 1.3rem;
    }

    .value-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 60px 0 50px;
    }

    .about-section-content {
        margin: 0;
        padding: 0 15px;
    }

    .about-section-item {
        padding: 50px 0;
    }

    .about-section-item:not(:last-child)::after {
        width: 100%;
    }

    .section-item-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .section-item-title::after {
        width: 80px;
    }

    .about-intro-content {
        padding: 0 10px;
    }

    .about-intro-content p {
        font-size: 1.05rem;
        line-height: 2;
    }

    .about-content-grid {
        gap: 35px;
        margin-top: 25px;
    }

    .about-content-text p {
        font-size: 1rem;
        line-height: 1.9;
    }

    .vision-mission-grid {
        gap: 25px;
    }

    .vision-mission-card {
        padding: 35px 30px;
    }

    .vision-mission-card h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .vision-mission-card p {
        font-size: 1rem;
        line-height: 1.85;
    }

    .why-us-grid {
        gap: 18px;
    }

    .why-us-item {
        padding: 22px 25px;
        border-radius: 18px;
    }

    .why-us-item::before {
        right: -12px;
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .why-us-item p {
        font-size: 1rem;
        padding-right: 12px;
        line-height: 1.85;
    }

    .values-section {
        padding: 50px 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 100%;
    }

    .value-card {
        padding: 35px 25px;
    }

    .value-icon-wrapper {
        width: 85px;
        height: 85px;
        margin-bottom: 20px;
    }

    .value-icon-wrapper i {
        font-size: 2.4rem;
    }

    .value-title {
        font-size: 1.25rem;
        margin-bottom: 15px;
    }

    .value-description {
        font-size: 0.95rem;
        line-height: 1.8;
    }
}

/* =========================================
   8. Pricing Page Styles
   ========================================= */
.pricing-page {
    background: #ffffff url('../images/pattern.png') repeat;
    background-size: 200px 200px;
    background-blend-mode: overlay;
    min-height: 100vh;
}

.pricing-hero-section {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    padding: 100px 0 80px;
    position: relative;
    text-align: center;
}

.pricing-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/pattern.png') repeat;
    background-size: 300px 300px;
    background-attachment: fixed;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.pricing-hero-section>* {
    position: relative;
    z-index: 1;
}

.pricing-hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #041521, #00BFA5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: -0.5px;
}

.pricing-hero-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 400;
}

.pricing-content-section {
    padding: 80px 0;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-package {
    background: linear-gradient(135deg, rgba(0, 191, 165, 0.05), rgba(0, 151, 167, 0.05));
    border-radius: 25px;
    padding: 50px 40px;
    margin-bottom: 60px;
    border-right: 4px solid #00BFA5;
    box-shadow: 0 10px 40px rgba(0, 191, 165, 0.1);
    animation: fadeInUp 0.6s ease;
}

.pricing-package-title {
    font-size: 2rem;
    font-weight: 900;
    color: #041521;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.pricing-package-title i {
    color: #00BFA5;
    font-size: 2.2rem;
}

.pricing-package-description {
    font-size: 1.15rem;
    color: #495057;
    line-height: 1.9;
    margin-bottom: 40px;
}

.pricing-details-section {
    margin-top: 40px;
}

.pricing-details-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #041521;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 191, 165, 0.2);
}

.pricing-detail-item {
    margin-bottom: 20px;
    padding-right: 25px;
    position: relative;
}

.pricing-detail-item::before {
    content: '•';
    position: absolute;
    right: 0;
    color: #00BFA5;
    font-size: 1.5rem;
    font-weight: bold;
}

.pricing-detail-label {
    font-weight: 700;
    color: #041521;
    margin-bottom: 5px;
    font-size: 1.05rem;
}

.pricing-detail-value {
    color: #6c757d;
    line-height: 1.7;
}

.pricing-table-container {
    overflow-x: auto;
    margin-top: 50px;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.pricing-table thead {
    background: linear-gradient(135deg, #00BFA5, #0097A7);
    color: white;
}

.pricing-table th {
    padding: 20px 15px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.pricing-table th:first-child {
    text-align: right;
    background: rgba(0, 0, 0, 0.1);
}

.pricing-table td {
    padding: 18px 15px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
    color: #495057;
}

.pricing-table td:first-child {
    text-align: right;
    font-weight: 600;
    color: #041521;
    background: rgba(0, 191, 165, 0.03);
}

.pricing-table tbody tr:hover {
    background: rgba(0, 191, 165, 0.05);
}

.pricing-table .check-icon {
    color: #00BFA5;
    font-size: 1.5rem;
    font-weight: bold;
}

.pricing-table .cross-icon {
    color: #dc3545;
    font-size: 1.5rem;
    font-weight: bold;
}

.pricing-table .partial-icon {
    color: #ffc107;
    font-size: 1.5rem;
    font-weight: bold;
}

.price-highlight {
    background: linear-gradient(135deg, #00BFA5, #0097A7);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
    margin: 5px 0;
}

.sar-symbol {
    height: 1em;
    width: auto;
    vertical-align: middle;
    display: inline-block;
    margin-right: 4px;
    filter: brightness(0) invert(1);
}

.pricing-table td .sar-symbol {
    filter: none;
}

.price-new-customer {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
    margin: 5px 0;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .pricing-content-section {
        padding: 60px 20px;
    }

    .pricing-package {
        padding: 40px 30px;
    }

    .pricing-package-title {
        font-size: 1.7rem;
    }
}

@media (max-width: 768px) {
    .pricing-hero-section {
        padding: 80px 0 60px;
    }

    .pricing-hero-title {
        font-size: 2rem;
    }

    .pricing-hero-subtitle {
        font-size: 1.15rem;
        margin-bottom: 2rem;
    }

    .pricing-content-section {
        padding: 50px 15px;
    }

    .pricing-package {
        padding: 35px 25px;
        margin-bottom: 50px;
    }

    .pricing-package-title {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .pricing-package-description {
        font-size: 1.05rem;
    }

    .pricing-details-title {
        font-size: 1.3rem;
    }

    .pricing-table-container {
        padding: 20px 15px;
    }

    .pricing-table {
        min-width: 700px;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 12px 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .pricing-hero-section {
        padding: 60px 0 50px;
    }

    .pricing-hero-title {
        font-size: 1.8rem;
    }

    .pricing-hero-subtitle {
        font-size: 1.05rem;
        padding: 0 15px;
    }

    .pricing-content-section {
        padding: 40px 10px;
    }

    .pricing-package {
        padding: 30px 20px;
        margin-bottom: 40px;
    }

    .pricing-package-title {
        font-size: 1.3rem;
    }

    .pricing-package-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .pricing-details-title {
        font-size: 1.2rem;
    }

    .pricing-detail-item {
        margin-bottom: 15px;
        padding-right: 20px;
    }

    .pricing-detail-label {
        font-size: 1rem;
    }

    .pricing-detail-value {
        font-size: 0.95rem;
    }

    .pricing-table-container {
        padding: 15px 10px;
    }

    .pricing-table {
        min-width: 600px;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 10px 8px;
        font-size: 0.85rem;
    }
}

/* =========================================
   9. FAQ (QA) Page Styles
   ========================================= */
.qa-page {
    background: #ffffff url('../images/pattern.png') repeat;
    background-size: 200px 200px;
    background-blend-mode: overlay;
    min-height: 100vh;
    padding-top: 120px !important;
}

.qa-hero-section {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    padding: 100px 0 80px;
    position: relative;
    text-align: center;
}

.qa-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/pattern.png') repeat;
    background-size: 300px 300px;
    background-attachment: fixed;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.qa-hero-section>* {
    position: relative;
    z-index: 1;
}

.qa-hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #041521, #00BFA5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: -0.5px;
}

.qa-hero-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 400;
}

.qa-content-section {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.qa-category {
    margin-bottom: 80px;
    animation: fadeInUp 0.6s ease;
}

.qa-category-title {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #041521, #00BFA5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 50px;
    text-align: right;
    position: relative;
    padding-bottom: 25px;
    letter-spacing: -0.5px;
}

.qa-category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #00BFA5, #0097A7);
    border-radius: 2px;
}

.qa-item {
    background: linear-gradient(135deg, rgba(0, 191, 165, 0.05), rgba(0, 151, 167, 0.05));
    border-radius: 20px;
    padding: 35px 40px;
    margin-bottom: 25px;
    border-right: 4px solid #00BFA5;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 191, 165, 0.08);
}

.qa-item:hover {
    transform: translateX(-8px) translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 191, 165, 0.15);
    background: linear-gradient(135deg, rgba(0, 191, 165, 0.08), rgba(0, 151, 167, 0.08));
    border-right-color: #0097A7;
}

.qa-item::before {
    content: '?';
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00BFA5, #0097A7);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 191, 165, 0.4);
    transition: all 0.4s ease;
}

.qa-item:hover::before {
    transform: translateY(-50%) scale(1.15) rotate(10deg);
    box-shadow: 0 10px 25px rgba(0, 191, 165, 0.5);
}

.qa-question {
    font-size: 1.3rem;
    font-weight: 700;
    color: #041521;
    margin-bottom: 20px;
    padding-right: 60px;
    line-height: 1.6;
}

.qa-answer {
    font-size: 1.1rem;
    line-height: 2;
    color: #495057;
    margin: 0;
    padding-right: 60px;
}

.qa-answer strong {
    color: #00BFA5;
    font-weight: 700;
}

@media (max-width: 992px) {
    .qa-content-section {
        padding: 60px 20px;
    }

    .qa-category {
        margin-bottom: 60px;
    }

    .qa-category-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .qa-hero-section {
        padding: 80px 0 60px;
    }

    .qa-hero-title {
        font-size: 2rem;
    }

    .qa-hero-subtitle {
        font-size: 1.15rem;
        margin-bottom: 2rem;
    }

    .qa-content-section {
        padding: 50px 15px;
    }

    .qa-category {
        margin-bottom: 50px;
    }

    .qa-category-title {
        font-size: 1.6rem;
        margin-bottom: 35px;
        padding-bottom: 20px;
    }

    .qa-category-title::after {
        width: 80px;
    }

    .qa-item {
        padding: 30px 25px;
        margin-bottom: 20px;
    }

    .qa-item::before {
        right: -15px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .qa-question {
        font-size: 1.15rem;
        padding-right: 50px;
        margin-bottom: 15px;
    }

    .qa-answer {
        font-size: 1.05rem;
        padding-right: 50px;
        line-height: 1.9;
    }
}

@media (max-width: 576px) {
    .qa-hero-section {
        padding: 60px 0 50px;
    }

    .qa-hero-title {
        font-size: 2rem;
    }

    .qa-hero-subtitle {
        font-size: 1.05rem;
        padding: 0 15px;
    }

    .qa-content-section {
        padding: 40px 10px;
    }

    .qa-category {
        margin-bottom: 40px;
    }

    .qa-category-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
        padding-bottom: 15px;
    }

    .qa-category-title::after {
        width: 70px;
        height: 3px;
    }

    .qa-item {
        padding: 25px 20px;
        margin-bottom: 18px;
        border-radius: 18px;
    }

    .qa-item::before {
        right: -12px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .qa-question {
        font-size: 1.1rem;
        padding-right: 40px;
        margin-bottom: 12px;
        line-height: 1.5;
    }

    .qa-answer {
        font-size: 1rem;
        padding-right: 40px;
        line-height: 1.85;
    }
}

/* =========================================
   10. Contact Page Styles
   ========================================= */
.contact-page {
    background: #ffffff url('../images/pattern.png') repeat;
    background-size: 200px 200px;
    background-blend-mode: overlay;
    min-height: 100vh;
    padding-top: 120px !important;
}

.contact-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 140px 0 120px;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/pattern.png') repeat;
    background-size: 300px 300px;
    background-attachment: fixed;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.contact-section>* {
    position: relative;
    z-index: 2;
}

.contact-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--idafa-teal), var(--idafa-blue), var(--idafa-teal), transparent);
    background-size: 200% 100%;
    animation: gradientShift 5s ease infinite;
    z-index: 1;
}

.contact-info-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px;
    margin-top: 5rem;
    position: relative;
    z-index: 1;
}

.contact-info-card {
    background: white;
    border: 1px solid rgba(0, 191, 165, 0.15);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(4, 21, 33, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 191, 165, 0.3);
    box-shadow: 0 18px 55px rgba(0, 191, 165, 0.15);
}

.contact-info-icon {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, #00BFA5, #041521);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.5s ease;
    box-shadow: 0 8px 25px rgba(0, 191, 165, 0.25);
    flex-shrink: 0;
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.08);
    box-shadow: 0 12px 35px rgba(0, 191, 165, 0.35);
}

.contact-info-icon i {
    font-size: 2.5rem;
    color: white;
}

.contact-info-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #041521;
}

.contact-info-text {
    color: #6c757d;
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-info-text a {
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-text a:hover {
    color: #00BFA5;
}

@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0 60px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr !important;
        gap: 18px;
        margin-top: 4rem;
    }

    .contact-info-card {
        padding: 25px 15px;
    }

    .contact-info-icon {
        width: 65px;
        height: 65px;
    }

    .contact-info-icon i {
        font-size: 1.8rem;
    }

    .contact-info-title {
        font-size: 1rem;
    }

    .contact-info-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 60px 0 50px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        max-width: 100%;
        margin: 4rem auto 0;
    }

    .contact-info-card {
        padding: 30px 20px;
    }

    .contact-info-icon {
        width: 70px;
        height: 70px;
    }

    .contact-info-icon i {
        font-size: 2rem;
    }

    .contact-info-title {
        font-size: 1.15rem;
    }

    .contact-info-text {
        font-size: 1rem;
    }
}