/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
}

p {
    margin-bottom: 1rem;
    color: #d1d5db;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.text-red {
    color: #dc2626;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.logo-shape {
    position: relative;
}

.logo-inner {
    width: 1.5rem;
    height: 1.5rem;
    background: #ffffff;
    border-radius: 0.125rem;
    transform: rotate(45deg);
    position: relative;
}

.logo-accent {
    position: absolute;
    inset: 0.25rem;
    background: #dc2626;
    border-radius: 0.125rem;
    transform: rotate(-45deg);
}

.logo-line-1 {
    position: absolute;
    top: 0;
    left: 0.25rem;
    width: 0.25rem;
    height: 1.5rem;
    background: #ffffff;
    transform: rotate(-45deg);
    transform-origin: bottom;
}

.logo-line-2 {
    position: absolute;
    top: 0.25rem;
    left: 0;
    width: 1.5rem;
    height: 0.25rem;
    background: #ffffff;
    transform: rotate(-45deg);
    transform-origin: left;
}

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(185, 28, 28, 0.3);
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
}

.logo-text {
    font-weight: 700;
    font-size: 1.25rem;
    color: #ffffff;
    display: none;
}

@media (min-width: 640px) {
    .logo-text {
        display: block;
    }
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

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

.nav-link {
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    color: #d1d5db;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #f87171;
}

.nav-link.active {
    color: #dc2626;
    background: rgba(220, 38, 38, 0.1);
}

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

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.menu-toggle {
    background: none;
    border: none;
    color: #d1d5db;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle:hover {
    color: #ffffff;
}

.mobile-menu {
    padding-bottom: 1rem;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    color: #d1d5db;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: #f87171;
    background: rgba(220, 38, 38, 0.1);
}

.mobile-get-started {
    margin-top: 0.5rem;
    width: fit-content;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: #dc2626;
    color: #ffffff;
}

.btn-primary:hover {
    background: #b91c1c;
}

.btn-secondary {
    background: #374151;
    color: #ffffff;
}

.btn-secondary:hover {
    background: #4b5563;
}

.btn-outline {
    background: transparent;
    color: #dc2626;
    border: 1px solid #dc2626;
}

.btn-outline:hover {
    background: #dc2626;
    color: #ffffff;
}

.btn-white {
    background: #ffffff;
    color: #dc2626;
}

.btn-white:hover {
    background: #f3f4f6;
}

.btn-outline-white {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-outline-white:hover {
    background: #ffffff;
    color: #dc2626;
}

.btn-whatsapp {
    background: #ffffff;
    color: #16a34a;
}

.btn-whatsapp:hover {
    background: #f3f4f6;
}

.btn-full {
    width: 100%;
}

/* Pages */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #000000, #1f2937);
    padding: 5rem 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: rgba(220, 38, 38, 0.05);
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 10;
}

.hero-text {
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title-accent {
    display: block;
    color: #dc2626;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 48rem;
    margin: 0 auto 2rem;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.5rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #000000, #1f2937);
    padding: 5rem 0;
    text-align: center;
}

.legal-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.legal-icon i {
    width: 4rem;
    height: 4rem;
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.last-updated {
    color: #9ca3af;
    margin-top: 1rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 1.875rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2.25rem;
    }
}

.section-header p {
    font-size: 1.125rem;
    color: #9ca3af;
    max-width: 32rem;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: #111827;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    border-color: rgba(220, 38, 38, 0.5);
    transform: translateY(-0.25rem);
}

.feature-icon {
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

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

.feature-icon i {
    color: #dc2626;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Stats Section */
.stats {
    padding: 5rem 0;
    background: #000000;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 2.25rem;
    }
}

.stat-label {
    color: #9ca3af;
    font-weight: 500;
}

/* Why Choose Section */
.why-choose {
    padding: 5rem 0;
    background: #111827;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

.why-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.why-icon i {
    color: #dc2626;
    font-size: 2rem;
}

.why-item h3 {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.why-item p {
    color: #9ca3af;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(to right, #dc2626, #b91c1c);
    text-align: center;
}

.cta h2 {
    font-size: 1.875rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta h2 {
        font-size: 2.25rem;
    }
}

.cta p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

/* Services Content */
.services-content {
    background: #111827;
}

.service-section {
    padding: 5rem 0;
}

.service-section.alt {
    background: #000000;
}

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

.service-main-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-main-icon i {
    color: #dc2626;
    font-size: 3rem;
}

.service-header h2 {
    font-size: 1.875rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .service-header h2 {
        font-size: 2.25rem;
    }
}

.service-header p {
    font-size: 1.125rem;
    color: #9ca3af;
    max-width: 32rem;
    margin: 0 auto;
}

.service-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .service-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: rgba(220, 38, 38, 0.5);
    transform: translateY(-0.25rem);
}

.service-icon {
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

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

.service-icon i {
    color: #f87171;
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Process Section */
.process {
    padding: 5rem 0;
    background: #111827;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-item {
    text-align: center;
    position: relative;
}

.process-number {
    width: 5rem;
    height: 5rem;
    background: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    transition: background-color 0.3s ease;
}

.process-item:hover .process-number {
    background: #dc2626;
}

.process-item h3 {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.process-item p {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: #111827;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pricing-card {
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-0.25rem);
}

.pricing-card.popular {
    border-color: #dc2626;
    box-shadow: 0 20px 25px -5px rgba(220, 38, 38, 0.2);
}

.popular-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: #dc2626;
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    padding-bottom: 1rem;
}

.pricing-header h3 {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.pricing-price {
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #dc2626;
}

.period {
    color: #9ca3af;
}

.pricing-header p {
    font-size: 0.875rem;
    color: #9ca3af;
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #d1d5db;
    font-size: 0.875rem;
}

.pricing-features li i {
    color: #dc2626;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.pricing-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: #000000;
}

.faq-content {
    max-width: 64rem;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #9ca3af;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: #111827;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star-filled {
    color: #fbbf24;
    font-size: 1.25rem;
}

.testimonial-card p {
    color: #d1d5db;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author strong {
    color: #ffffff;
    font-weight: 600;
}

.testimonial-author span {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Contact Content */
.contact-content {
    padding: 5rem 0;
    background: #111827;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-card {
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    padding: 2rem;
}

.contact-card-header {
    margin-bottom: 2rem;
}

.contact-card-header h2 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-card-header p {
    color: #9ca3af;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    background: #374151;
    border: 1px solid #4b5563;
    border-radius: 0.375rem;
    padding: 0.75rem 1rem;
    color: #ffffff;
    font-size: 0.875rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6b7280;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Contact Info */
.contact-info h2 {
    font-size: 1.875rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.125rem;
    color: #9ca3af;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-icon i {
    color: #dc2626;
    font-size: 1.5rem;
}

.contact-text h3 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-text p {
    color: #9ca3af;
    margin: 0;
}

/* WhatsApp Card */
.whatsapp-card {
    background: #16a34a;
    border: 1px solid #15803d;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.whatsapp-icon {
    margin-bottom: 1rem;
}

.whatsapp-icon i {
    color: #ffffff;
    font-size: 3rem;
}

.whatsapp-card h3 {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.whatsapp-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

/* Business Hours Card */
.business-hours-card {
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.business-hours-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.hours-list {
    margin-bottom: 1rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.hour-item span:first-child {
    color: #9ca3af;
}

.hour-item span:last-child {
    color: #ffffff;
}

.hours-note {
    color: #9ca3af;
    font-size: 0.875rem;
    margin: 0;
}

/* Legal Sections */
.legal-info {
    padding: 3rem 0;
    background: #111827;
}

.info-card {
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    padding: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.info-header i {
    color: #dc2626;
    font-size: 1.5rem;
}

.info-header h3 {
    color: #ffffff;
    margin: 0;
}

.info-content p {
    color: #d1d5db;
    margin-bottom: 1rem;
}

.info-content p:last-child {
    margin-bottom: 0;
}

.info-content strong {
    color: #ffffff;
}

.legal-content {
    padding: 5rem 0;
    background: #000000;
}

.terms-sections {
    max-width: 64rem;
    margin: 0 auto;
}

.terms-section {
    background: #111827;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.terms-section h3 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.terms-section p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.terms-section p:last-child {
    margin-bottom: 0;
}

.terms-section ul {
    color: #d1d5db;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.terms-section li {
    margin-bottom: 0.5rem;
}

.legal-notice {
    padding: 3rem 0;
    background: #111827;
}

.alert-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid #f59e0b;
    border-radius: 0.5rem;
    padding: 1rem;
    max-width: 64rem;
    margin: 0 auto;
}

.alert-icon i {
    color: #f59e0b;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.alert-content {
    color: #d1d5db;
}

.alert-content strong {
    color: #ffffff;
}

/* Cancellation Policies */
.cancellation-policies {
    padding: 5rem 0;
    background: #000000;
}

.policy-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

.policy-card {
    background: #111827;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    padding: 2rem;
}

.policy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.policy-header h3 {
    color: #ffffff;
    font-size: 1.25rem;
    margin: 0;
}

.policy-timeline {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.policy-content h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.policy-content p {
    color: #d1d5db;
    margin-bottom: 1rem;
}

.policy-content p:last-child {
    margin-bottom: 0;
}

/* Cancellation Process */
.cancellation-process {
    padding: 5rem 0;
    background: #111827;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

.step-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.step-number {
    width: 2.5rem;
    height: 2.5rem;
    background: #dc2626;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #d1d5db;
    margin: 0;
}

/* General Terms */
.general-terms {
    padding: 5rem 0;
    background: #000000;
}

.terms-card {
    background: #111827;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    padding: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

.terms-card h2 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.terms-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.term-item h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.term-item p {
    color: #d1d5db;
    margin: 0;
}

/* Legal Contact */
.legal-contact {
    padding: 4rem 0;
    background: #111827;
}

.contact-cta-card {
    background: #dc2626;
    border: 1px solid #b91c1c;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
}

.contact-icon {
    margin-bottom: 1rem;
}

.contact-icon i {
    color: #ffffff;
    font-size: 1.5rem;
}

.contact-cta-card h3 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.contact-cta-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .contact-buttons {
        flex-direction: row;
    }
}

.response-time {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: #111827;
    border-top: 1px solid rgba(185, 28, 28, 0.3);
    padding: 3rem 0 2rem;
}

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

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section h3 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-text {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.125rem;
}

.footer-section p {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

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

.social-link {
    background: #16a34a;
    color: #ffffff;
    padding: 0.5rem;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background: #15803d;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f87171;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.contact-item i {
    color: #dc2626;
    font-size: 1rem;
    width: 1rem;
    flex-shrink: 0;
}

.contact-item span {
    color: #9ca3af;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.875rem;
    margin: 0;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    padding: 1rem;
    min-width: 300px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(100px);
    transition: all 0.3s ease;
}

.toast.show {
    transform: translateY(0);
}

.toast-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.toast-icon i {
    color: #10b981;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.toast-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.toast-description {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Responsive Utilities */
@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .feature-card,
    .service-card,
    .pricing-card {
        padding: 1.5rem;
    }
}

/* Animation Classes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Focus Styles for Accessibility */
*:focus {
    outline: 2px solid #dc2626;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .btn,
    .toast {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .page {
        display: block !important;
    }
}