body {
    font-family: "Open Sans", sans-serif;
    color: var(--text-muted);
    background: var(--bg-wight);
    line-height: 1.6;
}

:root {
    --text-dark: #212832;
    --text-muted: #5e6282;
    --btn-cols: #f1f5f9;
    --accent: #df6951;
    --primary: #f1a501;
    --cream: #fff1da;
    --bg-color: #1a1a2e;
    --bg-wight: #ffffff;
    --bor-col: #ff7f57;
    --text-color-cmoul: #94a3b8;
}

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

html {
    scroll-behavior: smooth
}

input,
button {
    border: none;
    outline: none;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    color: var(--text-dark);
    font-weight: 700;
}

a {
    text-decoration: none;
}

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

section {
    padding-block: 7rem 2rem;
    z-index: 1000;
}

.section__subtitle {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-muted);

}

.section__title {
    text-align: center;
    margin-bottom: 2.5rem;
}

/* header */

.header {
    background-size: cover;
    z-index: 10000;
    transition: background-color .4s, box-shadow .4s;
    background: var(--bg-wight);
    border-bottom: 1px solid #f0f0f0;

}

.nav {
    padding: 26px 0;
    min-height: 78px;
}

.logo {
    font-size: 1.7rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.logo .logo_one {
    color: var(--primary);
}

.logo .logo_two {
    color: var(--primary);
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
    z-index: 1001;
}

.nav-overlay {
    inset: 0;
    background: #00000059;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 900;
}

.nav-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.nav-close {
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: var(--bg-wight);
}

.nav-close::before,
.nav-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background: var(--text-dark);
    transform-origin: center;
}

.nav-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.nav-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}



.nav .nav-menu .nav-list .nav-link,
.nav .nav-menu .nav-actions .nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.nav .nav-menu .nav-list .nav-link.active,
.nav .nav-menu .nav-actions .nav-link:hover,
.nav .nav-menu .nav-list .nav-link:hover,
.nav .nav-menu .nav-actions .btn:hover {
    color: var(--accent);
}


.nav .nav-menu .nav-actions .btn {
    padding: 0.65rem 1.4rem;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid var(--text-dark);
    color: var(--text-dark);


}

.lang-dropdown {
    position: relative;
}

.lang-trigger {
    padding: 0.4rem 0.8rem;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    background: var(--bg-wight);
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.lang-trigger i {
    font-size: 0.85rem;
    transition: transform 0.2s ease;
}

.lang-dropdown.open .lang-trigger i {
    transform: rotate(180deg);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 70px;
    background: var(--bg-wight);
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 4px;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.12);
    display: none;
    flex-direction: column;
    gap: 4px;
    z-index: 2000;
}

.lang-dropdown.open .lang-menu {
    display: flex;
}

.lang-option {
    width: 100%;
    padding: 6px 8px;
    border-radius: 8px;
    background: transparent;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    text-align: center;
    transition: background 0.2s, color 0.2s;
}

.lang-option:hover {
    background: #f3f4f6;
}

.lang-option.is-current {
    display: none;
}

[data-i18n],
[data-i18n-html],
[data-i18n-attr] {
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.lang-animating [data-i18n],
.lang-animating [data-i18n-html],
.lang-animating [data-i18n-attr] {
    opacity: 0.45;
    transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
    [data-i18n],
    [data-i18n-html],
    [data-i18n-attr] {
        transition: none;
    }
}

/* hero */
.hero {
    margin-top: 5rem;
    z-index: 1;
}

.page-bg {
    background-image: url(../image/home-img-2.webp);
    transform: rotate(0deg);
    background-size: cover;
    width: 656.31px;
    top: -62px;
    right: -150px;
    z-index: -10;
}

.hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
}

.hero-content {
    z-index: 2;
}

.hero-tag {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    color: var(--accent);
}

.hero-title {
    font-family: "Volkhov", serif;
    font-size: clamp(2.4rem, 4.6vw, 4.9rem);
    color: var(--text-dark);
}

.hero-title .underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0.12em;
    width: 100%;
    height: 0.35em;
    background: #fbe3c5;
    z-index: -1;
}

.hero-text {
    max-width: 480px;
}

.hero-actions .btn {
    background-color: var(--primary);
    transition: 0.3s;
}

.hero-actions .btn:hover {
    background-color: var(--text-dark);
}

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

.play-icon {
    width: 44px;
    height: 44px;
    background: var(--accent);
    place-items: center;
    box-shadow: 0 10px 20px rgba(223, 105, 81, 0.3);
}

.play-icon::before {
    content: "";
    border-left: 10px solid var(--bg-wight);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    margin-left: 2px;
}

.hero-media {
    z-index: 1;
}

.hero-img {
    max-width: 520px;
    z-index: 3;
}

.plane {
    width: clamp(48px, 9vw, 90px);
    height: auto;
}

.plane-1 {
    top: 10%;
    left: 13%;
}

.plane-2 {
    top: 10%;
    right: 5%;
}

/* start services-section */

.dots-grid {
    top: 24px;
    right: 24px;
    grid-template-columns: repeat(5, 1fr);
}

.dots-grid span {
    padding: 0 4px;
    font-size: 13px;
    color: #ccc;
    line-height: 1;
}

.dots-grid span:nth-child(1) {
    color: var(--accent);
}

.dots-grid span:nth-child(13) {
    color: #05eb19ee;
}

.service-card {
    border: none;
    background: transparent;
    padding: 28px 18px 22px;
    border-radius: 20px;
    isolation: isolate;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: transparent;
    z-index: 0;
    transition: background-color 0.25s ease;
    pointer-events: none;
}

.service-card>* {
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .07);
}

.service-card:hover::before {
    background: #fff;
}

/* active card */
.service-card.active {
    box-shadow: 0 24px 64px #0000001a;
    transform: translateY(-8px);
    z-index: 2;
}

.service-card.active::before {
    background: #fff;
}

/* الشكل البرتقالي تحت الكارد الـ active — مظبوط زي الصورة */
.service-card.active::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -26px;
    left: -25px;
    width: 60px;
    height: 56px;
    background: var(--accent);
    border-radius: 28% 0 14% 0;
    z-index: -1;
    pointer-events: none;
}

/* icon wrap */
.icon-wrap {
    width: 110px;
    height: 100px;
}

.icon-wrap .blob {
    width: 54px;
    height: 54px;
    border-radius: 12px 8px 12px 8px;
}

.icon-wrap .blob-two {
    width: 54px;
    height: 54px;
    border-radius: 12px 8px 12px 8px;
}

.blob-peach {
    background: #FFF1DA;
}


.icon-wrap img {
    max-height: 82px;
    max-width: 90px;
    object-fit: contain;
}

.icon-wrap img.hotel-img {
    max-width: 52px;
}

.card-text:last-child {
    margin: 30px 4px;
}

/* start flights */


.flights-section .trip-card {
    box-shadow: 0 4px 24px rgba(0, 0, 0, .07);
    transition: transform .25s ease, box-shadow .25s ease;
}

.flights-section .trip-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .13);
}

.flights-section .trip_card_image {
    aspect-ratio: 3 / 2;
    background: var(--cream);
}

.flights-section .trip_card_image .card-img {
    object-fit: cover;
    object-position: center;
}

.flights-section .trip-card .card-title,
.flights-section .trip-card .card-text {
    color: var(--bg-color);
}

.flights-section .trip-card .trip-card__meta {
    font-size: .85rem;
}

/* start booking */

.bk-grid {
    grid-template-columns: 1.1fr 0.9fr;
}

.bk-tag {
    color: var(--primary);
}

.bk-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--bg-color);
    line-height: 1.15;
}

.bk-icon {
    width: 46px;
    height: 46px;
}

.ic1 {
    background: var(--primary);
}

.ic2 {
    background: var(--accent);
}

.ic3 {
    background: #0f766e;
}

.bk-step-text h3 {
    font-size: 14.5px;
    color: var(--text-dark);
    margin: 0 0 4px;
}

.bk-step-text p {
    font-size: 13px;
    color: var(--text-color-cmoul);
    line-height: 1.6;
    margin: 0;
}

/* ── RIGHT ── */
.bk-right {
    padding-right: 70px;
}

.bk-main-card {
    box-shadow: 0 8px 40px rgba(99, 102, 241, 0.10);
    max-width: 340px;
}

.bk-img-wrap {
    aspect-ratio: 16/9;
}

.bk-img-wrap img {
    object-fit: cover;
}

/* Placeholder — remove this div when you add a real <img> */
.bk-img-placeholder {
    background: linear-gradient(135deg, #bae6fd 0%, #38bdf8 100%);
}

.bk-card-body {
    padding: 1rem 1.2rem 1.2rem;
}

.bk-card-title {
    color: var(--bg-color);
    margin: 0 0 3px;
}

.bk-card-sub {
    font-size: 12px;
    color: var(--text-color-cmoul);
    margin: 0 0 0.9rem;
}


.bk-icon-btn {
    width: 34px;
    height: 34px;
    background: var(--btn-cols);
    font-size: 13px;
    color: var(--text-muted);
}

.bk-card-footer {
    border-top: 1px solid var(--btn-cols);
}

.bk-going {
    font-size: 12.5px;
    color: #64748b;
}

.bk-going i {
    color: var(--text-color-cmoul);
    font-size: 13px;
}

.bk-heart {
    width: 32px;
    height: 32px;
    background: #fef2f2;
    font-size: 13px;
    color: var(--accent);
    cursor: pointer;
    transition: transform 0.15s;
}

.bk-heart:hover {
    transform: scale(1.15);
}

/* ── Floating mini card ── */
.bk-mini-card {
    right: 4px;
    top: 73%;
    transform: translateY(-50%);
    box-shadow: 0 6px 28px rgba(99, 102, 241, 0.13);
    width: 200px;
}

.mini-avatar {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #6366f1, #a78bfa);
    font-size: 16px;
    flex-shrink: 0;
}

.mini-info {
    flex: 1;
}

.mini-label {
    font-size: 10px;
    color: var(--text-color-cmoul);
    letter-spacing: 0.5px;
}

.mini-title {
    font-size: 13px;
    color: var(--bg-color);
}

.mini-progress-wrap {
    height: 4px;
    background: var(--btn-cols);
}

.mini-progress-bar {
    width: 40%;
    background: #6366f1;
}

.mini-pct {
    font-size: 10px;
    color: #6366f1;
}


/* start testimonials-swiper  */

.testimonials {
    font-family: 'Plus Jakarta Sans', sans-serif;
    --testimonial-card-height: 280px;
    --testimonial-peek: 0px;
}


.testimonials__left {
    flex: 1;
    padding: 0 10px;
}

.testimonials__subtitle {
    font-size: 12px;
    letter-spacing: 2.5px;
    color: var(--text-muted);
}

.testimonials__title {
    font-size: clamp(2rem, 3.5vw, 9.6rem);
    color: var(--bg-color);
    line-height: 1.18;
}

.testimonials-pagination .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    background: #d9d9d9;
    border-radius: 50%;
    opacity: 1;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonials-pagination .swiper-pagination-bullet-active {
    background: var(--accent);
}


.testimonials__right {
    flex: 1;
    min-width: 0;
}

.swiper-outer {
    min-width: 0;
    height: var(--testimonial-card-height);
}

/* vertical direction */
.mySwiper.swiper-vertical .swiper-wrapper {
    flex-direction: column;
}

.swiper-slide {
    height: var(--testimonial-card-height) !important;
    padding: 4px 2px;
}

/* الكارد الصغير (غير active) */
.testimonial-card {
    background: var(--btn-cols);
    padding: 22px 24px;
    transition: background-color 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
    cursor: pointer;
    border: 1.5px solid transparent;
}

/* الكارد الكبير (active) */
.swiper-slide-active .testimonial-card {
    background: #fff;
    border-color: #efefef;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.09);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 28px 28px 24px;
}

/* avatar */
.t-avatar {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.swiper-slide-active .t-avatar {
    margin-bottom: 16px;
}

/* mini info (على الكارد الصغير) */
.t-mini {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.swiper-slide-active .t-mini {
    display: none;
}

.t-mini-name {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--bg-color);
}

.t-mini-loc {
    font-size: 0.78rem;
    color: #aaa;
}

/* full content (على الكارد الـ active) */
.t-full {
    display: none;
    width: 100%;
}

.swiper-slide-active .t-full {
    display: block;
}

.t-quote {
    font-size: 0.92rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 22px;
    position: relative;
    padding-top: 8px;
}

.t-quote::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--bg-color);
    opacity: 0.08;
    position: absolute;
    top: -14px;
    left: -4px;
    font-family: serif;
    line-height: 1;
}

.t-divider {
    height: 1px;
    background: #f0f0f0;
    margin-bottom: 18px;
}

.t-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.t-name {
    font-size: 0.93rem;
    font-weight: 700;
    color: var(--bg-color);
    margin-bottom: 3px;
}

.t-loc {
    font-size: 0.78rem;
    color: #bbb;
}

.t-stars {
    display: flex;
    gap: 2px;
}

.t-stars span {
    color: #F4B942;
    font-size: 13px;
}

.testimonials__nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

.testimonials__btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.22s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}

.testimonials__btn:hover {
    background: var(--bg-color);
    border-color: var(--bg-color);
}

.testimonials__btn:hover i {
    color: #fff;
}

.testimonials__btn i {
    color: var(--bg-color);
    width: 15px;
    height: 15px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.2;
    transition: stroke 0.2s;
}

/* start prtemans */

.prtemans-swiper {
    overflow: visible;
}

.prtemans_grid {
    justify-content: center;
    align-items: center;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 22px;
}

.prtemans_grid .image_prteman {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
    padding: 1.4rem 1.6rem;
    border-radius: 1.2rem;
    background: var(--bg-wight);
    border: 1px solid #f1f1f5;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 92px;
}

.prtemans_grid .image_prteman:hover {
    transform: translateY(-3px);
    border-color: #e8eaf2;
    box-shadow: 0 16px 32px rgba(17, 24, 39, 0.1);
}

.prtemans_grid .image_prteman:hover .img_prteman {
    transform: scale(1.04);
    filter: grayscale(0);
    opacity: 1;
}

.prtemans_grid .image_prteman .img_prteman {
    width: 100%;
    max-width: 170px;
    max-height: 46px;
    object-fit: contain;
    transition: transform 0.25s ease, filter 0.25s ease, opacity 0.25s ease;
    filter: grayscale(1);
    opacity: 0.75;
}

.prtemans-pagination {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.prtemans-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #d9d9d9;
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s;
}

.prtemans-pagination .swiper-pagination-bullet-active {
    background: var(--bg-color);
}

.prtemans.is-swiper .prtemans-swiper {
    overflow: hidden;
}

.prtemans.is-swiper .prtemans_grid {
    display: flex;
    gap: 0;
}

.prtemans.is-swiper .image_prteman {
    width: auto;
    padding: 1rem 1.1rem;
    min-height: 78px;
}

.prtemans.is-swiper .prtemans-pagination {
    display: flex;
}

/*start sgin-up */
.sub-section {
    padding: 4.5rem 0 5rem;
}

.app_sgin_up {
    max-width: 920px;
    margin: 0 auto;
    background: #f9f7fe;
    padding: 3.2rem 3rem;
    box-shadow: 0 22px 60px #3c387814;
}

/* Decorative background circles */
.app_sgin_up::before,
.app_sgin_up::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid #e7e2fb;
    pointer-events: none;
    opacity: 0.8;
}

.app_sgin_up::before {
    width: 320px;
    height: 320px;
    left: -140px;
    top: -120px;
}

.app_sgin_up::after {
    width: 260px;
    height: 260px;
    right: -120px;
    top: -70px;
}

/* Floating icon top-right */
.sub-float-icon {
    top: 2px;
    right: 1px;
    width: 50px;
    height: 50px;
    background: #5b5ef7;
    font-size: 20px;
    box-shadow: 0 10px 24px #5b5ef752;
}

.sub-float-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: white;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sub-title {
    font-size: clamp(1.25rem, 2.6vw, 1.6rem);
    font-weight: 600;
    color: var(--bg-color);
    max-width: 640px;
    line-height: 1.5;
}

.sub-form {
    border-radius: 12px;
    max-width: 520px;
    background: var(--bg-wight);
    border: 1px solid #ececf5;
    padding: 6px 8px;
    box-shadow: 0 12px 30px rgba(67, 56, 202, 0.08);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.sub-form:focus-within {
    border-color: #b9b6ff;
    box-shadow: 0 16px 36px rgba(67, 56, 202, 0.12);
}

.sub-form-icon {
    padding: 0 6px 0 10px;
}

.sub-form-icon svg {
    width: 17px;
    height: 17px;
    stroke: var(--text-color-cmoul);
    stroke-width: 1.8;
    fill: none;
}

.sub-input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    color: #1f2937;
    padding: 10px 6px;
}

.sub-input::placeholder {
    color: #9aa4c0;
}

.sub-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 11px 22px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    white-space: nowrap;
    flex-shrink: 0;
}

.sub-btn:hover {
    background: var(--bg-color);
}

.sub-btn:active {
    transform: scale(0.98);
}

/* Extra decorative dots */
.dots {
    position: absolute;
    right: 22px;
    bottom: 22px;
    display: grid;
    grid-template-columns: repeat(3, 6px);
    gap: 6px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
}

.dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #c7bfff;
    display: block;
}

/* footer */
footer {
    padding: 3.5rem 0 2rem;
    background: var(--bg-wight);
}

.footer-top {
    margin: 0 auto;
    padding: 0 0 2.5rem;
    grid-template-columns: 1.6fr repeat(3, 1fr) 1.2fr;
    border-bottom: 1px solid #f3f3f7;
}

/* Brand */
.footer-brand-name {
    color: var(--bg-color);
    letter-spacing: -0.5px;
}

.footer-brand-name span {
    color: var(--primary);
}

.footer-brand-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 210px;
}

/* Nav columns */
.footer-col h4 {
    font-size: 14px;
    color: var(--bg-color);
}

.footer-col ul li a {
    font-size: 13.5px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.15s;
}

.footer-col ul li a:hover {
    color: var(--bor-col);
}

/* Social + App */

.soc-btn {
    width: 36px;
    height: 36px;
    border: 1.5px solid #ececf5;
    background: var(--bg-wight);
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.06);
    transition: border-color 0.15s, background 0.15s;
    cursor: pointer;
    color: var(--text-muted);
}

.soc-btn:hover{
    border-color: var(--primary);
    background: var(--bg-color);
    color: var(--bor-col);
}

.soc-btn svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

/* Instagram gradient special */
.soc-ig {
    background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
    color: white;
}

.soc-ig:hover {
    opacity: 0.85;
    background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
    color: white;
    border-color: transparent;
}

.footer-app-label {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 0.7rem;
    letter-spacing: 0.3px;
}

.app-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.app-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    background: var(--bg-color);
    color: #fff;
    border-radius: 8px;
    padding: 7px 12px;
    transition: background 0.15s;
}

.app-badge:hover {
    background: #1d2042;
}

.app-badge i {
    width: 16px;
    height: 16px;
    fill: white;
    flex-shrink: 0;
}

.badge-text {
    line-height: 1.1;
}

.badge-text small {
    font-size: 9px;
    color: #cbd5f0;

}

.badge-text span {
    font-size: 12px;
}

/* Bottom bar */
.footer-bottom {
    max-width: 1100px;
    padding: 1.5rem 1.5rem 0;
}

.footer-bottom p {
    font-size: 12.5px;
    color: var(--text-muted);
}

/* ================== Media Queries ================== */

@media (max-width:1200px) {
    .prtemans_grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 992px) {
    .dots-grid {
        display: grid;
        /* تظهر فقط على شاشات lg+ */
    }
}

@media (max-width: 992px) {
    .bk-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .bk-right {
        justify-content: center;
        padding-right: 0;
        padding-bottom: 80px;
        order: 1;
    }

    .bk-left {
        order: 2;
        margin-top: 60px;
    }

    .bk-mini-card {
        right: auto;
        left: 50%;
        top: auto;
        bottom: -18px;
        transform: translateX(-50%);
    }

    .nav {
        padding: 0.9rem 10px;
    }

    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        background: var(--bg-wight);
        border: 1px solid #dcdcdc;
        border-radius: 10px;
        cursor: pointer;
        z-index: 60;
    }

    .nav-toggle span {
        width: 18px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: min(78vw, 320px);
        flex-direction: column;
        align-items: flex-start;
        gap: 1.4rem;
        padding: 86px 24px 32px;
        background: var(--bg-wight);
        border-radius: 0 26px 26px 0;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
        transform: translateX(-105%);
        pointer-events: none;
        transition: transform 0.25s ease;
        z-index: 1001;
        overflow-y: auto;
    }

    .nav-menu.open {
        transform: translateX(0);
        pointer-events: auto;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-list li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 14px 4px;
        font-size: 1rem;
        color: var(--text-dark);
    }

    .nav-link.active {
        color: var(--accent);
        font-weight: 600;
    }

    .nav-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-top: 14px;
        width: 100%;
    }

    .nav-actions .nav-link,
    .nav-actions .btn {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
        border-radius: 10px;
        border: 1px solid #dcdcdc;
    }

    .nav-actions .btn {
        background: var(--bg-wight);
    }


    .nav-close {
        display: inline-flex;
    }

    .page-bg {
        display: none;
    }

    .dots-grid {
        display: none;
    }

    .prtemans_grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .testimonials {
        --testimonial-card-height: 320px;
    }

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

    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-content {
        order: 2;
    }

    .hero-media {
        order: 1;
    }

    .testimonials__inner {
        flex-direction: column;
        gap: 40px;
    }

    .testimonials__left {
        flex: none;
        width: 100%;
        text-align: center;
    }

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

    /* السهمين يبقو جنب بعض تحت الـ swiper */
    .testimonials__right {
        flex-direction: column;
        width: 100%;
        gap: 20px;
        align-items: stretch;
    }

    .testimonials__nav {
        flex-direction: row;
        justify-content: center;
    }

    .swiper-outer {
        width: 100%;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-brand-desc {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .prtemans {
        padding: 60px 0;
    }

    .prtemans_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {

    /* md+: اعمل align-items center عشان الكارد الـ active يبان مرفوع */
    .row {
        align-items: center;
    }
}

@media (min-width: 576px) and (max-width: 767px) {

    .row-cols-sm-2 .col:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 340px;
        margin: 0 auto;
    }

    .service-card.active::after {
        bottom: -22px;
    }

}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-top {
        padding: 0 1.2rem 2rem;
    }

    .footer-bottom {
        padding: 1.2rem 1.2rem 0;
    }
}

@media (max-width: 575px) {

    .service-card.active {
        transform: none;
        box-shadow: 0 12px 32px rgba(0, 0, 0, .09);
    }

    .service-card.active::after {
        display: none;
    }

    .testimonials {
        padding: 50px 0;
        --testimonial-card-height: 340px;
    }

    .testimonial-card {
        padding: 16px 16px;
    }

    .swiper-slide-active .testimonial-card {
        padding: 22px 18px 18px;
    }
}

@media (max-width: 500px) {
    .sub-form {
        flex-direction: column;
        border-radius: 12px;
        background: transparent;
        border: none;
        box-shadow: none;
        gap: 10px;
    }

    .sub-form .sub-form-icon {
        display: none;
    }

    .sub-input {
        width: 100%;
        background: var(--bg-wight);
        border: 1px solid #ececf5;
        border-radius: 10px;
        padding: 13px 16px;
        font-size: 14px;
    }

    .sub-btn {
        width: 100%;
        border-radius: 10px;
        padding: 14px;
    }

    .sub-section {
        padding: 3.5rem 0 4rem;
    }

    .app_sgin_up {
        padding: 2.4rem 1.4rem;
        border-radius: 22px;
    }
}

@media (max-width: 480px) {
    .bk-title {
        font-size: 1.7rem;
    }

    .bk-main-card {
        max-width: 100%;
    }

    .bk-mini-card {
        width: 170px;
        padding: 0.65rem 0.75rem;
    }

    .prtemans_grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 380px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}
