/* Legal Pages - Privacy & Terms */

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-content h1::before {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ff0000, #ff3333);
    margin: 0 auto 2rem;
    border-radius: 2px;
    animation: scaleIn 0.8s ease-out 0.4s both;
}

.hero-content p {
    font-size: 1.35rem;
    color: #d0d0d0;
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.4s both;
    letter-spacing: 0.5px;
}

@keyframes scaleIn {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 60px;
        opacity: 1;
    }
}

/* About Section */
.about-section {
    background: #0a0a0a;
    color: #fff;
    padding: 6rem 0;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    color: #ff0000;
    text-align: left;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 2rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    background: #1a1a1a;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.highlight:hover {
    background: #222;
    border: 1px solid #ff0000;
    transform: translateY(-5px);
}

.highlight-icon {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff0000;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.highlight h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.highlight p {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.6;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.1);
}

/* Services Section */
.services-section {
    background: #000;
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #ff0000;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-header p {
    color: #aaa;
    font-size: 1.1rem;
    text-align: center;
}

.service-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.privacy-card {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.1);
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.privacy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.2);
    border: 1px solid #ff0000;
}

.service-card-inner {
    overflow: hidden;
}

.service-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff3333, #ff0000);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 1.5rem 1.5rem 0 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-image-premium {
    height: 200px;
    background-size: cover;
    background-position: center;
    margin: 1rem 0;
}

.service-content-premium {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.service-content-premium h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-content-premium p {
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #ddd;
    font-size: 0.95rem;
}

.highlight-check {
    color: #ff0000;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Why Choose Section */
.why-choose-section {
    background: #0a0a0a;
    padding: 6rem 0;
}

.why-choose-section .section-header h2 {
    color: #ff0000;
}

.why-choose-section .section-header p {
    color: #aaa;
}

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

.policy-card {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 5px solid #ff0000;
    transition: all 0.3s ease;
}

.policy-card:hover {
    background: #222;
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.15);
}

.policy-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.policy-card p {
    color: #aaa;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 6rem 0;
    color: #fff;
}

.contact-section .section-header {
    margin-bottom: 4rem;
}

.contact-section .section-header h2 {
    color: #ff0000;
}

.contact-section .section-header p {
    color: #ccc;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.5);
    transform: translateY(-5px);
}

.contact-card h4 {
    color: #ff0000;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-card p {
    color: #ddd;
    font-size: 1rem;
}

/* Footer */
footer {
    background: #000;
    color: #fff;
    padding: 5rem 0 2rem;
    border-top: 2px solid #ff0000;
}

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

.footer-section {
    padding: 0;
}

.footer-section h4 {
    color: #ff0000;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: #aaa;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a:before {
    content: "→";
    color: #ff0000;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff0000;
    padding-left: 0.5rem;
}

.footer-section ul li a:hover:before {
    opacity: 1;
}

.footer-rating {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: #ff0000;
    font-size: 1rem;
}

.rating-text {
    color: #888;
    font-size: 0.85rem;
}

.social-links-footer {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-link {
    color: #aaa;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 1px solid #333;
    border-radius: 5px;
}

.social-link:hover {
    color: #ff0000;
    border: 1px solid #ff0000;
    background: rgba(255, 0, 0, 0.1);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #666;
    font-size: 0.85rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-bottom a {
    color: #ff0000;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 600;
}

.footer-bottom a:hover {
    color: #ff3333;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
    }

    .hero-content h1 {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-content h1::before {
        margin: 0 auto 1.5rem;
    }

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

    .about-content h2 {
        font-size: 2rem;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .service-grid-premium {
        grid-template-columns: 1fr;
    }

    .policy-grid {
        grid-template-columns: 1fr;
    }

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

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

    .service-content-premium h3 {
        font-size: 1.2rem;
    }

    .cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .social-links-footer {
        flex-wrap: wrap;
    }

    .social-link {
        font-size: 0.85rem;
        padding: 0.5rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 50vh;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        letter-spacing: -0.5px;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-content h1::before {
        width: 40px;
        height: 3px;
        margin: 0 auto 1.2rem;
    }

    .about-highlights {
        gap: 1rem;
    }

    .highlight {
        padding: 1.5rem 1rem;
    }

    .policy-card {
        padding: 1.5rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section {
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #333;
    }

    .footer-section:last-child {
        border-bottom: none;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .social-links-footer {
        gap: 1rem;
    }

    .social-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.7rem;
    }
}
footer { background: #000; padding: 3rem 0 1rem; border-top: 1px solid #333; }

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

.footer-section h4 { color: #fff; margin-bottom: 1rem; font-size: 1.1rem; }

.footer-section p { color: #999; font-size: 0.9rem; line-height: 1.8; }

.footer-rating { margin-top: 1rem; display: flex; align-items: center; gap: 0.8rem; }

.footer-rating .stars { color: #ff0000; font-size: 1rem; }

.footer-rating .rating-text { color: #bbb; font-size: 0.9rem; }

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

.footer-section li { margin-bottom: 0.8rem; }

.footer-section a { color: #999; text-decoration: none; font-size: 0.9rem; transition: all 0.3s; display: inline-flex; align-items: center; gap: 0.5rem; }

.footer-section a:hover { color: #cecece; transform: translateX(5px); }

.social-links-footer { display: flex; flex-wrap: wrap; gap: 1rem; }

.social-link { background: rgba(255,0,0,0.1); color: #ff0000; padding: 0.6rem 1.2rem; border-radius: 20px; font-size: 0.85rem; transition: all 0.3s; border: 1px solid #ff0000; }

.social-link:hover { background: #ff0000; color: #fff; }

.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid #333; color: #666; font-size: 0.85rem; }

.footer-bottom a { color: #999; transition: color 0.3s; }

.footer-bottom a:hover { color: #ff0000; }