:root {
    --royal-blue: #0a192f;
    --royal-blue-light: #112240;
    --gold: #c5a059;
    --gold-bright: #eec170;
    --white: #ffffff;
    --bg-light: #f4f7f6;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header & Nav --- */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 4000;
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
}

header.header-scrolled {
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-box {
    background: var(--gold);
    color: var(--royal-blue);
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.brand {
    display: flex;
    gap: 12px;
    align-items: center;
    text-decoration: none;
}

.brand-text h1 {
    color: white;
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 1;
}

.brand-text span {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: white;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-cta {
    background: var(--gold);
    color: var(--royal-blue) !important;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 700 !important;
    transform: scale(1);
}

.nav-cta:hover {
    background: var(--white);
    transform: translateY(-2px);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    position: relative;
    background: linear-gradient(rgba(10, 25, 47, 0.7), rgba(10, 25, 47, 0.7)),
        url('imgs/img7.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding-top: 80px;
}

.royal-tag {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 25px;
    background: rgba(197, 160, 89, 0.1);
}

.hero h2 {
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-primary {
    background: var(--gold);
    color: var(--royal-blue);
    padding: 18px 45px;
    border-radius: 8px;
    font-weight: 900;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: var(--white);
    transform: translateY(-5px);
}

.btn-secondary {
    border: 2px solid white;
    color: white;
    padding: 16px 45px;
    border-radius: 8px;
    font-weight: 900;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: white;
    color: var(--royal-blue);
}

/* --- Cities Strip --- */
.cities-strip {
    background: var(--gold);
    color: var(--royal-blue);
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 900;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cities-track {
    display: flex;
    animation: scrollCities 30s linear infinite;
    gap: 50px;
}

@keyframes scrollCities {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(50%);
    }
}

.cities-strip span {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

/* --- Services --- */
.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--royal-blue);
    font-weight: 800;
}

.line-gold {
    width: 60px;
    height: 4px;
    background: var(--gold);
    margin: 20px auto;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.s-card {
    background: white;
    padding: 60px 35px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.s-card:hover {
    transform: translateY(-15px);
    border-color: var(--gold);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.s-card i {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 30px;
    transition: var(--transition);
}

.s-card:hover i {
    transform: scale(1.1);
}

.s-card h3 {
    font-size: 1.5rem;
    color: var(--royal-blue);
    margin-bottom: 15px;
}

.s-card p {
    color: #666;
    line-height: 1.7;
}

/* --- Gallery (Masonry) --- */
.bg-dark {
    background: var(--royal-blue);
}

.white-text h2 {
    color: white;
}

.masonry-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.g-item {
    overflow: hidden;
    border-radius: 15px;
    height: 300px;
    border: 2px solid rgba(197, 160, 89, 0.2);
}

.g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
    filter: brightness(0.9);
}

.g-item:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* --- CTA Section --- */
.cta-royal {
    background: var(--bg-light);
}

.royal-banner {
    background: linear-gradient(135deg, var(--royal-blue) 0%, #1a3a5f 100%);
    padding: 80px 40px;
    border-radius: 30px;
    text-align: center;
    color: white;
    border: 1px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.royal-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.btn-royal-call {
    background: var(--gold);
    color: var(--royal-blue);
    padding: 22px 60px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 1.6rem;
    text-decoration: none;
    display: inline-block;
    margin-top: 35px;
    transition: var(--transition);
}

.btn-royal-call:hover {
    background: white;
    transform: scale(1.05);
}

/* --- Footer --- */
.footer {
    background: #050d1a;
    color: white;
    padding: 60px 0 30px;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo i {
    color: var(--gold);
    font-size: 2rem;
}

.footer p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* --- Floating Contact --- */
.fixed-contact {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 5000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-wa {
    background: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.btn-call {
    background: var(--white);
    color: var(--royal-blue);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.btn-wa:hover,
.btn-call:hover {
    transform: translateY(-10px);
}

.menu-btn,
.close-menu {
    display: none;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--royal-blue);
        flex-direction: column;
        padding: 100px 30px;
        transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .hero h2 {
        font-size: 2.2rem;
    }

    .royal-banner {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .royal-banner h2 {
        font-size: 1.8rem;
    }

    .btn-royal-call {
        font-size: 1.2rem;
        padding: 15px 30px;
    }
}

@media (max-width: 768px) {
    .menu-btn {
        display: block;
        color: white;
        font-size: 1.8rem;
        cursor: pointer;
    }

    .close-menu {
        display: block;
        position: absolute;
        top: 25px;
        left: 25px;
        color: var(--gold);
        font-size: 1.8rem;
        cursor: pointer;
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h2 {
    font-size: 3.5rem;
    color: var(--gold);
    font-weight: 900;
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--royal-blue);
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.t-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.t-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.2;
}

.stars {
    color: #f1c40f;
    margin-bottom: 15px;
}

.t-card h4 {
    margin-top: 20px;
    color: var(--gold);
}

.s-card,
.g-item,
.t-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.s-card:hover {
    transform: scale(1.05) translateY(-10px);
}

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

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

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

.fixed-contact a {
    animation: floating 3s ease-in-out infinite;
}

.btn-wa {
    animation-delay: 0.5s;
}

.footer {
    background: #050d1a;
    color: #ffffff;
    padding: 80px 0 20px;
    border-top: 3px solid var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}



.footer-col p {
    color: #b0b0b0;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-right: 8px;
}

.social-links {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(197, 160, 89, 0.1);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid rgba(197, 160, 89, 0.3);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--royal-blue);
    transform: translateY(-5px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #888;
}

.footer-bottom span {
    color: var(--gold);
    font-weight: bold;
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 20px;
        text-align: center;
    }

    .footer-col h3::after {
        right: 50%;
        transform: translateX(50%);
    }

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

    .contact-info p {
        justify-content: center;
    }
}


@media (max-width: 768px) {
    .menu-overlay.active {
        display: block;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(8px);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: var(--royal-blue);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 0;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
        z-index: 5000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        border-left: 2px solid var(--gold);
    }

    .nav-links.active {
        right: 0;
    }

    .menu-header {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 30px;
        margin-bottom: 20px;
        border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    }

    .menu-header h3 {
        color: white;
        margin-top: 10px;
        font-size: 1.2rem;
    }

    .close-menu {
        position: absolute;
        top: 20px;
        left: 20px;
        color: var(--gold);
        font-size: 1.8rem;
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }

    .nav-links li a {
        display: block;
        padding: 15px;
        font-size: 1.2rem;
        color: white;
        transition: 0.3s;
    }

    .nav-links li a:hover {
        background: rgba(197, 160, 89, 0.1);
        color: var(--gold);
    }

    .nav-cta-mobile {
        background: var(--gold) !important;
        color: var(--royal-blue) !important;
        margin: 20px 40px;
        padding: 15px !important;
        border-radius: 10px;
        font-weight: 900;
        text-align: center;
        box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
    }
}


.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    justify-content: center;
    flex: 2;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: 0.3s;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--gold);
    bottom: -5px;
    right: 0;
    transition: 0.3s;
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a:hover {
    color: var(--gold);
}

.header-action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
}

.nav-cta {
    background: var(--gold);
    color: var(--royal-blue) !important;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.3s;
}

.nav-cta:hover {
    background: white;
    transform: translateY(-2px);
}

.menu-btn {
    display: none;
    margin-right: 15px;
    cursor: pointer;
}

@media (max-width: 992px) {

    .nav-links,
    .nav-cta {
        display: none !important;
    }

    .menu-btn {
        display: block !important;
        font-size: 1.8rem;
        color: var(--gold);
        cursor: pointer;
        z-index: 5001;
    }

    .nav-wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
    }

    .nav-links.active {
        display: flex !important;
    }
}

/* --- Process Section  --- */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

@media (min-width: 992px) {
    .process-steps::before {
        content: '';
        position: absolute;
        top: 25%;
        left: 10%;
        right: 10%;
        height: 2px;
        background: repeating-linear-gradient(to right, var(--gold) 0, var(--gold) 10px, transparent 10px, transparent 20px);
        z-index: 1;
    }
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 20px;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: white;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: var(--royal-blue);
    position: relative;
    transition: 0.4s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.step-card:hover .step-icon {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-5px);
}

.step-num {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--royal-blue);
    color: var(--gold);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.9rem;
    border: 2px solid var(--gold);
}

.step-card h3 {
    color: var(--royal-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.step-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .step-card {
        padding: 10px;
        margin-bottom: 30px;
    }

    .step-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

/* ---  About Section --- */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 500px;
}

.img-main-box {
    position: relative;
    width: 80%;
    z-index: 2;
}

.img-main {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
    border: 8px solid white;
}

.img-sub {
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 250px;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.experience-badge {
    position: absolute;
    top: 40px;
    right: -40px;
    background: var(--gold);
    color: var(--royal-blue);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.4);
    z-index: 4;
}

.experience-badge .num {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}

.about-content h2 {
    font-size: 2.8rem;
    margin: 20px 0;
    line-height: 1.3;
    color: var(--royal-blue);
}

.main-p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    border-right: 4px solid var(--gold);
    padding-right: 20px;
}

.about-features {
    margin-bottom: 40px;
}

.f-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.f-icon {
    width: 50px;
    height: 50px;
    background: rgba(197, 160, 89, 0.1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.f-text h4 {
    color: var(--royal-blue);
    margin-bottom: 5px;
}

.f-text p {
    font-size: 0.9rem;
    color: #777;
}

@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-images {
        height: 400px;
        display: flex;
        justify-content: center;
    }

    .img-main-box {
        width: 90%;
    }

    .img-sub {
        width: 180px;
        height: 140px;
        left: 10px;
    }

    .experience-badge {
        right: 0;
        padding: 15px;
    }

    .about-content h2 {
        font-size: 2rem;
    }
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.hero-btns a {
    padding: 18px 45px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    min-width: 200px;
    text-align: center;
}

.btn-primary {
    background: var(--gold);
    color: var(--royal-blue);
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.3);
    border: 2px solid var(--gold);
}

.btn-primary:hover {
    background: var(--white);
    border-color: var(--white);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--royal-blue);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .hero-btns {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }

    .hero-btns a {
        width: 100%;
        padding: 15px 0;
        font-size: 1rem;
    }
}
.hero-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap; 
}

.city-badge {
    background: var(--gold);
    color: var(--royal-blue);
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
    display: inline-block;
}

.royal-tag {
    margin-bottom: 0 !important; 
}

@media (max-width: 768px) {
    .hero-badges {
        gap: 10px;
    }
    .city-badge {
        font-size: 0.8rem;
        padding: 5px 15px;
    }
}