:root {
    --primary: #0a1d37;
    --accent: #c5a059;
    --white: #ffffff;
    --light-bg: #f8f9fa;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: var(--white);
    color: var(--primary);
}

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

.section-padding {
    padding: 100px 0;
}

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

header.header-scrolled {
    background: var(--primary);
    padding: 12px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

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

.logo-box {
    width: 45px;
    height: 45px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
}

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

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

.brand-text span {
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: bold;
}

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

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

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

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

.nav-cta {
    background: var(--accent);
    color: var(--primary) !important;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 900;
}

.hero-animated {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1d37 0%, #162a50 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.05);
    filter: blur(80px);
    animation: moveShapes 15s infinite alternate;
}

.s1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.s2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -150px;
    animation-delay: -5s;
}

@keyframes moveShapes {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(100px, 50px);
    }
}

.hero-text-animate {
    animation: fadeSlide 2.5s ease-in-out infinite alternate;
}

@keyframes fadeSlide {
    0% {
        opacity: 0.8;
        transform: translateY(0);
    }

    100% {
        opacity: 1;
        transform: translateY(-10px);
    }
}

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

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

.location-tag {
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 25px;
    display: inline-block;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 900;
    text-decoration: none;
    display: inline-block;
    margin: 10px;
    transition: 0.3s;
}

.btn-secondary {
    border: 2px solid white;
    color: white;
    padding: 13px 40px;
    border-radius: 5px;
    font-weight: 900;
    display: inline-block;
    margin: 10px;
    text-decoration: none;
}

.cities-section {
    margin-top: -60px;
    position: relative;
    z-index: 100;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.city-card {
    background: white;
    padding: 35px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    font-weight: 900;
    font-size: 1.2rem;
    border-bottom: 4px solid var(--accent);
}

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

.s-card {
    background: var(--light-bg);
    padding: 50px 30px;
    border-radius: 25px;
    text-align: center;
    transition: 0.4s;
}

.s-card:hover {
    background: white;
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.s-icon {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 25px;
}

.line-gold {
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: 20px auto;
}

.bg-royal-dark {
    background: var(--primary);
    color: white;
}

.store-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.badge-gold {
    background: var(--accent);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 900;
    margin-bottom: 20px;
    display: inline-block;
}

.store-list-new {
    list-style: none;
    margin: 30px 0;
}

.store-list-new li {
    margin-bottom: 18px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.store-list-new i {
    color: var(--accent);
    font-size: 1.4rem;
}

.img-frame {
    border: 2px solid var(--accent);
    padding: 20px;
    border-radius: 40px;
}

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

.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: 2.2rem;
    text-decoration: none;
}

.btn-call {
    background: white;
    color: var(--primary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        padding: 100px 30px;
        transition: 0.4s;
        z-index: 5000;
    }

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

    .menu-btn {
        display: block;
        color: white;
        font-size: 1.8rem;
        cursor: pointer;
    }

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

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

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

    .store-list-new li {
        justify-content: center;
    }
}

.main-footer {
    padding: 60px 0 20px;
    text-align: center;
    background: #050d1a;
    color: #777;
    border-top: 5px solid var(--accent);
}

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

.copyright {
    margin-top: 20px;
    font-size: 0.85rem;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-elements i {
    position: absolute;
    bottom: -100px;
    color: var(--accent);
    opacity: 0.15;
    font-size: 2rem;
    animation: floatUp 15s linear infinite;
}

.floating-elements i:nth-child(1) {
    left: 10%;
    animation-duration: 18s;
    font-size: 3rem;
}

.floating-elements i:nth-child(2) {
    left: 25%;
    animation-duration: 12s;
    animation-delay: 2s;
}

.floating-elements i:nth-child(3) {
    left: 40%;
    animation-duration: 20s;
    animation-delay: 4s;
    font-size: 1.5rem;
}

.floating-elements i:nth-child(4) {
    left: 55%;
    animation-duration: 15s;
    animation-delay: 1s;
}

.floating-elements i:nth-child(5) {
    left: 70%;
    animation-duration: 22s;
    animation-delay: 3s;
    font-size: 2.5rem;
}

.floating-elements i:nth-child(6) {
    left: 85%;
    animation-duration: 14s;
    animation-delay: 5s;
}

.floating-elements i:nth-child(7) {
    left: 15%;
    animation-duration: 19s;
    animation-delay: 7s;
}

.floating-elements i:nth-child(8) {
    left: 80%;
    animation-duration: 16s;
    animation-delay: 2s;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    20% {
        opacity: 0.15;
    }

    80% {
        opacity: 0.15;
    }

    100% {
        transform: translateY(-110vh) rotate(360deg);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 900;
    margin-bottom: 15px;
    text-align: center;
}

.line-gold {
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: 0 auto !important;
    border-radius: 50px;
}

.about-grid-more {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge-gold {
    background: var(--accent);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 900;
    margin-bottom: 20px;
    display: inline-block;
}

.stats-mini {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat-p h3 {
    font-size: 2.5rem;
    color: var(--accent);
    font-weight: 900;
}

.about-img-more img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--accent);
}

.gallery-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.g-item {
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: 0.3s;
}

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

.g-item:hover {
    border-color: var(--accent);
}

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

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: white;
    padding: 40px;
    border-radius: 30px;
    border-right: 6px solid var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.review-card h5 {
    margin-top: 20px;
    color: var(--accent);
    font-weight: 800;
}

.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    color: white;
}

.faq-item h4 {
    color: var(--accent);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-royal-card {
    background: var(--primary);
    color: white;
    padding: 80px 40px;
    border-radius: 40px;
    text-align: center;
    border: 2px solid var(--accent);
    position: relative;
    overflow: hidden;
}

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

.btn-wa-large {
    background: #25d366;
    color: white;
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 900;
    text-decoration: none;
}

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

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

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

    .cta-btns-group a {
        width: 100%;
    }
}

.main-footer {
    background-color: #050d1a;
    color: #ffffff;
    padding: 80px 0 0;
    border-top: 4px solid var(--accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 60px;
    padding-bottom: 50px;
}

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

.footer-logo h3 {
    font-size: 1.8rem;
    color: var(--accent);
    margin: 0;
}

.about-f p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

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

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

.social-links a:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-5px);
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--accent);
    position: relative;
    padding-bottom: 10px;
}


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

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

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: white;
    padding-right: 10px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 5px;
}

.contact-item p {
    color: #ccc;
    margin: 0;
}

.footer-bottom {
    background: #030a15;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.flex-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

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

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

    .footer-logo,
    .social-links,
    .contact-item {
        justify-content: center;
    }

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

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

.price-highlight {
    color: var(--gold-light);
    font-weight: 900;
    text-decoration: underline;
}

.location-tag {
    background: rgba(197, 160, 89, 0.15) !important;
    border: 2px solid var(--accent) !important;
    color: var(--white) !important;
    font-weight: 800;
}