/* SportOne - Merged CSS for All Pages */

/* Global Variables */
:root {
    --primary-color: #8A00C4;
    --secondary-color: #FF5E78;
    --accent-color: #4ECDC4;
    --dark-color: #1A1A2E;
    --light-color: #F8F9FA;
    --text-color: #333;
    --light-purple: #A64DCC;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--light-purple));
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Global Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tajawal', sans-serif;
}

body {
    background-color: #fff;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

/* SportOne Logo */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    margin-left: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(138, 0, 196, 0.3);
}

.logo:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(138, 0, 196, 0.4);
}

.logo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    animation: shine 3s infinite;
}

@keyframes shine {
    100% {
        transform: translateX(100%);
    }
}

.logo svg {
    width: 30px;
    height: 30px;
    fill: white;
}

h1 {
    font-size: 2rem; /* consistent across the site */
}

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 5px 0;
    backdrop-filter: blur(10px);
}

header.scrolled {
    padding: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.brand {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.brand:hover {
    transform: translateY(-2px);
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 30px;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
    padding: 8px 0;
    display: inline-block;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    right: 0;
    background: var(--gradient);
    transition: width 0.3s;
    border-radius: 3px;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    width: 100%;
}

.cta-button {
    display: block;
    width: 100px;
    text-align: center;
    background: #ff7b00;   /* Flat primary color */
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 16px 0;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background: #e56d00;   /* Slightly darker on hover */
}

.cta-button:active {
    transform: scale(0.98);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
    background: none;
    border: none;
    padding: 5px;
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
}

.mobile-menu-content {
    background-color: white;
    width: 80%;
    max-width: 300px;
    height: 100%;
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

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

.mobile-menu-logo .logo {
    margin-left: 10px;
}

.mobile-menu-logo span {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-color);
}

.close-menu {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
}

.close-menu:hover {
    color: var(--primary-color);
}

.mobile-nav-links {
    list-style: none;
}

.mobile-nav-links li {
    margin-bottom: 15px;
}

.mobile-nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s;
}

.mobile-nav-links a:hover {
    background-color: rgba(138, 0, 196, 0.1);
    color: var(--primary-color);
}

.mobile-nav-links a.active {
    background-color: rgba(138, 0, 196, 0.1);
    color: var(--primary-color);
    font-weight: 700;
}

.mobile-cta {
    margin-top: 20px;
}

.mobile-cta .cta-button {
    width: 100px;
    text-align: center;
}

/* Home Page - Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(138, 0, 196, 0.76), rgba(166, 77, 204, 0.54)), url('https://sport1.app/images/home-hero2.webp') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsIDI1NSwgMjU1LCAwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');*/
    opacity: 0.3;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 900;
    animation: fadeInUp 0.8s ease;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    animation: fadeInUp 0.8s ease 0.2s;
    animation-fill-mode: both;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 0.8s ease 0.4s;
    animation-fill-mode: both;
}

.btn-primary {
    background-color: white;
    color: var(--primary-color);
    padding: 15px 35px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding-top: -5px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    padding: 15px 15px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    border: 2px solid white;
    transition: all 0.3s;
    font-size: 1.1rem;
    backdrop-filter: blur(5px);
}

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

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

/* Home Page - Sections */
.section-padding {
    padding: 100px 0;
}

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

.section-title h2 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    background: var(--gradient);
    bottom: -10px;
    right: 20%;
    border-radius: 2px;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Home Page - Features Section */
.features {
    background-color: white;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, rgba(138, 0, 196, 0.05), transparent);
    z-index: -1;
}

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

.feature-card {
    background-color: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(138, 0, 196, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 50%;
    transform: translate(30px, -30px);
    opacity: 0.1;
    z-index: 0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(138, 0, 196, 0.15);
}

.feature-icon {
    background: var(--gradient);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(138, 0, 196, 0.2);
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Home Page - How It Works Section */
.how-it-works {
    background-color: var(--light-color);
}

.how-it-works .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    counter-reset: step-counter;
}

.step-card {
    background-color: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--card-shadow);
    position: relative;
    transition: all 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-card::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 700;
    border: 4px solid var(--light-color);
    box-shadow: 0 5px 15px rgba(138, 0, 196, 0.3);
}

.step-card h3 {
    margin-top: 25px;
    font-size: 1.5rem;
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.step-card p {
    color: #666;
    line-height: 1.7;
}

/* Home Page - Testimonials Section */
.testimonials {
    background-color: white;
}
.customers {
    background-color: white;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding-bottom: 20px;
    direction: ltr; /* To make it work correctly with flexbox in RTL */
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f1f1f1;
}

.testimonial-slider::-webkit-scrollbar {
    height: 8px;
}

.testimonial-slider::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 4px;
}

.testimonial-slider::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

.testimonial-card {
    flex-shrink: 0;
    width: 90%;
    max-width: 400px;
    background-color: var(--light-color);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    scroll-snap-align: start;
    direction: rtl; /* Restore RTL direction */
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-quote {
    font-style: italic;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
    position: relative;
}

.testimonial-quote::before {
    content: "";
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -15px;
    right: -10px;
    font-family: serif;
}

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

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: 15px;
    border: 3px solid var(--primary-color);
}

.author-details h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    font-weight: 700;
}

.author-details p {
    color: #777;
    font-size: 0.9rem;
}

/* Home Page - Partners Section */
.partners {
    background-color: var(--light-color);
    text-align: center;
}

.partner-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
}

.partner-logo {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
    max-width: 150px;
    height: auto;
    margin: 0 auto;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Home Page - User & Provider Sections */
.customers {
    background-color: white;
}
.providers {
    background-color: var(--light-color);
}

.section-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    gap: 20px;
}

.tab-button {
    background: none;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
    border-radius: 8px;
}

.tab-button.active {
    color: var(--primary-color);
    background-color: rgba(138, 0, 196, 0.1);
}

.tab-button::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    right: 0;
    background: var(--gradient);
    transition: width 0.3s;
}

.tab-button.active::after {
    width: 100%;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.benefit-card {
    background-color: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s;
    border-right: 4px solid var(--primary-color);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 700;
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
}

/* Home Page - FAQ Section */
.faq-section {
    background-color: white;
}

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

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    background-color: var(--light-color);
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background-color: rgba(138, 0, 196, 0.1);
}

.faq-question.active {
    background-color: var(--primary-color);
    color: white;
}

.faq-icon {
    transition: transform 0.3s;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: white;
}

.faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

/* Home Page - CTA Section */
.cta-section {
    background: var(--gradient);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsIDI1NSwgMjU1LCAwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    opacity: 0.2;
}

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

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-section p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 500;
}

/* Home Page - Contact Section */
.contact-section {
    background-color: var(--light-color);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    background-color: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--card-shadow);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--dark-color);
    font-weight: 800;
}

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

.contact-icon {
    background: var(--gradient);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    font-size: 1.2rem;
}

.contact-text {
    font-size: 1.1rem;
    color: #666;
}

.contact-form {
    background-color: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--card-shadow);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--dark-color);
    font-weight: 800;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(138, 0, 196, 0.1);
    outline: none;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    background: var(--gradient);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    width: 100%;
    text-align: center;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(138, 0, 196, 0.3);
}

/* Privacy Policy & Terms - Hero Section */
.privacy-hero,
.terms-hero {
    background: var(--gradient);
    color: white;
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.privacy-hero::before,
.terms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsIDI1NSwgMjU1LCAwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    opacity: 0.2;
}

.privacy-hero-content,
.terms-hero-content {
    position: relative;
    z-index: 2;
}

.privacy-hero h1,
.terms-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.privacy-hero p,
.terms-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.last-updated {
    margin-top: 20px;
    font-size: 1rem;
    opacity: 0.8;
}

/* Privacy Policy & Terms - Content */
.privacy-content,
.terms-content {
    padding: 60px 0;
}

.privacy-section,
.terms-section {
    margin-bottom: 50px;
}

.privacy-section h2,
.terms-section h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-right: 15px;
}

.privacy-section h2::before,
.terms-section h2::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 70%;
    background: var(--gradient);
    border-radius: 3px;
}

.privacy-section h3,
.terms-section h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin: 25px 0 15px;
    font-weight: 700;
}

.privacy-section p,
.terms-section p {
    margin-bottom: 15px;
    color: #555;
    font-size: 1.05rem;
}

.privacy-section ul,
.terms-section ul {
    margin-right: 25px;
    margin-bottom: 15px;
}

.privacy-section li,
.terms-section li {
    margin-bottom: 10px;
    color: #555;
    font-size: 1.05rem;
    position: relative;
    padding-right: 20px;
}

.privacy-section li::before,
.terms-section li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.highlight-box {
    background-color: rgba(138, 0, 196, 0.05);
    border-right: 4px solid var(--primary-color);
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}

.highlight-box h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.data-table,
.terms-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.data-table th,
.terms-table th {
    background-color: var(--primary-color);
    color: white;
    padding: 15px;
    text-align: right;
    font-weight: 600;
}

.data-table td,
.terms-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.data-table tr:nth-child(even),
.terms-table tr:nth-child(even) {
    background-color: rgba(138, 0, 196, 0.02);
}

.data-table tr:hover,
.terms-table tr:hover {
    background-color: rgba(138, 0, 196, 0.05);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 70px 0 20px;
}

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

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 700;
}

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

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

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

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-links i {
    margin-left: 10px;
}

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

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

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

.app-download {
    margin-top: 20px;
}

.app-download a {
    display: inline-block;
    margin-left: 10px;
    transition: transform 0.3s;
}

.app-download a:hover {
    transform: translateY(-3px);
}

.app-download img {
    height: 40px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    font-size: 0.9rem;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1,
    .privacy-hero h1,
    .terms-hero h1 {
        font-size: 2.8rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

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

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

    .mobile-menu-btn {
        display: block;
    }

    .hero h1,
    .privacy-hero h1,
    .terms-hero h1 {
        font-size: 2.2rem;
    }

    .hero p,
    .privacy-hero p,
    .terms-hero p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .section-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-button {
        width: 100%;
        max-width: 300px;
    }

    .privacy-section h2,
    .terms-section h2 {
        font-size: 1.5rem;
    }

    .privacy-section h3,
    .terms-section h3 {
        font-size: 1.2rem;
    }

    .data-table,
    .terms-table {
        font-size: 0.9rem;
    }

    .data-table th, .data-table td,
    .terms-table th, .terms-table td {
        padding: 10px;
    }
}

@media (max-width: 576px) {
    .hero,
    .privacy-hero,
    .terms-hero {
        min-height: 90vh;
        padding: 120px 0 60px;
    }

    .hero h1,
    .privacy-hero h1,
    .terms-hero h1 {
        font-size: 1.8rem;
    }

    .hero p,
    .privacy-hero p,
    .terms-hero p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .privacy-section h2,
    .terms-section h2 {
        font-size: 1.3rem;
    }

    .privacy-section h3,
    .terms-section h3 {
        font-size: 1.1rem;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        left: 20px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 20px;
        left: 20px;
    }
}
