/* Global Styles */
:root {
    --primary-blue: #04228c;
    --light-blue: #3c84ec;
    --accent-yellow: #fdd835;
    --text-dark: #333;
    --text-light: #fff;
    --font-main: 'Harmattan', sans-serif;
    --font-heading: 'Kufam', sans-serif;
    --site-header-height: 112px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    font-size: 25px;
    direction: rtl;
    background-color: #f9f9f9;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* Header - transparent by default, glassy on scroll */
.site-header {
    background: transparent;
    padding: 10px 0;
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease, -webkit-backdrop-filter 0.35s ease;
}

.site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(118deg,
            rgba(255, 255, 255, 0.26) 0%,
            rgba(255, 255, 255, 0.08) 42%,
            rgba(255, 255, 255, 0.2) 58%,
            rgba(255, 255, 255, 0.04) 100%);
    transition: opacity 0.35s ease;
}

.site-header.is-scrolled {
    padding: 10px 0;
    background: linear-gradient(120deg,
            rgba(3, 12, 40, 0.86) 0%,
            rgba(6, 24, 78, 0.76) 48%,
            rgba(2, 10, 34, 0.86) 100%);
    border-bottom-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 38px rgba(1, 8, 28, 0.42);
    backdrop-filter: blur(22px) saturate(170%);
    -webkit-backdrop-filter: blur(22px) saturate(170%);
}

.site-header.is-scrolled::before {
    opacity: 0.96;
    background: linear-gradient(118deg,
            rgba(255, 255, 255, 0.16) 0%,
            rgba(255, 255, 255, 0.04) 42%,
            rgba(255, 221, 117, 0.08) 58%,
            rgba(255, 255, 255, 0.02) 100%);
}

.site-header .container {
    max-width: none;
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    direction: rtl;
    padding: 0 5em;
    position: relative;
    z-index: 2;
}

.home-hero-shell {
    position: relative;
}

.site-header--in-hero {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1100;
}

.site-header--in-hero.is-scrolled {
    position: fixed;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    background: linear-gradient(160deg,
            rgba(255, 255, 255, 0.94) 0%,
            rgba(255, 255, 255, 0.78) 45%,
            rgba(255, 255, 255, 0.58) 100%);
    padding: 16px 11px 10px;
    border-radius: 0 0 18px 18px;
    margin-top: -16px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-top: 0;
    backdrop-filter: blur(8px) saturate(170%);
    -webkit-backdrop-filter: blur(8px) saturate(170%);
    box-shadow: 0 10px 20px rgba(4, 34, 140, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.logo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.72) 0%,
            rgba(255, 255, 255, 0.22) 40%,
            rgba(255, 255, 255, 0.06) 100%);
    pointer-events: none;
    z-index: 1;
}

.logo::after {
    content: '';
    position: absolute;
    top: -45%;
    left: -55%;
    width: 42%;
    height: 190%;
    background: linear-gradient(115deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.95) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(18deg) translateX(-220%);
    opacity: 0;
    filter: none;
    pointer-events: none;
    z-index: 3;
    animation: none;
}

.logo img {
    display: block;
    width: auto;
    height: 64px;
    filter: none;
    position: relative;
    z-index: 2;
}

@keyframes logoSheen {

    0%,
    18% {
        transform: rotate(18deg) translateX(-220%);
        opacity: 0;
    }

    28% {
        opacity: 0.9;
    }

    42% {
        transform: rotate(18deg) translateX(420%);
        opacity: 0;
    }

    100% {
        transform: rotate(18deg) translateX(420%);
        opacity: 0;
    }
}

.main-nav ul {
    display: flex;
    gap: 25px;
}

.main-nav a {
    color: var(--text-light);
    font-weight: 600;
    font-size: 25px;
    position: relative;
    transition: none;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent-yellow);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-quote {
    background: rgba(253, 216, 53, 0.9);
    border: none;
    color: var(--primary-blue);
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(253, 216, 53, 0.4);
    font-size: 20px;
}

.btn-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: none;
    display: none;
}

.btn-quote:hover {
    background: rgba(253, 216, 53, 1);
    box-shadow: 0 0 25px rgba(253, 216, 53, 0.7);
}

.header-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(6, 24, 78, 0.7);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(1, 8, 28, 0.25);
}

.header-menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

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

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

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

.header-menu-backdrop {
    display: none;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Feature Section */
.section {
    padding: 80px 0;
}

.feature-section {
    background: #fff;
}

.row {
    display: flex;
    align-items: center;
    gap: 50px;
}

.col-text {
    flex: 1;
}

.col-img {
    flex: 1;
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.text-blue {
    color: var(--light-blue);
}

.section-desc {
    font-size: 25px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.feature-list li {
    margin-bottom: 15px;
    font-size: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
}

.feature-list i {
    color: var(--primary-blue);
}

.agent-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.agent-box img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--accent-yellow);
}

.agent-info span {
    display: block;
    font-weight: 700;
    font-size: 25px;
}

.agent-info small {
    font-size: 25px;
    color: #888;
}

.feature-img {
    width: 100%;
    border-radius: 10px;
    /* Placeholder styling */
}


/* Stats Section */
.stats-section {
    background: #f9f9f9;
}

.stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.big-number {
    font-size: 12rem;
    font-weight: 900;
    color: #e0e0e0;
    /* Faded bg number */
    line-height: 0.8;
    background: url('../../images/khloud.webp');
    /* Mask effect if possible, else solid */
    background-clip: text;
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; Optional */
    color: #ccc;
}

.stats-text h3 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.stats-circles {
    display: flex;
    gap: 30px;
}

.circle-item {
    text-align: center;
}

.circle-ring {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 8px solid #ddd;
    border-top-color: var(--accent-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 10px;
    /* This is a simple CSS border trick, for full circle progress usually SVG is used */
}

/* CTA Video */
.video-cta-section {
    position: relative;
    background: url('../../images/khloud.webp') center/cover fixed;
    padding: 100px 0;
    color: #fff;
    text-align: center;
}

.video-cta-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(4, 34, 140, 0.9), rgba(4, 34, 140, 0.7));
}

.video-cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    transition: 0.3s;
}

.feature-card:hover {
    background: var(--accent-yellow);
    color: var(--primary-blue);
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 40px;
    margin-bottom: 20px;
}

.play-btn {
    width: 64px;
    height: 64px;
    background: var(--accent-yellow);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    color: var(--primary-blue);
    cursor: pointer;
    box-shadow: 0 0 0 8px rgba(253, 216, 53, 0.3);
    animation: pulseBtn 2s infinite;
}

@keyframes pulseBtn {
    0% {
        box-shadow: 0 0 0 0 rgba(253, 216, 53, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(253, 216, 53, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(253, 216, 53, 0);
    }
}

/* Icons Section */
.icons-section {
    position: relative;
    padding: 110px 0 96px;
    background:
        radial-gradient(85% 64% at 10% 8%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0) 72%),
        radial-gradient(70% 56% at 90% 92%, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 74%),
        linear-gradient(140deg, #ffe165 0%, #fff6cb 34%, #ffffff 54%, #ffe370 100%);
    overflow: hidden;
    isolation: isolate;
}

.icons-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.2;
    background:
        linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px) 0 0 / 78px 78px,
        linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px) 0 0 / 78px 78px;
}

.icons-section>.container {
    position: relative;
    z-index: 2;
}

.icons-head {
    max-width: 940px;
    margin: 0 auto 30px;
    text-align: center;
}

.icons-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0f2f91;
    font-weight: 700;
    font-size: 20px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(15, 47, 145, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
    margin-bottom: 16px;
}

.icons-kicker::before {
    content: '';
    width: 28px;
    height: 3px;
    border-radius: 10px;
    background: linear-gradient(90deg, #f0c517, rgba(240, 197, 23, 0.2));
}

.icons-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.3;
    color: #0f2f91;
    margin-bottom: 12px;
    letter-spacing: -0.4px;
}

.icons-subtitle {
    font-size: 21px;
    line-height: 1.8;
    color: #2f3f63;
    margin-bottom: 18px;
}

.icons-search-wrap {
    max-width: 680px;
    margin: 0 auto 12px;
}

.icons-search {
    width: 100%;
    border: 1px solid rgba(15, 47, 145, 0.2);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.88);
    color: #15326d;
    font-size: 20px;
    padding: 10px 16px;
    outline: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.icons-search:focus {
    border-color: rgba(15, 47, 145, 0.42);
    box-shadow: 0 0 0 4px rgba(15, 47, 145, 0.1);
}

.icons-meta {
    font-size: 18px;
    color: #355188;
    font-weight: 700;
    min-height: 1.6em;
}

.icons-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.icon-card {
    border: 1px solid rgba(15, 47, 145, 0.14);
    border-radius: 16px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 249, 255, 0.94) 100%);
    box-shadow: 0 12px 24px rgba(10, 36, 103, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 12px;
    min-height: 110px;
}

.icon-card i {
    font-size: 30px;
    color: #0f2f91;
}

.icon-card span {
    direction: ltr;
    font-size: 15px;
    line-height: 1.4;
    color: #2f4d86;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.icons-empty {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 20px;
    color: #29427a;
    background: rgba(255, 255, 255, 0.72);
    border: 1px dashed rgba(15, 47, 145, 0.28);
    border-radius: 16px;
    padding: 18px;
}

.icons-actions {
    margin-top: 20px;
    text-align: center;
}

.icons-load-more {
    border: 0;
    border-radius: 999px;
    background: linear-gradient(120deg, #ffe76f 0%, #f4c41d 100%);
    color: #0b2b7d;
    font-size: 18px;
    font-weight: 800;
    padding: 10px 22px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(244, 196, 29, 0.34);
}

.icons-load-more:hover {
    box-shadow: 0 14px 24px rgba(244, 196, 29, 0.4);
}

.icons-load-more[hidden] {
    display: none;
}

@media (max-width: 1100px) {
    .icons-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .icons-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .icons-section {
        padding: 82px 0 74px;
    }

    .icons-subtitle {
        font-size: 19px;
    }

    .icons-search {
        font-size: 18px;
    }

    .icons-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .icon-card {
        min-height: 96px;
        padding: 12px 8px;
    }

    .icon-card i {
        font-size: 24px;
    }

    .icon-card span {
        font-size: 13px;
    }
}

/* Footer */
.site-footer {
    position: relative;
    padding: 96px 0 26px;
    color: rgba(255, 255, 255, 0.92);
    overflow: hidden;
    isolation: isolate;
    background: #02103b;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        linear-gradient(118deg,
            rgba(1, 8, 28, 0.96) 6%,
            rgba(2, 17, 63, 0.84) 46%,
            rgba(11, 53, 136, 0.56) 74%,
            rgba(2, 11, 37, 0.96) 100%),
        radial-gradient(64% 54% at 10% 92%, rgba(60, 132, 236, 0.22) 0%, rgba(60, 132, 236, 0) 70%),
        radial-gradient(50% 40% at 84% 14%, rgba(255, 221, 117, 0.22) 0%, rgba(255, 221, 117, 0) 72%),
        linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px) 0 0 / 120px 120px,
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px) 0 0 / 120px 120px;
    opacity: 1;
}

.site-footer::after {
    content: '';
    position: absolute;
    inset: -22% 0 -22% 0;
    pointer-events: none;
    z-index: 1;
    background: url('../../images/hero-clouds.webp') repeat-x center top;
    background-size: 1600px auto;
    opacity: 0.085;
    transform: translate3d(0, 0, 0);
    animation: none;
}

@keyframes footerClouds {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(22%, 0, 0);
    }
}

.site-footer>.container {
    position: relative;
    z-index: 3;
}

.footer-glow {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    filter: blur(18px);
    pointer-events: none;
    z-index: 2;
    opacity: 0.9;
}

.footer-glow-right {
    top: -240px;
    right: -220px;
    background: radial-gradient(circle, rgba(255, 221, 117, 0.24) 0%, rgba(255, 221, 117, 0) 72%);
}

.footer-glow-left {
    bottom: -270px;
    left: -230px;
    background: radial-gradient(circle, rgba(60, 132, 236, 0.24) 0%, rgba(60, 132, 236, 0) 72%);
}

.footer-bg-panel {
    position: absolute;
    width: min(680px, 80vw);
    height: min(680px, 80vw);
    right: -240px;
    bottom: -300px;
    pointer-events: none;
    z-index: 2;
    background: url('../../images/hero-frame.webp') no-repeat center/contain;
    opacity: 0.1;
    mix-blend-mode: screen;
    filter: drop-shadow(0 24px 55px rgba(0, 0, 0, 0.24));
    transform: rotate(-8deg);
    animation: none;
}

@keyframes footerPanelFloat {
    0% {
        transform: translate3d(0, 0, 0) rotate(-8deg);
    }

    100% {
        transform: translate3d(-16px, -18px, 0) rotate(-4deg);
    }
}

.footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 30px 28px;
    border-radius: 26px;
    border: 1px solid transparent;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.06) 100%) padding-box,
        linear-gradient(115deg, rgba(255, 221, 117, 0.72), rgba(60, 132, 236, 0.55), rgba(255, 255, 255, 0.14)) border-box;
    box-shadow: 0 26px 54px rgba(1, 8, 28, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    position: relative;
    overflow: hidden;
    margin-bottom: 44px;
}

.footer-cta::after {
    content: '';
    position: absolute;
    inset: -40% -35%;
    background: linear-gradient(105deg,
            rgba(255, 255, 255, 0) 36%,
            rgba(255, 255, 255, 0.12) 44%,
            rgba(255, 255, 255, 0.6) 50%,
            rgba(255, 255, 255, 0.14) 56%,
            rgba(255, 255, 255, 0) 68%);
    transform: translateX(-170%) rotate(-16deg);
    opacity: 0;
    pointer-events: none;
    mix-blend-mode: screen;
    animation: none;
    display: none;
}

@keyframes footerCtaShine {

    0%,
    18% {
        transform: translateX(-170%) rotate(-16deg);
        opacity: 0;
    }

    32% {
        opacity: 0.92;
    }

    52% {
        transform: translateX(168%) rotate(-16deg);
        opacity: 0;
    }

    100% {
        transform: translateX(168%) rotate(-16deg);
        opacity: 0;
    }
}

.footer-cta-copy {
    max-width: 760px;
}

.footer-cta-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(2, 11, 37, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.14);
    margin-bottom: 14px;
}

.footer-cta-kicker::before {
    content: '';
    width: 28px;
    height: 3px;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(255, 221, 117, 0.95), rgba(255, 221, 117, 0.18));
}

.footer-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 2.6vw, 2.6rem);
    line-height: 1.3;
    color: #ffffff;
    letter-spacing: -0.3px;
    margin-bottom: 10px;
}

.footer-cta-subtitle {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    border: 1px solid transparent;
    transition: none;
    white-space: nowrap;
}

.footer-btn:hover {
    transform: none;
}

.footer-btn-primary {
    background: rgba(253, 216, 53, 0.95);
    color: rgba(2, 11, 37, 0.92);
    box-shadow: 0 14px 28px rgba(253, 216, 53, 0.22);
}

.footer-btn-primary:hover {
    background: rgba(253, 216, 53, 1);
    box-shadow: 0 18px 34px rgba(253, 216, 53, 0.3);
}

.footer-btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 14px 28px rgba(1, 8, 28, 0.22);
}

.footer-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.26);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.75fr 0.95fr 1fr;
    gap: 22px;
    align-items: start;
}

.footer-col {
    padding: 20px 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 36px rgba(1, 8, 28, 0.28);
    backdrop-filter: blur(10px) saturate(150%);
    -webkit-backdrop-filter: blur(10px) saturate(150%);
    position: relative;
    overflow: hidden;
}

.footer-col::after {
    content: '';
    position: absolute;
    inset: -40% -32%;
    background: radial-gradient(circle at 30% 22%, rgba(255, 221, 117, 0.14) 0%, rgba(255, 221, 117, 0) 58%);
    pointer-events: none;
    opacity: 0.55;
}

.footer-col>* {
    position: relative;
    z-index: 2;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 14px 10px;
    border-radius: 18px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.62) 100%);
    border: 1px solid rgba(255, 255, 255, 0.62);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
    margin-bottom: 14px;
}

.footer-logo img {
    display: block;
    width: auto;
    height: 68px;
}

.footer-text {
    font-size: 20px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(2, 11, 37, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    font-weight: 700;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: -0.2px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 19px;
    font-weight: 600;
    transition: none;
}

.footer-links a:hover {
    color: rgba(253, 216, 53, 0.95);
    transform: none;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 19px;
}

.footer-contact i {
    width: 22px;
    text-align: center;
    color: rgba(255, 221, 117, 0.92);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    transition: none;
}

.footer-contact a:hover {
    color: rgba(253, 216, 53, 1);
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.footer-social a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 26px rgba(1, 8, 28, 0.24);
    transition: none;
}

.footer-social a:hover {
    transform: none;
    background: rgba(253, 216, 53, 0.95);
    border-color: rgba(253, 216, 53, 0.4);
    color: rgba(2, 11, 37, 0.92);
}

.footer-bottom {
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.footer-copy {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom-links {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom-links a {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 600;
    transition: none;
}

.footer-bottom-links a:hover {
    color: rgba(253, 216, 53, 0.95);
}

.footer-sep {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.32);
}

@media (max-width: 980px) {
    .site-footer {
        padding: 82px 0 24px;
    }

    .footer-cta {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .site-footer {
        padding: 70px 0 22px;
    }

    .footer-cta {
        padding: 22px 18px;
        margin-bottom: 28px;
    }

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

    .footer-col {
        padding: 18px 16px;
    }

    .footer-logo img {
        height: 62px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-footer::after,
    .footer-bg-panel,
    .footer-cta::after {
        animation: none !important;
    }

    .footer-btn,
    .footer-social a,
    .footer-links a {
        transition: none !important;
    }
}

/* About Section */
.about-section {
    background:
        radial-gradient(88% 68% at 8% 8%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0) 70%),
        radial-gradient(75% 62% at 94% 92%, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0) 72%),
        linear-gradient(140deg, #ffe165 0%, #fff6cb 34%, #ffffff 54%, #ffe370 100%);
    padding: 96px 0 118px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.about-section::before {
    content: '';
    position: absolute;
    width: 560px;
    height: 560px;
    top: -290px;
    left: -260px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 72%);
    pointer-events: none;
    z-index: 0;
}

.about-section::after {
    content: '';
    position: absolute;
    width: 430px;
    height: 430px;
    right: -180px;
    bottom: -180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(253, 216, 53, 0.23) 0%, rgba(253, 216, 53, 0) 72%);
    pointer-events: none;
    z-index: 0;
}

.about-section>.container {
    position: relative;
    z-index: 2;
}

.about-section-shine {
    position: absolute;
    inset: -42% -32%;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transform: translateX(-170%) rotate(-14deg);
    background: linear-gradient(106deg,
            rgba(255, 255, 255, 0) 34%,
            rgba(255, 255, 255, 0.08) 42%,
            rgba(255, 255, 255, 0.42) 50%,
            rgba(255, 255, 255, 0.1) 58%,
            rgba(255, 255, 255, 0) 68%);
    mix-blend-mode: screen;
    filter: blur(0.8px);
    animation: aboutSectionShine 9.6s cubic-bezier(0.33, 0.11, 0.18, 1) infinite;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
    direction: ltr;
    align-items: center;
    gap: 68px;
    position: relative;
}

.about-copy {
    direction: rtl;
    position: relative;
    padding-inline-end: 0;
}

.about-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0f2f91;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 18px;
    padding: 8px 17px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(15, 47, 145, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.about-kicker::before {
    content: '';
    width: 32px;
    height: 3px;
    border-radius: 12px;
    background: linear-gradient(90deg, #fdd835, rgba(253, 216, 53, 0.15));
}

.about-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 2.8vw, 3.25rem);
    color: #0f2f91;
    line-height: 1.35;
    margin-bottom: 18px;
    letter-spacing: -0.4px;
    text-shadow: 0 10px 24px rgba(15, 47, 145, 0.14);
}

.about-title span {
    display: block;
    color: #1F3C96;
}

.about-text {
    font-size: 20px;
    line-height: 1.86;
    color: #2f3f63;
    margin-bottom: 0;
    max-width: 760px;
}

.about-figure {
    min-width: 400px;
    position: relative;
    direction: rtl;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 0;
}

.about-figure::before {
    content: '';
    position: absolute;
    width: 430px;
    height: 430px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(4, 34, 140, 0.16) 0%,
            rgba(4, 34, 140, 0.05) 38%,
            rgba(4, 34, 140, 0) 72%);
    pointer-events: none;
}

.about-number-wrap {
    display: grid;
    place-items: center;
    width: min(100%, 500px);
    line-height: 0;
    filter: drop-shadow(0 28px 34px rgba(4, 34, 140, 0.26));
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
    animation: aboutNumberFloat 6.8s ease-in-out infinite;
}

.about-number-wrap::before {
    content: '';
    position: absolute;
    width: 82%;
    height: 52%;
    left: 9%;
    bottom: 10%;
    border-radius: 50%;
    background: radial-gradient(ellipse at center,
            rgba(4, 34, 140, 0.34) 0%,
            rgba(4, 34, 140, 0.1) 42%,
            rgba(4, 34, 140, 0) 75%);
    filter: blur(11px);
    pointer-events: none;
    z-index: 1;
}

.about-number-wrap::after {
    content: '';
    position: absolute;
    inset: 9% 9% 14% 10%;
    background: linear-gradient(112deg,
            rgba(255, 255, 255, 0) 36%,
            rgba(255, 255, 255, 0.72) 47%,
            rgba(255, 255, 255, 0.12) 56%,
            rgba(255, 255, 255, 0) 68%);
    transform: translateX(-150%) skewX(-14deg);
    mix-blend-mode: screen;
    opacity: 0;
    filter: blur(1px);
    pointer-events: none;
    z-index: 3;
    animation: aboutNumberSheen 7.4s cubic-bezier(0.29, 0.17, 0.18, 1) infinite;
}

.about-number-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    position: relative;
    z-index: 2;
    display: block;
    margin-inline: auto;
    transform-origin: center;
    filter:
        drop-shadow(0 5px 0 rgba(255, 255, 255, 0.14))
        drop-shadow(0 22px 34px rgba(4, 34, 140, 0.28));
    animation: aboutNumberBreath 4.8s ease-in-out infinite alternate;
}

@keyframes aboutNumberFloat {

    0%,
    100% {
        transform: translateY(0) rotate(-0.5deg);
    }

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

@keyframes aboutNumberSheen {

    0%,
    16% {
        transform: translateX(-150%) skewX(-14deg);
        opacity: 0;
    }

    30% {
        opacity: 0.92;
    }

    48% {
        transform: translateX(160%) skewX(-14deg);
        opacity: 0;
    }

    100% {
        transform: translateX(160%) skewX(-14deg);
        opacity: 0;
    }
}

@keyframes aboutNumberBreath {
    0% {
        transform: scale(0.992) rotate(-0.7deg);
    }

    100% {
        transform: scale(1.018) rotate(0.9deg);
    }
}

@keyframes aboutSectionShine {

    0%,
    16% {
        transform: translateX(-170%) rotate(-14deg);
        opacity: 0;
    }

    30% {
        opacity: 0.96;
    }

    48% {
        transform: translateX(165%) rotate(-14deg);
        opacity: 0;
    }

    100% {
        transform: translateX(165%) rotate(-14deg);
        opacity: 0;
    }
}

@media (max-width: 1240px) {
    .about-layout {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
        gap: 44px;
    }

    .about-figure {
        min-width: 360px;
    }

    .about-number-image {
        max-width: 420px;
    }
}

@media (max-width: 1100px) {
    .about-layout {
        gap: 28px;
    }
}

@media (max-width: 930px) {
    .about-section {
        padding: 75px 0 88px;
    }

    .about-layout {
        direction: rtl;
        grid-template-columns: 1fr;
        text-align: center;
        gap: 26px;
    }

    .about-copy {
        width: 100%;
        padding-inline-end: 0;
    }

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

    .about-title span {
        margin-top: 6px;
    }

    .about-text {
        margin-inline: auto;
    }

    .about-figure {
        min-width: 0;
        width: 100%;
        max-width: 580px;
    }

    .about-number-wrap {
        animation: aboutNumberFloat 7.4s ease-in-out infinite;
    }
}

@media (max-width: 600px) {
    .about-layout {
        gap: 22px;
    }

    .about-title {
        font-size: clamp(1.8rem, 9vw, 2.35rem);
    }

    .about-text {
        font-size: 20px;
        line-height: 1.8;
    }

    .about-number-image {
        max-width: 280px;
    }

    .about-number-wrap::after {
        opacity: 0.66;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-section-shine,
    .about-number-wrap,
    .about-number-image,
    .about-number-wrap::after {
        animation: none !important;
    }
}

/* Trips Section */
.trips-section {
    position: relative;
    padding: 112px 0 124px;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(88% 68% at 8% 8%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0) 70%),
        radial-gradient(75% 62% at 94% 92%, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0) 72%),
        linear-gradient(140deg, #ffe165 0%, #fff6cb 34%, #ffffff 54%, #ffe370 100%);
}

.trips-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.28;
    background:
        linear-gradient(rgba(255, 255, 255, 0.45) 1px, transparent 1px) 0 0 / 70px 70px,
        linear-gradient(90deg, rgba(255, 255, 255, 0.45) 1px, transparent 1px) 0 0 / 70px 70px;
}

.trips-section>.container {
    position: relative;
    z-index: 2;
}

.trips-glow {
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    filter: blur(16px);
    pointer-events: none;
    z-index: 1;
}

.trips-glow-right {
    top: -180px;
    right: -140px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0) 72%);
}

.trips-glow-left {
    bottom: -200px;
    left: -140px;
    background: radial-gradient(circle, rgba(255, 223, 102, 0.65) 0%, rgba(255, 223, 102, 0) 72%);
}

.trips-head {
    text-align: center;
    max-width: 960px;
    margin: 0 auto 48px;
}

.trips-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0f2f91;
    font-weight: 700;
    font-size: 20px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(15, 47, 145, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
    margin-bottom: 16px;
}

.trips-kicker::before {
    content: '';
    width: 28px;
    height: 3px;
    border-radius: 10px;
    background: linear-gradient(90deg, #f0c517, rgba(240, 197, 23, 0.2));
}

.trips-title {
    font-family: var(--font-heading);
    font-size: clamp(2.1rem, 3.2vw, 3.6rem);
    line-height: 1.3;
    color: #0f2f91;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    text-shadow: 0 10px 26px rgba(15, 47, 145, 0.14);
}

.trips-subtitle {
    font-size: 21px;
    line-height: 1.82;
    color: #2f3f63;
}

.trips-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.trip-card {
    --rx: 0deg;
    --ry: 0deg;
    --mx: 50%;
    --my: 50%;
    --lift: 0px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 255, 0.96) 100%);
    border: 1px solid rgba(17, 47, 121, 0.1);
    box-shadow:
        0 18px 34px rgba(11, 34, 104, 0.14),
        0 6px 18px rgba(11, 34, 104, 0.09);
    transform: perspective(1200px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(var(--lift));
    transform-style: preserve-3d;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    isolation: isolate;
}

.trip-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.08) 20%, rgba(255, 255, 255, 0) 48%);
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.28s ease;
}

.trip-card::after {
    content: '';
    position: absolute;
    inset: -70% -46%;
    background: linear-gradient(108deg,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 0.52) 50%,
            rgba(255, 255, 255, 0.08) 58%,
            rgba(255, 255, 255, 0) 68%);
    transform: translateX(-145%) rotate(-15deg);
    opacity: 0;
    pointer-events: none;
    z-index: 4;
    animation: tripCardSheen 8.2s cubic-bezier(0.28, 0.16, 0.19, 1) infinite;
}

.trip-card.is-tilting,
.trip-card:hover {
    --lift: -8px;
    border-color: rgba(17, 47, 121, 0.18);
    box-shadow:
        0 28px 44px rgba(11, 34, 104, 0.2),
        0 10px 24px rgba(11, 34, 104, 0.14);
}

.trip-card.is-tilting::before,
.trip-card:hover::before {
    opacity: 1;
}

.trip-media {
    margin: 0;
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.trip-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.trip-card:hover .trip-media img {
    transform: scale(1.08);
}

.trip-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 12, 40, 0) 42%, rgba(2, 12, 40, 0.66) 100%);
}

.trip-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.95);
    color: #0a2a7a;
    font-size: 16px;
    font-weight: 800;
    padding: 7px 13px;
    border-radius: 999px;
    border: 1px solid rgba(10, 42, 122, 0.14);
    box-shadow: 0 8px 16px rgba(3, 18, 58, 0.16);
}

.trip-content {
    padding: 18px 18px 20px;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.trip-content h3 {
    font-size: 30px;
    line-height: 1.26;
    color: #0f2f91;
    margin-bottom: 12px;
}

.trip-desc {
    font-size: 19px;
    line-height: 1.75;
    color: #3a4f78;
    margin-bottom: 16px;
}

.trip-title-link {
    color: inherit;
}

.trip-title-link:hover {
    color: #1947a3;
}

.trip-features {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

.trip-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    color: #3a4f78;
}

.trip-features i {
    color: #f0c517;
    font-size: 15px;
}

.trip-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
}

.trip-price small {
    display: block;
    font-size: 15px;
    color: #5570a4;
    margin-bottom: 2px;
}

.trip-price strong {
    font-size: 26px;
    line-height: 1;
    color: #12357f;
    font-weight: 900;
}

.trip-price strong span {
    font-size: 17px;
    font-weight: 700;
}

.trip-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 15px;
    border-radius: 999px;
    background: linear-gradient(120deg, #ffe76f 0%, #f4c41d 100%);
    color: #0b2b7d;
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 8px 16px rgba(244, 196, 29, 0.34);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trip-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(244, 196, 29, 0.42);
}

@keyframes tripCardSheen {

    0%,
    16% {
        transform: translateX(-145%) rotate(-15deg);
        opacity: 0;
    }

    31% {
        opacity: 0.92;
    }

    46% {
        transform: translateX(165%) rotate(-15deg);
        opacity: 0;
    }

    100% {
        transform: translateX(165%) rotate(-15deg);
        opacity: 0;
    }
}

@media (max-width: 1180px) {
    .trips-grid {
        gap: 18px;
    }

    .trip-content h3 {
        font-size: 28px;
    }

    .trip-desc {
        font-size: 18px;
    }

    .trip-features li {
        font-size: 17px;
    }

    .trip-price strong {
        font-size: 24px;
    }
}

@media (max-width: 980px) {
    .trips-section {
        padding: 86px 0 98px;
    }

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

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

    .trip-content {
        padding: 14px 12px 13px;
    }

    .trip-content h3 {
        font-size: 26px;
    }

    .trip-desc {
        font-size: 17px;
    }

    .trip-features li {
        font-size: 16px;
    }

    .trip-footer {
        flex-wrap: wrap;
        gap: 8px;
    }

    .trip-price strong {
        font-size: 21px;
    }

    .trip-cta {
        font-size: 16px;
        padding: 8px 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .trip-card,
    .trip-card::after,
    .trip-content,
    .trip-cta,
    .trips-section::before {
        animation: none !important;
        transition: none !important;
    }

    .trip-card {
        transform: none;
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .row {
        flex-direction: column;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 10px 0;
    }

    .logo {
        margin-top: -10px;
    }

    .logo img {
        width: auto;
        height: 80px;
    }

    .big-number {
        font-size: 8rem;
    }
}

/* Disable page-load entry animations */
.about-section-shine,
.about-number-wrap,
.about-number-wrap::after,
.about-number-image,
.trip-card::after,
.play-btn {
    animation: none !important;
}

.about-section-shine,
.about-number-wrap::after,
.trip-card::after {
    display: none;
}

.inner-page-main {
    padding-top: 0;
    --inner-header-offset: var(--site-header-height);
}

.inner-page-hero {
    position: relative;
    height: 300px;
    min-height: 300px;
    max-height: 300px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
    padding: calc(var(--inner-header-offset) + 12px) 0 20px;
    background: #02103b;
}

.inner-page-main > .inner-page-hero:first-child {
    margin-top: calc((var(--inner-header-offset) * -1) - 2px);
}

.inner-page-hero-bg {
    position: absolute;
    inset: -8%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1.08);
    filter: saturate(112%) contrast(1.05);
    z-index: 0;
}

.inner-page-hero-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(116deg,
            rgba(1, 8, 28, 0.92) 8%,
            rgba(2, 17, 63, 0.74) 48%,
            rgba(11, 53, 136, 0.52) 76%,
            rgba(2, 11, 37, 0.92) 100%),
        radial-gradient(70% 58% at 12% 90%, rgba(2, 8, 28, 0.85) 0%, rgba(2, 8, 28, 0.14) 62%, rgba(2, 8, 28, 0) 100%),
        radial-gradient(44% 36% at 84% 12%, rgba(255, 221, 117, 0.25) 0%, rgba(255, 221, 117, 0) 72%);
}

.inner-page-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    color: #fff;
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.inner-page-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 18px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
}

.inner-page-kicker::before {
    content: '';
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #fdd835, rgba(253, 216, 53, 0.22));
}

.inner-page-title {
    width: 100%;
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 2.7vw, 2.8rem);
    line-height: 1.28;
    letter-spacing: -0.4px;
    margin-bottom: 8px;
    color: #fff;
    text-align: center !important;
}

.inner-page-subtitle {
    width: 100%;
    max-width: 760px;
    margin-inline: auto;
    font-size: 19px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center !important;
}

.inner-page-breadcrumb {
    margin-top: 20px;
    margin-inline: auto !important;
    display: inline-flex;
    padding: 9px 15px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.inner-page-breadcrumb ol {
    display: flex;
    align-items: center;
    justify-content: center !important;
    gap: 10px;
    flex-wrap: wrap;
}

.inner-page-breadcrumb li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 700;
    text-align: center !important;
}

.inner-page-breadcrumb li+li::before {
    content: '/';
    color: rgba(255, 255, 255, 0.56);
}

.inner-page-breadcrumb a {
    color: rgba(255, 255, 255, 0.92);
}

.inner-page-breadcrumb a:hover {
    color: #fdd835;
}

.inner-page-breadcrumb li:last-child span {
    color: #fdd835;
}

.service-detail-page {
    position: relative;
    overflow: hidden;
    padding: 28px 0 96px;
    background:
        radial-gradient(80% 56% at 8% 8%, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0) 70%),
        radial-gradient(62% 50% at 92% 92%, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0) 74%),
        linear-gradient(140deg, #ffe165 0%, #fff6cb 34%, #ffffff 54%, #ffe370 100%);
}

.service-detail-loading,
.service-detail-empty {
    border-radius: 24px;
    padding: 26px;
    border: 1px solid rgba(15, 47, 145, 0.14);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 36px rgba(10, 36, 103, 0.12);
    color: #1c356d;
}

.service-detail-empty h1 {
    font-family: var(--font-heading);
    margin-bottom: 8px;
    color: #0f2f91;
}

.service-detail-empty p {
    margin-bottom: 16px;
    font-size: 19px;
    line-height: 1.8;
}

.service-detail-breadcrumb {
    margin-bottom: 22px;
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(15, 47, 145, 0.18);
    background: rgba(255, 255, 255, 0.72);
}

.service-detail-breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.service-detail-breadcrumb li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #214178;
    font-size: 16px;
    font-weight: 700;
}

.service-detail-breadcrumb li + li::before {
    content: '/';
    color: #6a84b6;
}

.service-detail-breadcrumb a {
    color: #214178;
}

.service-detail-breadcrumb a:hover {
    color: #0f2f91;
}

.service-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 24px;
    align-items: start;
}

.service-detail-layout > * {
    align-self: start !important;
}

.service-detail-layout > .service-detail-head {
    grid-column: 1 / -1;
    margin-bottom: 0;
}

.service-detail-main,
.service-side-card {
    border-radius: 24px;
    border: 1px solid rgba(15, 47, 145, 0.12);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 36px rgba(10, 36, 103, 0.12);
}

.service-detail-main {
    padding: 22px;
}

.service-detail-main-media {
    padding: 0;
    overflow: hidden;
}

.service-detail-head {
    margin-bottom: 16px;
}

.service-detail-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 15px;
    font-weight: 700;
    color: #0f2f91;
    background: rgba(244, 196, 29, 0.25);
    margin-bottom: 10px;
}

.service-detail-head h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 3.1rem);
    line-height: 1.3;
    color: #0f2f91;
    margin: 0;
}

.service-detail-image {
    margin: 0 0 18px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(15, 47, 145, 0.1);
    background: #f2f6ff;
    align-self: start !important;
}

.service-detail-main-media .service-detail-image {
    margin: 0;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid rgba(15, 47, 145, 0.1);
}

.service-detail-main-media .service-detail-content {
    padding: 22px;
}

.service-detail-image img {
    width: 100%;
    display: block;
    max-height: 460px;
    object-fit: cover;
}

.service-detail-content h2,
.service-detail-content h3 {
    font-family: var(--font-heading);
    color: #0f2f91;
    margin-bottom: 10px;
}

.service-detail-content h3 {
    margin-top: 20px;
}

.service-detail-content p {
    font-size: 21px;
    line-height: 1.9;
    color: #2f3f63;
}

.service-detail-content ul {
    display: grid;
    gap: 10px;
}

.service-detail-content li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #2d467a;
    font-size: 19px;
    line-height: 1.7;
}

.service-detail-content li i {
    color: #f0c517;
    margin-top: 6px;
}

.service-detail-sidebar {
    position: sticky;
    top: calc(var(--site-header-height) + 22px);
    display: grid;
    gap: 14px;
    align-self: start !important;
}

.service-side-card {
    padding: 20px;
}

.service-side-label {
    font-size: 16px;
    font-weight: 700;
    color: #5570a4;
    margin-bottom: 6px;
}

.service-side-price {
    font-size: 38px;
    line-height: 1;
    color: #12357f;
    font-weight: 900;
    margin-bottom: 10px;
}

.service-side-price span {
    font-size: 18px;
    font-weight: 700;
}

.service-side-note {
    font-size: 16px;
    line-height: 1.7;
    color: #3f5e94;
}

.service-side-card h4 {
    font-family: var(--font-heading);
    color: #0f2f91;
    margin-bottom: 10px;
}

.service-side-meta {
    display: grid;
    gap: 10px;
}

.service-side-meta li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #2f4d86;
    font-size: 17px;
    line-height: 1.6;
}

.service-side-meta i {
    color: #f0c517;
    margin-top: 4px;
}

.service-side-actions {
    display: grid;
    gap: 10px;
}

.service-side-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 17px;
    font-weight: 800;
    border: 1px solid transparent;
}

.service-side-btn-primary {
    background: linear-gradient(120deg, #ffe76f 0%, #f4c41d 100%);
    color: #0b2b7d;
    box-shadow: 0 8px 16px rgba(244, 196, 29, 0.34);
}

.service-side-btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(15, 47, 145, 0.2);
    color: #0f2f91;
}

.contact-section {
    position: relative;
    overflow: hidden;
    padding: 64px 0 110px;
    background:
        radial-gradient(65% 55% at 12% 18%, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0) 72%),
        linear-gradient(145deg, #ffe57d 0%, #fff8d9 36%, #ffffff 58%, #ffd95b 100%);
}

.contact-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    top: -180px;
    left: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10, 42, 122, 0.16) 0%, rgba(10, 42, 122, 0) 72%);
    pointer-events: none;
}

.contact-shell {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 28px;
    align-items: stretch;
}

.contact-copy,
.contact-card {
    border-radius: 28px;
    border: 1px solid rgba(15, 47, 145, 0.12);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 22px 44px rgba(11, 34, 104, 0.12);
}

.contact-copy {
    padding: 34px;
}

.contact-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0f2f91;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
}

.contact-kicker::before {
    content: '';
    width: 30px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f4c41d, rgba(244, 196, 29, 0.18));
}

.contact-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.25;
    color: #0f2f91;
    margin-bottom: 14px;
}

.contact-text {
    font-size: 20px;
    line-height: 1.85;
    color: #2f3f63;
}

.contact-cards {
    display: grid;
    gap: 18px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    min-height: 140px;
    padding: 26px 28px;
    color: #12357f;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 48px rgba(11, 34, 104, 0.16);
}

.contact-card-label {
    font-size: 17px;
    color: #5570a4;
}

.contact-card strong {
    font-size: 28px;
    line-height: 1.35;
}

.about-contact-section {
    position: relative;
    overflow: hidden;
    padding: 82px 0 110px;
    background:
        radial-gradient(72% 58% at 12% 16%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 72%),
        radial-gradient(62% 50% at 88% 88%, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0) 74%),
        linear-gradient(145deg, #ffe57d 0%, #fff8d9 36%, #ffffff 58%, #ffd95b 100%);
}

.about-contact-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 24px;
    align-items: start;
}

.about-contact-form-card,
.about-side-card {
    border-radius: 26px;
    border: 1px solid rgba(15, 47, 145, 0.14);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 22px 44px rgba(11, 34, 104, 0.12);
}

.about-contact-form-card {
    padding: 28px;
}

.about-contact-head {
    margin-bottom: 18px;
}

.about-contact-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0f2f91;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-contact-kicker::before {
    content: '';
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f4c41d, rgba(244, 196, 29, 0.18));
}

.about-contact-head h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 2.6vw, 2.8rem);
    line-height: 1.3;
    color: #0f2f91;
    margin-bottom: 8px;
}

.about-contact-head p {
    font-size: 19px;
    line-height: 1.75;
    color: #2f3f63;
}

.about-contact-form {
    display: grid;
    gap: 14px;
}

.about-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.about-contact-field {
    display: grid;
    gap: 8px;
}

.about-contact-field span {
    font-size: 17px;
    font-weight: 700;
    color: #0f2f91;
}

.about-contact-field input,
.about-contact-field textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(15, 47, 145, 0.18);
    background: rgba(255, 255, 255, 0.9);
    color: #12357f;
    font-size: 18px;
    padding: 11px 14px;
    outline: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.about-contact-field input:focus,
.about-contact-field textarea:focus {
    border-color: rgba(15, 47, 145, 0.44);
    box-shadow: 0 0 0 4px rgba(15, 47, 145, 0.1);
}

.about-contact-field textarea {
    resize: vertical;
}

.about-contact-field-full {
    grid-column: 1 / -1;
}

.about-contact-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.about-contact-submit {
    border: 0;
    border-radius: 999px;
    background: linear-gradient(120deg, #ffe76f 0%, #f4c41d 100%);
    color: #0b2b7d;
    font-size: 18px;
    font-weight: 800;
    padding: 10px 20px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 20px rgba(244, 196, 29, 0.34);
}

.about-contact-success {
    font-size: 16px;
    font-weight: 700;
    color: #175027;
    background: rgba(37, 183, 83, 0.14);
    border: 1px solid rgba(37, 183, 83, 0.24);
    border-radius: 999px;
    padding: 8px 12px;
}

.about-contact-error {
    font-size: 16px;
    font-weight: 700;
    color: #7b1322;
    background: rgba(211, 54, 84, 0.14);
    border: 1px solid rgba(211, 54, 84, 0.25);
    border-radius: 999px;
    padding: 8px 12px;
}

.about-contact-sidebar {
    display: grid;
    gap: 14px;
}

.about-side-card {
    padding: 20px;
}

.about-side-card h3 {
    font-family: var(--font-heading);
    color: #0f2f91;
    margin-bottom: 10px;
}

.about-side-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 900;
    color: #0f2f91;
}

.about-side-phone i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: #25d366;
    color: #fff;
    font-size: 22px;
}

.about-side-socials {
    display: flex;
    gap: 10px;
}

.about-side-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(15, 47, 145, 0.2);
    background: #fff;
    color: #0f2f91;
    font-size: 18px;
}

.about-side-map-card {
    padding-bottom: 14px;
}

.about-side-map {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(15, 47, 145, 0.16);
    background: #f2f6ff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.about-side-map iframe {
    width: 100%;
    height: 290px;
    border: 0;
    display: block;
}

@media (max-width: 980px) {
    .inner-page-main {
        padding-top: 0;
        --inner-header-offset: var(--site-header-height);
    }

    .inner-page-hero {
        height: 300px;
        min-height: 300px;
        max-height: 300px;
        padding: calc(var(--inner-header-offset) + 10px) 0 18px;
    }

    .inner-page-subtitle {
        font-size: 20px;
    }

    .service-detail-page {
        padding: 24px 0 74px;
    }

    .service-detail-layout {
        grid-template-columns: 1fr;
    }

    .service-detail-main {
        padding: 18px;
    }

    .service-detail-main-media {
        padding: 0;
    }

    .service-detail-main-media .service-detail-content {
        padding: 18px;
    }

    .service-detail-content p {
        font-size: 19px;
    }

    .service-detail-content li {
        font-size: 18px;
    }

    .service-detail-sidebar {
        position: static;
    }

    .about-contact-section {
        padding: 66px 0 84px;
    }

    .about-contact-shell {
        grid-template-columns: 1fr;
    }

    .about-contact-form-card {
        padding: 22px;
    }

    .about-contact-grid {
        grid-template-columns: 1fr;
    }

    .about-side-map iframe {
        height: 260px;
    }

    .contact-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .inner-page-main {
        --inner-header-offset: var(--site-header-height);
    }

    .inner-page-hero {
        height: 300px;
        min-height: 300px;
        max-height: 300px;
        padding: calc(var(--inner-header-offset) + 8px) 0 16px;
    }

    .inner-page-subtitle {
        font-size: 18px;
        line-height: 1.75;
    }

    .inner-page-breadcrumb li {
        font-size: 15px;
    }

    .service-detail-page {
        padding: 18px 0 58px;
    }

    .service-detail-head h1 {
        font-size: 2rem;
    }

    .service-detail-content p,
    .service-detail-content li {
        font-size: 17px;
    }

    .service-side-price {
        font-size: 30px;
    }

    .service-side-btn {
        font-size: 16px;
    }

    .about-contact-section {
        padding: 52px 0 68px;
    }

    .about-contact-head p {
        font-size: 17px;
    }

    .about-contact-field input,
    .about-contact-field textarea {
        font-size: 16px;
    }

    .about-side-phone {
        font-size: 18px;
    }

    .about-side-map iframe {
        height: 230px;
    }

    .contact-section {
        padding: 42px 0 78px;
    }

    .contact-copy,
    .contact-card {
        padding: 22px 18px;
    }

    .contact-text {
        font-size: 18px;
    }

    .contact-card strong {
        font-size: 22px;
    }
}

/* Modern Footer */
.site-footer-modern {
    position: relative;
    background:
        url('../../images/makkah-khana-e-kaba.webp') center center/cover no-repeat;
    color: #fff;
    padding: 56px 0 24px;
    overflow: hidden;
}

.site-footer-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(118deg,
            rgba(1, 8, 28, 0.9) 6%,
            rgba(2, 17, 63, 0.78) 46%,
            rgba(11, 53, 136, 0.58) 74%,
            rgba(2, 11, 37, 0.9) 100%),
        radial-gradient(74% 62% at 14% 90%, rgba(2, 8, 28, 0.84) 0%, rgba(2, 8, 28, 0.14) 62%, rgba(2, 8, 28, 0) 100%),
        radial-gradient(46% 36% at 82% 12%, rgba(255, 221, 117, 0.22) 0%, rgba(255, 221, 117, 0) 72%);
    background-size: 145% 145%, 122% 122%, 140% 140%;
    background-position: 50% 50%, 18% 92%, 82% 12%;
    opacity: 1;
}

@media (min-width: 1024px) {
    .site-footer-modern::before {
        background:
            linear-gradient(90deg,
                rgba(1, 8, 28, 0.94) 0%,
                rgba(1, 8, 28, 0.82) 24%,
                rgba(2, 16, 58, 0.74) 50%,
                rgba(1, 8, 28, 0.82) 76%,
                rgba(1, 8, 28, 0.94) 100%),
            linear-gradient(180deg, rgba(2, 11, 37, 0.74) 0%, rgba(2, 11, 37, 0.88) 100%),
            radial-gradient(72% 58% at 14% 90%, rgba(2, 8, 28, 0.75) 0%, rgba(2, 8, 28, 0.08) 62%, rgba(2, 8, 28, 0) 100%),
            radial-gradient(72% 58% at 86% 10%, rgba(2, 8, 28, 0.75) 0%, rgba(2, 8, 28, 0.08) 62%, rgba(2, 8, 28, 0) 100%);
        background-size: 100% 100%, 100% 100%, 118% 118%, 118% 118%;
        background-position: 50% 50%, 50% 50%, 8% 92%, 92% 8%;
    }
}

.site-footer-modern > .container {
    position: relative;
    z-index: 2;
}

.footer-modern-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.footer-modern-col {
    min-width: 0;
}

.footer-modern-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-modern-logo {
    width: 88px;
    height: 88px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(160deg,
            rgba(255, 255, 255, 0.96) 0%,
            rgba(255, 255, 255, 0.82) 46%,
            rgba(255, 255, 255, 0.66) 100%);
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 20px rgba(4, 34, 140, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px) saturate(170%);
    -webkit-backdrop-filter: blur(8px) saturate(170%);
}

.footer-modern-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.72) 0%,
            rgba(255, 255, 255, 0.22) 40%,
            rgba(255, 255, 255, 0.06) 100%);
    pointer-events: none;
    z-index: 1;
}

.footer-modern-logo img {
    width: auto;
    height: 64px;
    filter: none;
    position: relative;
    z-index: 2;
}

.footer-modern-site-name {
    font-family: var(--font-heading);
    font-size: 28px;
    line-height: 1.4;
    color: #fff;
}

.footer-modern-description {
    font-size: 19px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.footer-modern-title {
    font-family: var(--font-heading);
    font-size: 23px;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 12px;
}

.footer-modern-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-modern-links a {
    color: rgba(255, 255, 255, 0.92);
    font-size: 20px;
    font-weight: 700;
    transition: color 0.25s ease;
}

.footer-modern-links a:hover,
.footer-modern-links a.active {
    color: #fdd835;
}

.footer-modern-contact-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 14px;
}

.footer-modern-contact-phone i {
    color: #25d366;
    font-size: 25px;
}

.footer-modern-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-modern-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.12);
}

.footer-modern-social a:hover {
    background: #fdd835;
    color: #12357f;
    border-color: #fdd835;
}

.footer-modern-divider {
    margin-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.footer-modern-copy {
    margin-top: 14px;
    text-align: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.92);
}

.back-to-top-btn {
    --scroll-progress: 0;
    position: fixed;
    left: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 50%;
    padding: 3px;
    background: conic-gradient(#fdd835 calc(var(--scroll-progress, 0) * 1%), rgba(255, 255, 255, 0.2) 0);
    box-shadow: 0 16px 32px rgba(1, 12, 42, 0.34);
    opacity: 0;
    transform: translateY(18px) scale(0.92);
    pointer-events: none;
    cursor: pointer;
    z-index: 1450;
    transition: opacity 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.back-to-top-btn::before {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(4, 34, 140, 0.98) 0%, rgba(3, 22, 86, 0.98) 100%);
}

.back-to-top-btn .back-to-top-icon {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    color: #fff;
}

.back-to-top-btn.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.back-to-top-btn:hover {
    box-shadow: 0 20px 38px rgba(1, 12, 42, 0.42);
    transform: translateY(-2px) scale(1.02);
}

.back-to-top-btn:focus-visible {
    outline: 2px solid rgba(253, 216, 53, 0.95);
    outline-offset: 3px;
}

.floating-whatsapp-btn {
    --wa-pulse-duration: 2.2s;
    --wa-pulse-scale: 1.72;
    --wa-pulse-inset: -6px;
    --wa-glow-size: 10px;
    --wa-float-scale: 1.045;
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 28px;
    background: linear-gradient(145deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 16px 32px rgba(9, 94, 84, 0.35);
    z-index: 1450;
    isolation: isolate;
    overflow: visible;
    animation: whatsappFloat var(--wa-pulse-duration) ease-in-out infinite, whatsappGlow var(--wa-pulse-duration) ease-in-out infinite;
    transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.floating-whatsapp-btn::before,
.floating-whatsapp-btn::after {
    content: '';
    position: absolute;
    inset: var(--wa-pulse-inset);
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.58);
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}

.floating-whatsapp-btn::before {
    animation: whatsappPulse var(--wa-pulse-duration) cubic-bezier(0.16, 0.84, 0.35, 1) infinite;
}

.floating-whatsapp-btn::after {
    animation: whatsappPulse var(--wa-pulse-duration) cubic-bezier(0.16, 0.84, 0.35, 1) calc(var(--wa-pulse-duration) / 2) infinite;
}

.floating-whatsapp-btn i {
    pointer-events: none;
}

.floating-whatsapp-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 38px rgba(9, 94, 84, 0.42);
    filter: saturate(1.06);
}

.floating-whatsapp-btn:focus-visible {
    outline: 2px solid rgba(37, 211, 102, 0.95);
    outline-offset: 3px;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(0.74);
        opacity: 0.92;
    }

    55% {
        opacity: 0.2;
    }

    100% {
        transform: scale(var(--wa-pulse-scale));
        opacity: 0;
    }
}

@keyframes whatsappFloat {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    35% {
        transform: translateY(-2px) scale(var(--wa-float-scale));
    }

    65% {
        transform: translateY(0) scale(1.02);
    }
}

@keyframes whatsappGlow {
    0%,
    100% {
        box-shadow: 0 16px 32px rgba(9, 94, 84, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.22);
    }

    50% {
        box-shadow: 0 23px 40px rgba(9, 94, 84, 0.5), 0 0 0 var(--wa-glow-size) rgba(37, 211, 102, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .floating-whatsapp-btn,
    .floating-whatsapp-btn::before,
    .floating-whatsapp-btn::after {
        animation: none !important;
    }
}

body.mobile-menu-open .back-to-top-btn,
body.mobile-menu-open .floating-whatsapp-btn {
    opacity: 0 !important;
    transform: translateY(20px) scale(0.9) !important;
    pointer-events: none !important;
}

@media (max-width: 980px) {
    .site-footer-modern {
        padding: 50px 0 22px;
    }

    .footer-modern-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

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

@media (max-width: 640px) {
    .site-footer-modern {
        padding: 44px 0 20px;
    }

    .footer-modern-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .footer-modern-col {
        text-align: center;
    }

    .footer-modern-brand {
        align-items: center;
    }

    .footer-modern-logo {
        width: 66px;
        height: 66px;
        padding: 8px;
        border-radius: 14px;
    }

    .footer-modern-logo img {
        height: 46px;
    }

    .footer-modern-links {
        align-items: center;
    }

    .footer-modern-contact-phone {
        justify-content: center;
    }

    .footer-modern-social {
        justify-content: center;
    }

    .back-to-top-btn {
        width: 52px;
        height: 52px;
        left: 16px;
        bottom: calc(84px + env(safe-area-inset-bottom, 0px));
    }

    .floating-whatsapp-btn {
        --wa-pulse-duration: 1.9s;
        --wa-pulse-scale: 1.45;
        --wa-pulse-inset: -4px;
        --wa-glow-size: 7px;
        --wa-float-scale: 1.03;
        width: 52px;
        height: 52px;
        right: 16px;
        bottom: calc(84px + env(safe-area-inset-bottom, 0px));
        font-size: 25px;
    }
}

@media (max-width: 768px) {
    body.mobile-menu-open {
        overflow: hidden;
    }

    .site-header {
        padding: 0;
    }

    .site-header.is-scrolled {
        padding: 0 !important;
    }

    .site-header .container {
        display: grid;
        grid-template-columns: minmax(44px, 1fr) auto minmax(44px, 1fr);
        grid-auto-flow: column !important;
        align-items: start;
        gap: 8px;
        padding: 0 14px;
        direction: ltr;
    }

    .logo {
        grid-column: 3;
        justify-self: end;
        margin-top: 0;
        padding: 8px 8px 6px;
        border-radius: 0 0 14px 14px;
    }

    .logo img {
        height: 44px;
    }

    .header-actions {
        grid-column: 2;
        justify-self: center;
        align-self: start;
        margin-top: 25px;
    }

    .btn-quote {
        font-size: 14px !important;
        font-weight: 800;
        padding: 8px 14px;
        line-height: 1.2;
        white-space: nowrap;
    }

    .header-menu-toggle {
        display: inline-flex;
        grid-column: 1;
        justify-self: start;
        align-self: start;
        margin-top: 20px !important;
    }

    .header-actions .btn-quote,
    .header-menu-toggle {
        position: relative;
        top: 0;
    }

    .main-nav {
        display: none;
        position: fixed;
        top: calc(var(--site-header-height) + 12px);
        left: 12px;
        width: min(88vw, 340px);
        max-height: calc(100vh - (var(--site-header-height) + 20px));
        overflow-y: auto;
        padding: 12px;
        border-radius: 18px;
        border: 1px solid transparent;
        background: transparent;
        box-shadow: none;
        transform: translateX(calc(-100% - 60px));
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease, background 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
        z-index: 1401;
        direction: rtl;
    }

    .main-nav.is-open {
        display: block;
        border-color: rgba(255, 255, 255, 0.28);
        background: linear-gradient(150deg,
                rgba(3, 12, 40, 1) 0%,
                rgba(6, 24, 78, 0.98) 50%,
                rgba(2, 10, 34, 1) 100%);
        box-shadow: 0 22px 40px rgba(1, 8, 28, 0.5);
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 8px;
    }

    .main-nav li {
        width: 100%;
    }

    .main-nav a {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        font-size: 14px !important;
        font-weight: 800;
        padding: 10px 12px;
        border-radius: 10px;
        color: #fff;
        background: rgba(9, 31, 89, 0.92);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .main-nav a.active,
    .main-nav a:hover {
        color: #fdd835;
        background: rgba(253, 216, 53, 0.12);
    }

    .header-menu-backdrop {
        display: none !important;
        position: fixed;
        inset: 0;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.28s ease;
        z-index: 1400;
    }

    .header-menu-backdrop.is-visible {
        display: none !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    .section-title,
    .hero-title,
    .about-title,
    .inner-page-title,
    .service-detail-head h1,
    .stats-text h3,
    .contact-copy h2,
    .about-contact-head h2,
    .footer-modern-title,
    .footer-modern-site-name {
        font-size: 18px !important;
        font-weight: 800 !important;
        line-height: 1.45 !important;
    }

    .hero-title {
        font-size: 18px !important;
        line-height: 1.45 !important;
    }

    p,
    li,
    small,
    label,
    input,
    textarea,
    .section-desc,
    .hero-subtitle,
    .about-text,
    .inner-page-subtitle,
    .trip-desc,
    .feature-list li,
    .service-detail-content p,
    .service-detail-content li,
    .contact-text,
    .about-contact-head p,
    .about-side-phone,
    .footer-modern-description,
    .footer-modern-links a,
    .inner-page-breadcrumb li {
        font-size: 14px !important;
        line-height: 1.75 !important;
    }
}
