/* Color Palette */
:root {
    --arr-primary: #af8700;
    /* Gold */
    --arr-primary-dark: #8c6c00;
    --arr-secondary: #2c3e50;
    /* Deep Blue-Ish Gray */
    --arr-accent: #f9f9f9;
    --arr-text: #333333;
    --arr-text-light: #777777;
    --arr-white: #ffffff;
    --arr-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --arr-grad: linear-gradient(135deg, #af8700 0%, #d4af37 100%);
    --arr-transition: all 0.3s ease;
}

/* Reset-ish via classes */
.arr-body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    color: var(--arr-text);
    background-color: var(--arr-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.arr-img {
    max-width: 100%;
    height: auto;
    display: block;
}

.arr-rounded {
    border-radius: 12px;
    box-shadow: var(--arr-shadow);
}

/* Top Ad Banner */
.arr-top-ad-banner {
    background-color: #f0f0f0;
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.arr-ad-text {
    margin: 0;
    font-size: 13px;
    color: #666;
    font-weight: 400;
}

/* Page Loader */
.arr-page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.arr-loader-content {
    text-align: center;
}

.arr-loader-logo {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--arr-primary);
}

.arr-loader-bar {
    width: 200px;
    height: 4px;
    background: #eee;
    margin: 0 auto;
    border-radius: 2px;
    overflow: hidden;
}

.arr-loader-progress {
    width: 0%;
    height: 100%;
    background: var(--arr-primary);
    animation: arr-progress 2s forwards;
}

@keyframes arr-progress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

/* Header */
.arr-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.arr-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.arr-logo-wrapper {
    flex: 1;
}

.arr-logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--arr-primary);
    text-decoration: none;
}

.arr-desktop-nav {
    display: flex;
    gap: 30px;
}

.arr-nav-link {
    text-decoration: none;
    color: var(--arr-secondary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: var(--arr-transition);
}

.arr-nav-link:hover {
    color: var(--arr-primary);
}

.arr-header-actions {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.arr-hamburger {
    display: none;
    cursor: pointer;
    color: var(--arr-primary);
}

/* Buttons */
.arr-btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: var(--arr-transition);
    border: none;
    font-size: 14px;
    text-transform: uppercase;
}

.arr-btn-primary {
    background: var(--arr-grad);
    color: var(--arr-white);
    box-shadow: 0 4px 15px rgba(175, 135, 0, 0.3);
}

.arr-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(175, 135, 0, 0.4);
}

.arr-btn-outline {
    background: transparent;
    border: 2px solid var(--arr-primary);
    color: var(--arr-primary);
}

.arr-btn-outline:hover {
    background: var(--arr-primary);
    color: var(--arr-white);
}

.arr-btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

/* Hero Section */
.arr-hero {
    padding: 80px 0;
    background-color: var(--arr-accent);
}

.arr-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.arr-badge {
    display: inline-block;
    background: #fdf2d0;
    color: var(--arr-primary-dark);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.arr-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--arr-secondary);
}

.arr-hero-desc {
    font-size: 1.1rem;
    color: var(--arr-text-light);
    margin-bottom: 35px;
    max-width: 500px;
}

.arr-hero-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.05);
}

/* Common Section Styles */
.arr-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.arr-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.arr-section-subtitle {
    color: var(--arr-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

/* About Section */
.arr-about {
    padding: 100px 0;
}

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

.arr-para {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--arr-text);
}

/* Features Section */
.arr-features {
    padding: 100px 0;
    background-color: var(--arr-accent);
}

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

.arr-feature-card {
    background: var(--arr-white);
    padding: 40px;
    border-radius: 20px;
    transition: var(--arr-transition);
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

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

.arr-feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.arr-feature-name {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--arr-secondary);
}

.arr-feature-info {
    color: var(--arr-text-light);
    font-size: 15px;
}

/* Testimonials */
.arr-testimonials {
    padding: 100px 0;
}

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

.arr-testimonial-card {
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 20px;
    background: var(--arr-white);
}

.arr-rating {
    margin-bottom: 20px;
    font-size: 18px;
}

.arr-testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--arr-text);
}

.arr-testimonial-author {
    font-weight: 700;
    color: var(--arr-primary);
}

/* FAQ Section */
.arr-faq {
    padding: 100px 0;
    background-color: var(--arr-accent);
}

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

.arr-faq-item {
    background: var(--arr-white);
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.arr-faq-question {
    padding: 20px 30px;
    font-weight: 700;
    cursor: pointer;
    background: var(--arr-grad);
    color: white;
}

.arr-faq-answer {
    padding: 20px 30px;
    color: var(--arr-text-light);
    display: none;
}

/* Mobile Menu */
.arr-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100%;
    background: var(--arr-white);
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease-in-out;
    padding: 40px;
}

.arr-mobile-menu.active {
    right: 0;
}

.arr-close-menu {
    text-align: right;
    cursor: pointer;
    color: var(--arr-primary);
}

.arr-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 50px;
}

.arr-mobile-link {
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    color: var(--arr-secondary);
}

.arr-mobile-cta-wrapper {
    margin-top: 40px;
}

/* Footer Styles */
.arr-footer {
    background: #1a1a1a;
    color: #eee;
    padding: 80px 0 40px;
}

.arr-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.arr-footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--arr-primary);
    margin-bottom: 15px;
}

.arr-footer-heading {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--arr-white);
}

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

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

.arr-footer-link,
.arr-legal-btn {
    color: #aaa;
    text-decoration: none;
    transition: var(--arr-transition);
    background: none;
    border: none;
    padding: 0;
    font-size: 15px;
    cursor: pointer;
    text-align: left;
}

.arr-footer-link:hover,
.arr-legal-btn:hover {
    color: var(--arr-primary);
}

.arr-footer-info {
    margin-bottom: 8px;
    color: #aaa;
}

.arr-footer-bottom {
    padding-top: 40px;
    border-top: 1px solid #333;
    text-align: center;
}

.arr-bottom-ad-note {
    font-size: 12px;
    color: #777;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.arr-copyright {
    color: #555;
    font-size: 14px;
}

/* Modals */
.arr-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
}

.arr-modal-content {
    background: var(--arr-white);
    width: 90%;
    max-width: 600px;
    border-radius: 20px;
    padding: 40px;
    position: relative;
}

.arr-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.arr-modal-close {
    font-size: 30px;
    cursor: pointer;
    color: var(--arr-text-light);
}

.arr-modal-body p {
    color: var(--arr-text);
    margin-bottom: 15px;
}

/* Cookie Popup */
.arr-cookie-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    max-width: 500px;
    background: var(--arr-white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
    z-index: 4000;
    border-left: 5px solid var(--arr-primary);
    display: block;
    /* Managed by JS */
}

.arr-cookie-text {
    font-size: 14px;
    margin-bottom: 20px;
}

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

.arr-btn-cookie-accept {
    background: var(--arr-primary);
    color: white;
}

.arr-btn-cookie-reject {
    background: #eee;
    color: #666;
}

/* Responsive */
@media (max-width: 1024px) {
    .arr-hero-title {
        font-size: 2.8rem;
    }

    .arr-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .arr-desktop-nav,
    .arr-desktop-only {
        display: none;
    }

    .arr-hamburger {
        display: block;
    }

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

    .arr-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

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

    .arr-hero-img {
        order: -1;
    }

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

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

    .arr-footer-li button {
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .arr-hero-title {
        font-size: 2.2rem;
    }

    .arr-cookie-popup {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }
}