/* Reset and Base Styles - No generic tag selectors allowed */
.rm-html,
.rm-body,
.rm-loader,
.rm-loader-content,
.rm-loader-text,
.rm-spinner,
.rm-top-ad,
.rm-top-ad-text,
.rm-header,
.rm-header-inner,
.rm-logo,
.rm-nav,
.rm-close-menu,
.rm-nav-list,
.rm-nav-link,
.rm-header-actions,
.rm-cta-button,
.rm-hamburger,
.rm-main,
.rm-hero,
.rm-hero-content,
.rm-hero-text,
.rm-hero-title,
.rm-hero-price,
.rm-hero-desc,
.rm-btn,
.rm-btn-primary,
.rm-btn-secondary,
.rm-hero-img-wrap,
.rm-hero-img,
.rm-section,
.rm-about,
.rm-container,
.rm-about-grid,
.rm-about-img-wrap,
.rm-about-img,
.rm-about-text,
.rm-section-title,
.rm-text-box,
.rm-whyus,
.rm-text-center,
.rm-features-grid,
.rm-feature-card,
.rm-feature-title,
.rm-feature-text,
.rm-gallery,
.rm-gallery-grid,
.rm-gallery-img,
.rm-testimonials,
.rm-testimonials-grid,
.rm-testimonial-card,
.rm-testimonial-text,
.rm-testimonial-author,
.rm-faq,
.rm-accordion,
.rm-accordion-item,
.rm-accordion-header,
.rm-accordion-body,
.rm-accordion-content,
.rm-modal-overlay,
.rm-modal-content,
.rm-modal-close,
.rm-modal-title,
.rm-modal-body,
.rm-modal-text,
.rm-cookie-banner,
.rm-cookie-text,
.rm-cookie-buttons,
.rm-cookie-reject,
.rm-cookie-accept,
.rm-footer,
.rm-footer-top,
.rm-footer-wrap,
.rm-footer-col,
.rm-footer-title,
.rm-footer-text,
.rm-footer-link,
.rm-footer-btn,
.rm-footer-bottom,
.rm-footer-ad-warning,
.rm-footer-copyright {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.rm-html {
    scroll-behavior: smooth;
}

.rm-body {
    background-color: #fafafa;
    color: #333333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Color Variables Concept via Classes */
.rm-text-center {
    text-align: center;
}

/* Page Loader */
.rm-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #0a1f44 0%, #1a365d 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.rm-loader.rm-hidden {
    opacity: 0;
    pointer-events: none;
}

.rm-loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rm-loader-text {
    color: #ffd700;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.rm-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 215, 0, 0.3);
    border-top: 5px solid #ffd700;
    border-radius: 50%;
    animation: rm-spin 1s linear infinite;
}

@keyframes rm-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Top Ad Bar */
.rm-top-ad {
    background-color: #f1f5f9;
    padding: 8px 15px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.rm-top-ad-text {
    font-size: 0.8rem;
    color: #64748b;
}

/* Header */
.rm-header {
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.rm-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rm-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0a1f44;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rm-nav {
    display: flex;
    align-items: center;
}

.rm-nav-list {
    display: flex;
    gap: 30px;
}

.rm-nav-link {
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.rm-nav-link:hover {
    color: #d4af37;
}

.rm-close-menu {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
    color: #0a1f44;
}

.rm-header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rm-cta-button {
    background-color: #0a1f44;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.rm-cta-button:hover {
    background-color: #d4af37;
    transform: translateY(-2px);
}

.rm-hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #0a1f44;
}

/* Hero Section */
.rm-hero {
    background: linear-gradient(to right, #ffffff, #f1f5f9);
    padding: 80px 20px;
}

.rm-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.rm-hero-text {
    flex: 1;
}

.rm-hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #0a1f44;
    margin-bottom: 20px;
}

.rm-hero-price {
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 20px;
}

.rm-hero-desc {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 35px;
}

.rm-btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.rm-btn-primary {
    background-color: #d4af37;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.rm-btn-primary:hover {
    background-color: #b8962c;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.rm-btn-secondary {
    background-color: #e2e8f0;
    color: #475569;
}

.rm-btn-secondary:hover {
    background-color: #cbd5e1;
}

.rm-hero-img-wrap {
    flex: 1;
    display: flex;
    justify-content: center;
}

.rm-hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: rm-float 6s ease-in-out infinite;
}

@keyframes rm-float {
    0% {
        transform: translateY(0px);
    }

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

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

/* Container & Sections */
.rm-section {
    padding: 80px 20px;
}

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

.rm-section-title {
    font-size: 2.5rem;
    color: #0a1f44;
    font-weight: 800;
    margin-bottom: 40px;
}

/* About Section */
.rm-about {
    background-color: #ffffff;
}

.rm-about-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.rm-about-img-wrap {
    flex: 1;
}

.rm-about-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.rm-about-text {
    flex: 1;
}

.rm-text-box {
    font-size: 1.1rem;
    color: #475569;
}

/* Why Us Section */
.rm-whyus {
    background-color: #f8fafc;
}

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

.rm-feature-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.rm-feature-card:hover {
    transform: translateY(-10px);
}

.rm-feature-title {
    font-size: 1.3rem;
    color: #0a1f44;
    margin-bottom: 15px;
    font-weight: 700;
}

.rm-feature-text {
    color: #64748b;
    font-size: 1rem;
}

/* Gallery Section */
.rm-gallery {
    padding-top: 20px;
}

.rm-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.rm-gallery-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.rm-gallery-img:hover {
    transform: scale(1.03);
}

/* Testimonials Section */
.rm-testimonials {
    background-color: #0a1f44;
    color: #ffffff;
}

.rm-testimonials .rm-section-title {
    color: #ffffff;
}

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

.rm-testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rm-testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #e2e8f0;
}

.rm-testimonial-author {
    font-weight: 700;
    color: #d4af37;
}

/* FAQ Section */
.rm-faq {
    background-color: #f1f5f9;
}

.rm-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.rm-accordion-item {
    background: #ffffff;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.rm-accordion-header {
    width: 100%;
    text-align: left;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #0a1f44;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rm-accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    color: #d4af37;
}

.rm-accordion-header.rm-active::after {
    content: '-';
}

.rm-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.rm-accordion-content {
    padding: 0 20px 20px;
    color: #475569;
}

/* Cookies Popup */
.rm-cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 9999;
    border: 1px solid #e2e8f0;
    transform: translateY(150%);
    transition: transform 0.5s ease;
}

.rm-cookie-banner.rm-show {
    transform: translateY(0);
}

.rm-cookie-text {
    flex: 1 1 300px;
    color: #475569;
    font-size: 0.95rem;
}

.rm-cookie-buttons {
    display: flex;
    gap: 10px;
}

/* Returns Modal */
.rm-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.rm-modal-overlay.rm-show {
    opacity: 1;
    pointer-events: auto;
}

.rm-modal-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.rm-modal-overlay.rm-show .rm-modal-content {
    transform: translateY(0);
}

.rm-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #94a3b8;
}

.rm-modal-title {
    font-size: 1.8rem;
    color: #0a1f44;
    margin-bottom: 20px;
}

.rm-modal-text {
    color: #475569;
    margin-bottom: 15px;
}

/* Footer Section */
.rm-footer {
    background-color: #010a17;
    color: #94a3b8;
}

.rm-footer-top {
    padding: 80px 20px;
}

.rm-footer-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.rm-footer-title {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.rm-footer-text {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.rm-footer-link {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.rm-footer-link:hover {
    color: #d4af37;
}

.rm-footer-btn {
    background: none;
    border: none;
    color: #94a3b8;
    padding: 0;
    cursor: pointer;
    font-size: 0.95rem;
    text-decoration: none;
    margin-top: 10px;
    display: inline-block;
}

.rm-footer-btn:hover {
    color: #ffffff;
}

.rm-footer-bottom {
    background-color: #051224;
    padding: 20px;
    text-align: center;
}

.rm-footer-ad-warning {
    font-size: 0.8rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 15px auto;
}

.rm-footer-copyright {
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 900px) {

    .rm-hero-content,
    .rm-about-grid {
        flex-direction: column;
    }

    .rm-hero-text {
        text-align: center;
    }

    .rm-hero-img-wrap,
    .rm-about-img-wrap {
        margin-top: 30px;
    }

    .rm-gallery-grid {
        grid-template-columns: 1fr;
    }

    .rm-hero-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .rm-hamburger {
        display: block;
    }

    .rm-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background-color: #ffffff;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        justify-content: center;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .rm-nav.rm-open {
        right: 0;
    }

    .rm-close-menu {
        display: block;
    }

    .rm-nav-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .rm-nav-link {
        font-size: 1.2rem;
    }

    .rm-cta-button {
        display: none;
    }
}