:root {
    --deep-blue: #0f172a;
    --gold: #d4af37;
    --gold-light: #f1d279;
    --white: #ffffff;
    --text-muted: #94a3b8;
}

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

body {
    background-color: var(--white);
    overflow-x: hidden;
}

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

header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 5000;
    padding: 15px 0;
    transition: all 0.4s ease;
    background: transparent;
}

header.header-scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

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

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

.logo-box {
    background: var(--gold);
    color: var(--deep-blue);
    padding: 10px;
    border-radius: 12px;
    font-size: 1.5rem;
}

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

.brand span {
    color: var(--gold);
    font-size: 0.8rem;
    display: block;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

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

.btn-cta-nav {
    background: var(--gold);
    color: var(--deep-blue) !important;
    padding: 8px 20px;
    border-radius: 8px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: var(--deep-blue);
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at right, rgba(212, 175, 55, 0.1), transparent);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 50px;
    z-index: 10;
}

.badge-gold {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

.hero h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin: 20px 0;
    font-weight: 900;
}

.text-gold {
    color: var(--gold);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.btn-main {
    background: var(--gold);
    color: var(--deep-blue);
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 900;
    transition: 0.3s;
}

.btn-sub {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 13px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 900;
    transition: 0.3s;
}

.btn-main:hover,
.btn-sub:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.hero-img img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 5px solid rgba(212, 175, 55, 0.3);
}

/* Cities Strip */
.cities-strip {
    background: var(--gold);
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
}

.track {
    display: inline-block;
    animation: scroll 20s linear infinite;
    font-weight: 900;
    color: var(--deep-blue);
    font-size: 1.2rem;
}

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

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

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

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

.line-gold {
    width: 60px;
    height: 4px;
    background: var(--gold);
    margin: 15px auto;
}

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

.feat-card {
    background: #f8fafc;
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s;
    border: 1px solid #e2e8f0;
}

.feat-card:hover {
    transform: translateY(-15px);
    background: var(--deep-blue);
    color: white;
    border-color: var(--gold);
}

.feat-card i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 25px;
}

/* Contact Section */
.contact-card {
    background: var(--deep-blue);
    padding: 60px;
    border-radius: 40px;
    text-align: center;
    color: white;
    border: 2px solid var(--gold);
}

.phone-numbers {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.phone-numbers a {
    background: var(--gold);
    color: var(--deep-blue);
    padding: 20px 40px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.phone-numbers a:hover {
    transform: scale(1.05);
    background: white;
}

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

.contact-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.contact-btn.wa {
    background: #25d366;
}

.contact-btn.call {
    background: var(--gold);
}

.contact-btn:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Footer */
footer {
    background: #020617;
    color: var(--text-muted);
    padding: 30px 0;
    text-align: center;
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-btns {
        justify-content: center;
        flex-direction: column;
    }

    .nav-links {
        display: none;
    }
}

/* Stats Section */
.bg-dark {
    background: var(--deep-blue);
    color: white;
}

.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;
}

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

.step {
    background: #f8fafc;
    padding: 40px 20px;
    border-radius: 20px;
    position: relative;
    text-align: center;
    border-bottom: 4px solid var(--gold);
    transition: 0.3s;
}

.step:hover {
    transform: translateY(-10px);
    background: var(--deep-blue);
    color: white;
}

.step-num {
    background: var(--gold);
    color: var(--deep-blue);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    margin: 0 auto 20px;
}

.hero-img img {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {

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

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

.cities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
}

.city-chip {
    padding: 12px 25px;
    background: #f1f5f9;
    border-radius: 50px;
    font-weight: 700;
    color: var(--deep-blue);
    transition: 0.3s;
    border: 1px solid #e2e8f0;
    cursor: default;
}

.city-chip:hover,
.city-chip.active {
    background: var(--gold);
    color: var(--deep-blue);
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.about-v2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
}

.about-v2-text {
    position: relative;
}

.bg-text {
    position: absolute;
    top: -50px;
    right: 0;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(15, 23, 42, 0.03);
    z-index: -1;
}

.about-v2-text h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.stats-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.pill {
    background: rgba(212, 175, 55, 0.1);
    color: var(--deep-blue);
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid var(--gold);
}

.image-frame {
    position: relative;
    padding: 20px;
    border: 2px solid var(--gold);
    border-radius: 40px;
}

.image-frame img {
    width: 100%;
    border-radius: 30px;
    display: block;
}

.floating-info {
    position: absolute;
    bottom: 40px;
    left: -20px;
    background: var(--deep-blue);
    color: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-right: 5px solid var(--gold);
}

.floating-info h4 {
    color: var(--gold);
    font-size: 2rem;
}

@media (max-width: 992px) {
    .about-v2-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bg-text {
        font-size: 4rem;
        top: -20px;
    }

    .stats-pills {
        justify-content: center;
    }

    .floating-info {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
    }
}

/* --- Footer  --- */
.main-footer {
    background-color: #020617;
    color: #e2e8f0;
    padding: 80px 0 0;
    border-top: 4px 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.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}



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

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

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

.footer-logo h2 {
    color: white;
    font-size: 1.5rem;
}

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

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

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

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

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

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

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

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

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

.contact-info a {
    color: #94a3b8;
    text-decoration: none;
}

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

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

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

@media (max-width: 768px) {
    .main-footer {
        text-align: center;
    }

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

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

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-form-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.05);
    border: 1px solid #f1f5f9;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    transition: 0.3s;
    outline: none;
    background: #f8fafc;
}

.input-group i {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.1rem;
}

.input-group textarea+i {
    top: 25px;
    transform: none;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--deep-blue);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 900;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    background: var(--gold);
    color: var(--deep-blue);
    transform: translateY(-5px);
}

.contact-info-v2 {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--deep-blue);
    border-radius: 20px;
    color: white;
    transition: 0.4s;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.info-card:hover {
    transform: translateX(-10px);
    border-color: var(--gold);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 1.8rem;
}

.animate-pulse {
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.info-text h4 {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 5px;
}

.info-text p,
.info-text a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 700;
}

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

    .contact-info-v2 {
        order: -1;
    }
}

.about-v2-visual {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.image-frame {
    position: relative;
    padding: 15px;
    border: 2px solid var(--gold);
    border-radius: 30px;
    overflow: hidden;
    height: 550px;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    object-position: center;
}

@media (max-width: 992px) {
    .image-frame {
        height: 400px;
    }

    .about-v2-visual {
        max-width: 100%;
        padding: 0 10px;
    }
}

.floating-info {
    position: absolute;
    bottom: 40px;
    right: -30px;
    background: var(--deep-blue);
    color: white;
    padding: 25px 30px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-right: 6px solid var(--gold);
    z-index: 10;
    min-width: 180px;
    text-align: center;
    transition: all 0.4s ease;
}

.image-frame:hover .floating-info {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.2);
}

.floating-info h4 {
    color: var(--gold);
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
}

.floating-info p {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .floating-info {
        right: 10px;
        bottom: -20px;
        min-width: 150px;
        padding: 15px 20px;
    }

    .floating-info h4 {
        font-size: 2rem;
    }
}

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

.menu-btn {
    display: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--gold);
    z-index: 5001;
     margin-left: 10px;
}

.close-menu {
    display: none;
}

@media (max-width: 992px) {
    header {
        padding: 10px 0;
        background: var(--deep-blue) !important;
    }


    .menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--deep-blue);
        flex-direction: column;
        padding: 80px 30px;
        transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 5500;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        display: flex !important;

    }

        .nav-links li a {
        color: #ffffff !important; 
        font-size: 1.2rem;
        font-weight: 700;
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        text-align: right;
    }
    .close-menu {
        display: block !important;
        position: absolute;
        top: 25px;
        left: 25px;
        color: var(--gold);
        font-size: 2rem;
        z-index: 5600;
    }
    .nav-links.active {
        right: 0;
    }


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

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

    .hero {
        height: auto;
        padding: 140px 0 60px;
        text-align: center;
    }


    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero h2 {
        font-size: 2.2rem;
        margin: 15px 0;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 10px;
        margin-bottom: 30px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-btns a {
        width: 100%;
        max-width: 300px;
        padding: 15px;
    }

    .hero-img {
        margin-top: 30px;
    }
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    z-index: 4500;
}

.menu-overlay.active {
    display: block;
}


@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; 
        width: 280px;
        height: 100vh;
        background: #0f172a; 
        flex-direction: column;
        padding: 100px 25px 40px 25px !important;
        transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 5500;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        display: flex !important;
        text-align: right;
    }

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

    .nav-links li {
        width: 100%;
        margin: 0;
    }

    .nav-links li a {
        color: #ffffff !important;
        font-size: 1.1rem;
        font-weight: 600;
        display: block;
        padding: 18px 0; 
        border-bottom: 1px solid rgba(255, 255, 255, 0.05); 
        transition: 0.3s;
    }

    .nav-links li a:hover {
        color: var(--gold-light) !important;
        padding-right: 10px;
    }

    .nav-links .btn-cta-nav {
        background: var(--gold) !important;
        color: #0f172a !important;
        margin-top: 30px;
        text-align: center;
        border-radius: 8px;
        padding: 15px !important;
        border-bottom: none;
        font-weight: 900;
    }

    .close-menu {
        display: block !important;
        position: absolute;
        top: 25px;
        left: 20px; 
        color: var(--gold) !important;
        font-size: 1.8rem;
    }
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 15px;
    align-items: center;
}

.nav-links li a {
    font-size: 0.9rem; 
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    margin: 0;
    padding: 0;
}

.text-gold {
    color: var(--gold);
    font-weight: 900;
}


.masonry-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: 250px; 
    gap: 20px;
    width: 100%;
    max-width: 1200px; 
    margin: 40px auto !important; 
    padding: 0 20px;
}

.m-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.4s ease;
}

.m-item.tall {
    grid-row: span 2; 
    height: 520px;
}

.m-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
    transition: 0.5s;
}

.m-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.m-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .masonry-wrapper {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    .m-item.tall {
        grid-row: span 1;
        height: 250px;
    }
}

.bg-dark-royal {
    background-color: #050d1a;
    color: white;
}
.packing-list {
    list-style: none;
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}
.packing-list li i {
    color: var(--gold);
    margin-left: 10px;
}