:root {
    --bg-dark: #0c0c0c;
    --card-dark: #161616;
    --gold: #d4af37;
    --gold-light: #f3e5ab;
    --gold-dark: #aa820a;
    --white: #ffffff;
    --transition: all 0.4s ease;
}

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

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

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

.royal-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2000;
    background: rgba(12, 12, 12, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 15px 0;
}

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

.logo h2 {
    font-family: 'Amiri', serif;
    font-size: 1.8rem;
    color: var(--gold);
    line-height: 1;
}

.logo h2 span {
    color: var(--white);
}

.logo p {
    font-size: 0.7rem;
    color: #888;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

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

.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000 !important;
    padding: 8px 22px;
    border-radius: 50px;
    font-weight: 800;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--gold);
    cursor: pointer;
}

/* ---  (Hero) --- */
.royal-hero {
    height: 100vh;
    background: url('imgs/img4.jpeg') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-badge {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: inline-block;
    margin-bottom: 25px;
}

.royal-hero h1 {
    font-family: 'Amiri', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--white);
}

.royal-hero h1 .highlight {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.royal-hero p {
    font-size: 1.15rem;
    color: #aaa;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.btn-gold:hover,
.btn-glass:hover {
    transform: translateY(-5px);
}

.section-dark {
    padding: 100px 0;
    background: var(--bg-dark);
}

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

.section-title span {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title h2 {
    font-family: 'Amiri', serif;
    font-size: 2.8rem;
    color: var(--white);
    margin-top: 10px;
}

.gold-line {
    width: 70px;
    height: 3px;
    background: var(--gold);
    margin: 15px auto 0;
    border-radius: 50px;
}

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

.rental-card {
    background: var(--card-dark);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.rental-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, var(--card-dark), transparent);
}

.card-info {
    padding: 30px;
}

.card-info h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 12px;
    font-family: 'Amiri', serif;
}

.card-info p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.7;
}

.section-gold-bg {
    padding: 100px 0;
    background: linear-gradient(135deg, #111 0%, #1a160b 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.dark-title span {
    color: #bca052;
}

.dark-title h2 {
    color: var(--gold-light);
}

.dark-line {
    width: 70px;
    height: 3px;
    background: var(--white);
    margin: 15px auto 0;
    border-radius: 50px;
}

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

.hosp-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.hosp-card:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.hosp-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.hosp-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--white);
}

.hosp-card p {
    font-size: 0.9rem;
    color: #999;
    line-height: 1.6;
}

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

.about-info h2 {
    font-family: 'Amiri', serif;
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.about-info p {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 25px;
}

.location-badge {
    background: var(--card-dark);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 15px 20px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #ccc;
}

.location-badge i {
    color: var(--gold);
    font-size: 1.2rem;
}

.contact-box {
    background: var(--card-dark);
    padding: 50px;
    border-radius: 25px;
    border: 2px solid var(--gold);
    text-align: center;
}

.contact-box h3 {
    font-family: 'Amiri', serif;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 10px;
}

.contact-box p {
    color: #888;
    margin-bottom: 30px;
}

.contact-number,
.contact-whatsapp {
    display: block;
    padding: 15px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 15px;
    transition: var(--transition);
}

.contact-number {
    background: var(--gold);
    color: #000;
}

.contact-whatsapp {
    background: #25d366;
    color: #fff;
}

.contact-number:hover,
.contact-whatsapp:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

.footer {
    background: #070707;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #1a1a1a;
    color: #666;
    font-size: 0.85rem;
}

.float-wa {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 1000;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 30px;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        text-align: center;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .royal-hero h1 {
        font-size: 2.3rem;
    }

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

    .contact-box {
        padding: 30px 20px;
    }
}

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

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-info h2 {
    margin: 0;
    line-height: 1.2;
}

.logo-info p {
    margin: 0;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }
}

.gallery-section {
    background-color: #fcfcfc;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 1px solid #ddd;
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    transition: 0.3s;
    color: var(--dark);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(176, 141, 87, 0.3);
}

.masonry-grid {
    column-count: 3;
    column-gap: 20px;
}

.grid-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.grid-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: 0.5s ease;
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(176, 141, 87, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    opacity: 0;
    transition: 0.4s;
}

.grid-item:hover .img-overlay {
    opacity: 1;
}

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

@media (max-width: 992px) {
    .masonry-grid {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .masonry-grid {
        column-count: 1;
    }
}

.text-center {
    text-align: center !important;
}

.line-center {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 15px auto 30px;
    border-radius: 10px;
}

.sub-title {
    display: block;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.main-footer {
    background-color: #0d0d0d;
    color: white;
    padding: 80px 0 0;
    border-top: 4px solid var(--primary);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 20px;
}

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

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.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: var(--primary);
    padding-right: 10px;
}

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

.f-contact-item i {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: 0.3s;
}

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

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

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

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

    .footer-logo,
    .footer-social,
    .footer-col h4::after,
    .f-contact-item {
        justify-content: center;
    }

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

.gallery-section {
    padding-top: 120px !important;
    background-color: #ffffff;
}

.modern-badge {
    background: rgba(176, 141, 87, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 15px;
    border: 1px solid rgba(176, 141, 87, 0.3);
}

.section-main-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 10px;
}

.section-main-title .highlight {
    color: var(--primary);
}

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

.decorative-divider .line {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary));
}

.decorative-divider .line:last-child {
    background: linear-gradient(to left, transparent, var(--primary));
}

.decorative-divider i {
    color: var(--primary);
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px rgba(176, 141, 87, 0.5));
}

.section-desc {
    color: #777;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

@media (max-width: 768px) {
    .gallery-section {
        padding-top: 80px !important;
    }

    .section-main-title {
        font-size: 2rem;
    }
}

.blog-page {
    background-color: #fcfcfc;
}

.blog-hero {
    padding: 160px 0 80px;
    background: var(--dark);
    color: white;
    text-align: center;
}

.blog-hero h1 {
    font-size: 3rem;
    color: var(--primary);
    font-weight: 900;
}

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

.post-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.4s;
    border: 1px solid #eee;
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(176, 141, 87, 0.15);
}

.post-img {
    height: 250px;
    position: relative;
}

.post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-img .category {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: #000;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.8rem;
}

.post-content {
    padding: 30px;
}

.post-date {
    font-size: 0.8rem;
    color: #999;
    display: block;
    margin-bottom: 10px;
}

.post-content h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.post-content p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary);
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.read-more:hover {
    gap: 15px;
}


.process-royal-section {
    background-color: #0d0d0d !important;
    padding: 100px 0;
    margin-bottom: 50px;
}

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

.step-card-royal {
    background: #1a1a1a;
    padding: 50px 30px;
    border-radius: 30px;
    text-align: center;
    border: 1px solid #222;
    transition: all 0.4s ease;
    position: relative;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(251, 192, 45, 0.1);
    border: 2px solid var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    transition: 0.4s;
}

.step-icon i {
    font-size: 2.5rem;
    color: var(--primary);
    filter: drop-shadow(0 0 10px rgba(251, 192, 45, 0.4));
}

.step-tag {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary);
    color: black;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.step-card-royal h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.step-card-royal p {
    color: #eee;
    line-height: 1.8;
    font-size: 0.95rem;
}

.step-card-royal:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(251, 192, 45, 0.15);
}

.step-card-royal:hover .step-icon {
    background: var(--primary);
}

.step-card-royal:hover .step-icon i {
    color: black;
}

.section-divider {
    height: 5px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
    width: 80%;
    margin: 0 auto;
    opacity: 0.3;
}

@media (max-width: 768px) {
    .process-royal-section {
        padding: 60px 20px;
    }
}


.process-royal-section {
    background-color: #0a0a0a !important;
    padding: 100px 0;
}

.process-royal-section h2.yellow-text {
    color: #fbc02d !important;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 900;
}

.modern-badge {
    background: #fbc02d !important;
    color: #000 !important;
    font-weight: 900;
    padding: 5px 20px;
    border-radius: 50px;
}

.step-card-royal {
    background: #1a1a1a !important;
    border: 1px solid #333 !important;
    padding: 40px 25px;
    border-radius: 25px;
    text-align: center;
}

.step-card-royal h3 {
    color: #fbc02d !important;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    display: block;
}

.step-card-royal p {
    color: #ffffff !important;
    font-size: 1rem;
    line-height: 1.8;
    opacity: 1 !important;
}

.step-icon i {
    color: #fbc02d !important;
    font-size: 2.5rem;
}

.step-icon {
    background: rgba(251, 192, 45, 0.1) !important;
    border: 2px solid #fbc02d !important;
}

.step-card-royal:hover {
    border-color: #fbc02d !important;
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(251, 192, 45, 0.2);
}


.blog-page {
    background-color: #fcfcfc;
}

.blog-page header {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.blog-page .nav-links a {
    color: #333 !important;
}

.blog-page .logo-name {
    color: #000 !important;
}

.blog-page ul {
    list-style: none !important;
    padding: 0;
    margin: 0;
}

.blog-hero {
    position: relative;
    padding: 160px 0 100px;
    background: #0d0d0d url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?q=80&w=1500&auto=format&fit=crop') no-repeat center center/cover;
    text-align: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

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

.blog-hero h1 {
    font-size: 3.5rem;
    color: var(--primary);
    font-weight: 900;
    margin-bottom: 15px;
}

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

.post-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: 0.4s ease;
}

.post-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.post-img {
    height: 220px;
    position: relative;
    overflow: hidden;
}

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

.post-card:hover .post-img img {
    transform: scale(1.1);
}

.post-img .category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: #000;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.8rem;
}

.post-content {
    padding: 25px;
    text-align: right;
}

.post-date {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 10px;
    display: block;
}

.post-content h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.5;
}

.read-more {
    color: var(--primary);
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}


:root {
    --primary-color: #1a1a1a;
    --accent-color: #d4af37;
    --text-muted: #777;
    --bg-light: #fdfdfd;
    --white: #ffffff;
}

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

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.8;
    background-color: var(--bg-light);
    color: var(--primary-color);
}

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

header {
    background: var(--white);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

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

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

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

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

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

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

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    transition: 0.3s;
}

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

.nav-cta-btn {
    background: var(--accent-color);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 50px;
}

.post-container {
    padding-top: 130px;
    padding-bottom: 80px;
}

.breadcrumbs {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.breadcrumbs a {
    color: var(--accent-color);
    text-decoration: none;
}

.post-content-wrap {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.post-main-header {
    text-align: center;
    margin-bottom: 40px;
}

.post-cat {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 15px;
}

.post-main-header h1 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.post-meta {
    font-size: 0.9rem;
    color: #999;
}

.post-meta span {
    margin: 0 10px;
}

.post-featured-img {
    width: 100%;
    margin-bottom: 40px;
}

.post-featured-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.post-article-text {
    max-width: 800px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 30px;
}

.post-article-text h2 {
    margin: 40px 0 20px;
    color: var(--primary-color);
    border-right: 5px solid var(--accent-color);
    padding-right: 15px;
}

.tip-box {
    background: #fffcf0;
    border: 1px dashed var(--accent-color);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 35px 0;
}

.tip-box i {
    font-size: 2rem;
    color: var(--accent-color);
}

.post-share {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.share-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: 0.3s;
}

.share-links a.fb {
    background: #3b5998;
}

.share-links a.wa {
    background: #25d366;
}

.share-links a.tw {
    background: #1da1f2;
}

.share-links a:hover {
    transform: translateY(-5px);
    opacity: 0.8;
}

.main-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 30px 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .post-main-header h1 {
        font-size: 1.6rem;
    }

    .post-content-wrap {
        padding: 25px 15px;
    }

    .lead-text {
        font-size: 1.1rem;
    }
}


.single-post-page .post-container {
    margin: 0 auto !important;
    max-width: 1100px !important;
    padding-top: 160px !important;
    display: block !important;
    float: none !important;
}

.post-content-wrap {
    width: 100% !important;
    max-width: 900px !important;
    margin: 0 auto !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    float: none !important;
    display: block !important;
}

.post-main-header {
    width: 100% !important;
    margin: 0 auto 40px auto !important;
    text-align: center !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    display: block !important;
}

.post-main-header h1 {
    font-size: 2.2rem !important;
    font-weight: 900 !important;
    text-align: center !important;
    width: 100% !important;
    margin: 10px auto !important;
}

.nav-links,
.nav-links li {
    list-style: none !important;
    list-style-type: none !important;
}

.breadcrumbs {
    text-align: center !important;
    width: 100% !important;
    margin-bottom: 30px !important;
}

.post-featured-img {
    width: 100%;
    max-width: 850px; 
    height: 450px;    
    margin: 0 auto 40px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.post-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-article-text img {
    display: block;
    max-width: 100%;   
    width: auto;
    max-height: 500px; 
    margin: 35px auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
    .post-featured-img {
        height: 250px; 
        border-radius: 10px;
    }
    
    .post-article-text img {
        max-height: 300px;
    }
}

.hero {
    height: 100vh; 
    height: 100dvh; 

    background-size: cover !important;
    
    background-position: center center !important;
    
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
}


.step-card-royal {
    position: relative; 
    padding-top: 60px;
}

.step-tag {
    position: absolute;
    top: -20px;
    right: 30px; 
    background: linear-gradient(135deg, #fbc02d 0%, #ceac7b 100%);
    color: #000 !important; 
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 900;
    border: 4px solid #0a0a0a; 
    box-shadow: 0 5px 15px rgba(251, 192, 45, 0.4);
    z-index: 10;
    transition: 0.4s ease;
}

.step-card-royal:hover .step-tag {
    transform: scale(1.2) rotate(10deg); 
    background: #ffffff;
    box-shadow: 0 0 20px #fbc02d;
}

.step-tag::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

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



.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 30px;
    justify-content: center; 
    justify-items: center;  
    max-width: 1200px;
    margin: 40px auto 0;
}

.post-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: 0.4s ease;
    width: 100%; 
    max-width: 380px; 
}

.post-img {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.post-img .category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #fbc02d 0%, #ceac7b 100%);
    color: #000 !important;
    padding: 6px 20px;
    font-size: 0.85rem;
    font-weight: 900;
    border-radius: 10px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.3);
    text-transform: uppercase;
}

.post-card:hover .category {
    transform: scale(1.1);
    background: #fff;
    color: var(--primary) !important;
}

@media (max-width: 768px) {
    .posts-grid {
        padding: 0 15px;
        gap: 25px;
    }

    .post-card {
        margin: 0 auto;
    }

    .post-content h3 {
        font-size: 1.2rem !important; 
    }
}

.img-overlay span {
    color: white;
    font-weight: 900;
    font-size: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.modern-badge {
    background: var(--primary);
    color: #000 !important;
    padding: 8px 25px;
    font-weight: 900;
    border-radius: 50px;
}

.contact-royal-section {
    background-color: #0d0d0d !important;
    color: white;
    padding: 100px 0;
}

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

.contact-info-text { flex: 1.2; text-align: right; }

.modern-badge {
    background: var(--primary);
    color: #000;
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 20px;
}

.contact-info-text h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.2;
}

.promo-lead {
    color: #ccc;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 500px;
}

.location-box-modern {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(251, 192, 45, 0.2);
    width: fit-content;
}

.loc-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: #000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.loc-details span { display: block; color: var(--primary); font-size: 0.85rem; font-weight: bold; }
.loc-details strong { font-size: 1.05rem; color: #fff; }

.booking-card-royal {
    flex: 0.8;
    background: #151515;
    padding: 50px 40px;
    border-radius: 35px;
    border: 1px solid #222;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    text-align: center;
}

.shield-gem-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(251, 192, 45, 0.3));
}

.booking-card-royal h3 { color: #fff; font-size: 1.8rem; margin-bottom: 15px; font-weight: 900; }
.booking-card-royal p { color: #888; margin-bottom: 35px; font-size: 0.95rem; }

.cta-btns-vertical { display: flex; flex-direction: column; gap: 15px; }

.btn-call-gold {
    background: var(--primary);
    color: #000 !important; 
    padding: 16px;
    border-radius: 15px;
    font-weight: 900;
    font-size: 1.1rem;
    transition: 0.3s;
}

.btn-wa-green {
    background: #25d366;
    color: #fff !important;
    padding: 16px;
    border-radius: 15px;
    font-weight: 900;
    font-size: 1.1rem;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-call-gold:hover, .btn-wa-green:hover {
    transform: translateY(-5px);
    filter: brightness(1.1);
}

.guarantee-text {
    margin-top: 30px;
    color: var(--primary);
    font-weight: bold;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

@media (max-width: 992px) {
    .contact-flex-wrap { flex-direction: column; text-align: center; }
    .contact-info-text { text-align: center; }
    .promo-lead { margin: 0 auto 30px; }
    .location-box-modern { margin: 0 auto; }
    .booking-card-royal { width: 100%; }
}