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

:root {
    --primary-gold: #D4AF37;
    --primary-gold-dark: #B8960B;
    --primary-gold-light: #F0D77E;
    --primary-navy: #0A1628;
    --primary-navy-light: #1A2D4D;
    --secondary-beige: #F5F5DC;
    --secondary-gray: #6B7280;
    --secondary-gray-light: #F3F4F6;
    --white: #FFFFFF;
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    --shadow-navy: 0 4px 20px rgba(10, 22, 40, 0.2);
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--primary-navy);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    color: var(--primary-navy);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

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

.btn-secondary:hover {
    background: var(--primary-navy);
    color: var(--white);
}

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

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

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.navbar-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--white);
}

.logo-icon {
    font-size: 28px;
    margin-right: 10px;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-gold);
}

.navbar-menu {
    display: flex;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-buttons {
    display: flex;
    margin-left: 20px;
}

.nav-buttons .btn {
    margin-left: 10px;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
}

.navbar-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    margin: 3px 0;
    transition: all 0.3s ease;
}

.hero {
    height: 100vh;
    background: url('../img/bg-banner.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(10 22 40 / 57%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero-title {
    font-size: 56px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--primary-gold);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-description {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 35px;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-buttons .btn {
    margin: 0 10px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 60px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: 'Cormorant Garamond', serif;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.section-title {
    font-size: 42px;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.section-description {
    font-size: 18px;
    color: var(--secondary-gray);
    max-width: 600px;
    margin: 0 auto;
}

.features {
    padding: 100px 0;
    background: var(--secondary-gray-light);
}

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

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-navy);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

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

.feature-title {
    font-size: 24px;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.feature-description {
    font-size: 16px;
    color: var(--secondary-gray);
    line-height: 1.8;
}

.how-it-works {
    padding: 100px 0;
    background: var(--white);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.step-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    padding: 40px 30px;
    background: var(--secondary-gray-light);
    border-radius: 15px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    color: var(--primary-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 20px;
    font-family: 'Cormorant Garamond', serif;
}

.step-title {
    font-size: 22px;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.step-description {
    font-size: 16px;
    color: var(--secondary-gray);
    line-height: 1.8;
}

.step-arrow {
    font-size: 48px;
    color: var(--primary-gold);
    margin: 0 10px;
}

.sugar-daddy-info {
    padding: 100px 0;
    background: var(--white);
}

.sugar-baby-info {
    padding: 100px 0;
    background: var(--secondary-gray-light);
}

.info-content {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.info-content.reverse {
    flex-direction: row-reverse;
}

.info-image {
    flex: 1;
    min-width: 400px;
}

.info-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-navy);
}

.info-text {
    flex: 1;
    min-width: 400px;
}

.info-description {
    font-size: 18px;
    color: var(--secondary-gray);
    line-height: 1.8;
    margin: 20px 0;
}

.info-list {
    list-style: none;
    margin-top: 25px;
}

.info-list li {
    font-size: 16px;
    color: var(--primary-navy);
    margin: 12px 0;
    padding: 10px 0;
    border-bottom: 1px solid var(--secondary-gray-light);
}

.top-website {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
}

.top-website-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.top-website .section-title {
    color: var(--primary-navy);
    margin-bottom: 30px;
}

.top-website-description {
    font-size: 18px;
    color: rgba(10, 22, 40, 0.8);
    line-height: 1.8;
    margin: 20px 0;
}

.top-website-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.top-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}

.top-feature-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.top-feature-text {
    font-size: 14px;
    color: rgba(10, 22, 40, 0.9);
    font-weight: 500;
}

.app-download {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.app-download .section-title {
    color: var(--primary-navy);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.app-reviews {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.app-stars {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.app-star {
    font-size: 32px;
    color: var(--primary-gold);
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.app-button {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-navy);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(10, 22, 40, 0.3);
}

.app-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 22, 40, 0.4);
}

.app-button-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-button-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.app-button-platform {
    font-size: 14px;
    opacity: 0.8;
}

.app-button-name {
    font-size: 18px;
    font-weight: 700;
}

.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-light) 100%);
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonials-scroll-indicator {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin: 20px auto 0;
    position: relative;
    overflow: hidden;
}

.testimonials-scroll-progress {
    height: 100%;
    background: var(--primary-gold);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.testimonial-card {
    flex: 0 0 400px;
    scroll-snap-align: center;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-text {
    font-size: 18px;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-right: 15px;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

.author-location {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.safety {
    padding: 100px 0;
    background: var(--white);
}

.safety-content {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.safety-image {
    flex: 1;
    min-width: 400px;
}

.safety-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-navy);
}

.safety-text {
    flex: 1;
    min-width: 400px;
}

.safety-description {
    font-size: 18px;
    color: var(--secondary-gray);
    line-height: 1.8;
    margin: 20px 0;
}

.safety-features {
    list-style: none;
    margin-bottom: 30px;
}

.safety-features li {
    font-size: 16px;
    color: var(--primary-navy);
    margin: 10px 0;
    padding: 8px 0;
    border-bottom: 1px solid var(--secondary-gray-light);
}

.about {
    padding: 100px 0;
    background: var(--white);
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 400px;
}

.about-description {
    font-size: 18px;
    color: var(--secondary-gray);
    line-height: 1.8;
    margin: 20px 0;
}

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

.about-stat {
    text-align: center;
}

.about-stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: 'Cormorant Garamond', serif;
}

.about-stat-label {
    font-size: 14px;
    color: var(--secondary-gray);
    margin-top: 5px;
}

.about-image {
    flex: 1;
    min-width: 400px;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-navy);
}

.why-join {
    padding: 100px 0;
    background: var(--secondary-gray-light);
}

.why-join-content {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.why-join-image {
    flex: 1;
    min-width: 400px;
}

.why-join-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-navy);
}

.why-join-text {
    flex: 1;
    min-width: 400px;
}

.why-join-description {
    font-size: 18px;
    color: var(--secondary-gray);
    line-height: 1.8;
    margin: 20px 0;
}

.why-join-list {
    list-style: none;
    margin-bottom: 30px;
}

.why-join-list li {
    font-size: 16px;
    color: var(--primary-navy);
    margin: 15px 0;
    padding: 10px 0;
    border-bottom: 1px solid var(--secondary-gray-light);
}

.faq {
    padding: 100px 0;
    background: var(--secondary-gray-light);
}

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

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-navy);
}

.faq-toggle {
    width: 100%;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s ease;
}

.faq-toggle:hover {
    background: rgba(212, 175, 55, 0.1);
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-navy);
}

.faq-icon {
    font-size: 24px;
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    padding: 0 30px 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-content p {
    font-size: 16px;
    color: var(--secondary-gray);
    line-height: 1.8;
}

.faq-item.active .faq-content {
    max-height: 200px;
}

.signup {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
}

.signup .section-title {
    color: var(--primary-navy);
}

.signup-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.signup-description {
    font-size: 18px;
    color: rgba(10, 22, 40, 0.8);
    margin-bottom: 40px;
}

.signup-cta {
    max-width: 720px;
    margin: 0 auto;
}

.signup-cta .btn-block {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.form-input {
    flex: 1;
    min-width: 200px;
    padding: 15px 20px;
    border: 2px solid var(--secondary-gray-light);
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.signup-terms {
    font-size: 14px;
    color: var(--secondary-gray);
    margin-top: 20px;
}

.footer {
    background: var(--primary-navy);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    color: var(--white);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    text-decoration: none;
    border-bottom: none;
}

.footer-logo:hover,
.footer-logo:focus {
    text-decoration: none;
    border-bottom: none;
}

.footer-logo .logo-text {
    text-decoration: none;
}

.footer-logo .logo-icon {
    text-decoration: none;
}

.footer-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.footer-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-gold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a,
.footer-bottom a:visited,
.footer-bottom a:hover,
.footer-bottom a:active {
    color: #ffffff;
    text-decoration: none;
}

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

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-gold);
}

.scroll-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: var(--primary-gold);
    color: var(--primary-navy);
    box-shadow: var(--shadow-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background 0.25s ease;
    z-index: 1100;
}

.scroll-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover,
.scroll-to-top:focus {
    background: #ffd978;
    outline: none;
}

@media (max-width: 768px) {
    .scroll-to-top {
        width: 42px;
        height: 42px;
        right: 16px;
        bottom: 16px;
        font-size: 18px;
    }
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 22, 40, 0.98);
        flex-direction: column;
        padding: 20px;
    }

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

    .nav-link {
        margin: 10px 0;
    }

    .nav-buttons {
        flex-direction: column;
        margin-left: 0;
        margin-top: 10px;
    }

    .nav-buttons .btn {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .navbar-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-stats {
        gap: 40px;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 32px;
    }

    .section-title {
        font-size: 30px;
    }

    .safety-content {
        flex-direction: column;
    }

    .safety-image,
    .safety-text,
    .about-text,
    .about-image,
    .why-join-image,
    .why-join-text,
    .info-image,
    .info-text {
        min-width: 100%;
    }

    .info-content,
    .info-content.reverse {
        flex-direction: column;
    }

    .about-content,
    .why-join-content {
        flex-direction: column;
    }

    .about-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .steps-container {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .testimonial-card {
        flex: 0 0 90%;
    }

    .form-row {
        flex-direction: column;
    }

    .form-input {
        min-width: 100%;
    }
}

[dir="rtl"] .logo-icon {
    margin-right: 0;
    margin-left: 10px;
}

[dir="rtl"] .nav-buttons {
    margin-left: 0;
    margin-right: 20px;
}

[dir="rtl"] .nav-buttons .btn {
    margin-left: 0;
    margin-right: 10px;
}

[dir="rtl"] .hero-buttons .btn {
    margin: 0 10px;
}

[dir="rtl"] .testimonial-author {
    flex-direction: row-reverse;
}

[dir="rtl"] .author-avatar {
    margin-right: 0;
    margin-left: 15px;
}

[dir="rtl"] .faq-toggle {
    text-align: right;
}

[dir="rtl"] .faq-question {
    order: 2;
}

[dir="rtl"] .faq-icon {
    order: 1;
}

[dir="rtl"] .navbar-menu {
    text-align: right;
}

[dir="rtl"] .footer-logo {
    justify-content: flex-end;
}

[dir="rtl"] .social-links {
    justify-content: flex-end;
}

[dir="rtl"] .nav-buttons {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    [dir="rtl"] .nav-buttons {
        margin-left: 0;
        margin-right: 0;
    }
    
    [dir="rtl"] .nav-buttons .btn {
        margin-left: 0;
        margin-right: 0;
    }
}