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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Utility Classes */
.text-center {
    text-align: center;
}

.bg-light {
    background-color: #f8f9fa;
}

/* Grid Systems */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Header Styles */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    font-size: 28px;
    font-weight: bold;
    color: #7d1919;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo a:hover {
    color: #120303;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #7d1919;
    background-color: rgba(125, 25, 25, 0.1);
}

/* Mobile Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Button Styles */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background-color: #7d1919;
    color: white;
}

.btn-primary:hover {
    background-color: #120303;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(125, 25, 25, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #7d1919;
    border: 2px solid #7d1919;
}

.btn-secondary:hover {
    background-color: #7d1919;
    color: white;
}

.btn-link {
    color: #7d1919;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: #120303;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #7d1919 0%, #120303 100%);
    color: white;
    overflow: hidden;
    padding: 100px 0 50px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    z-index: 1;
}

.hero-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #7d1919 0%, #120303 100%);
    color: white;
    text-align: center;
    padding: 120px 0 60px;
}

.page-header h1 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.section-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: block;
}

.section-image {
    width: 100%;
    height: auto;
    max-width: 400px;
}

/* Content Styles */
.content h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    margin-top: 20px;
}

.feature-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #7d1919;
    font-weight: bold;
}

/* Card Styles */
.advantage-card,
.offer-card,
.achievement-card,
.review-card,
.principle-card,
.service-card,
.package-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.advantage-card:hover,
.service-card:hover,
.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(125, 25, 25, 0.2);
}

.advantage-card h3,
.principle-card h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.advantage-card p,
.principle-card p {
    color: #666;
    line-height: 1.6;
}

/* Offer Cards */
.offer-card h3 {
    font-size: 24px;
    color: #7d1919;
    margin-bottom: 15px;
}

.offer-card ul {
    list-style: none;
    margin: 20px 0;
}

.offer-card ul li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.offer-card ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #7d1919;
}

.offer-price {
    font-size: 18px;
    font-weight: bold;
    color: #7d1919;
    margin-top: 20px;
}

/* Achievement Cards */
.achievement-card {
    text-align: center;
    background: linear-gradient(135deg, #7d1919 0%, #120303 100%);
    color: white;
}

.achievement-number {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.achievement-text {
    font-size: 16px;
    opacity: 0.9;
}

/* Review Cards */
.review-card {
    text-align: center;
}

.review-content {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 16px;
    color: #666;
}

.review-author {
    font-size: 14px;
}

.review-author strong {
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.review-author span {
    color: #999;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-header {
    text-align: center;
    margin-bottom: 20px;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
}

.service-header h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
}

.service-rating {
    margin-bottom: 15px;
}

.rating {
    color: #ffc107;
    font-size: 18px;
}

.rating-text {
    color: #666;
    font-size: 14px;
    margin-left: 5px;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #7d1919;
    font-weight: bold;
}

.service-pricing {
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
    text-align: center;
}

.price {
    font-size: 20px;
    font-weight: bold;
    color: #7d1919;
}

.price-note {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

/* Package Cards */
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.package-card.featured {
    border: 2px solid #7d1919;
    position: relative;
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #7d1919;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.package-header {
    text-align: center;
    margin-bottom: 25px;
}

.package-header h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.package-price {
    font-size: 28px;
    font-weight: bold;
    color: #7d1919;
    margin-bottom: 5px;
}

.package-subtitle {
    color: #666;
    font-size: 14px;
}

.package-features ul {
    list-style: none;
    margin: 20px 0;
}

.package-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.package-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #7d1919;
    font-weight: bold;
}

/* FAQ Styles */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #7d1919;
}

.faq-item h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Form Styles */
.contact-form-wrapper,
.contact-forms {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form,
.newsletter-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-section {
    margin-bottom: 40px;
}

.form-section h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7d1919;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

/* Newsletter Styles */
.newsletter-section {
    background: linear-gradient(135deg, #7d1919 0%, #120303 100%);
    color: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-inputs input {
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
}

/* Cookie Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(18, 3, 3, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    justify-content: center;
    align-items: center;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-category {
    margin-bottom: 20px;
}

.cookie-category label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    margin-bottom: 5px;
}

.cookie-modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

/* Thank You Page */
.thank-you-section {
    padding: 120px 0 80px;
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 30px;
}

.thank-you-svg {
    width: 80px;
    height: 80px;
}

.thank-you-content h1 {
    font-size: 42px;
    color: #7d1919;
    margin-bottom: 20px;
}

.thank-you-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.next-steps {
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.step {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: #7d1919;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin: 0 auto 15px;
}

.step h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.step p {
    color: #666;
    font-size: 14px;
}

.contact-options {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.immediate-contact {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.contact-method {
    font-size: 16px;
}

.contact-method a {
    color: #7d1919;
    text-decoration: none;
}

.thank-you-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Resource Cards */
.resource-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.resource-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.resource-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.resource-card p {
    color: #666;
    margin-bottom: 20px;
}

/* Footer Styles */
.footer {
    background: #120303;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #7d1919;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: white;
}

.footer-section p {
    margin-bottom: 10px;
    opacity: 0.9;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #7d1919;
}

.social-links {
    margin-top: 20px;
}

.social-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #7d1919;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    opacity: 0.7;
}

/* Legal Content */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-intro {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    border-left: 4px solid #7d1919;
    padding-left: 20px;
}

.policy-section h3 {
    font-size: 22px;
    color: #333;
    margin: 25px 0 15px;
}

.policy-section p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.policy-section ul,
.policy-section ol {
    margin: 15px 0;
    padding-left: 30px;
}

.policy-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-details {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 20px 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
}

.cookie-settings-link {
    text-align: center;
    margin-top: 30px;
}

/* Emergency Contact */
.emergency-contact {
    background: linear-gradient(135deg, #7d1919 0%, #120303 100%);
    color: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.emergency-header h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.emergency-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 30px 0;
}

.emergency-number {
    font-size: 24px;
    font-weight: bold;
    color: #ffc107;
    margin: 10px 0;
}

.emergency-types h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.emergency-types ul {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

/* Additional Services */
.additional-service {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.additional-service h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.additional-service p {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
}

.service-price {
    font-weight: bold;
    color: #7d1919;
}

/* Contact Info Styles */
.contact-info {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-method {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.contact-method:last-child {
    border-bottom: none;
}

.contact-method h3 {
    font-size: 20px;
    color: #7d1919;
    margin-bottom: 10px;
}

/* CTA Styles */
.cta-content {
    background: white;
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(125, 25, 25, 0.1);
}

.cta-content h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Team Content */
.team-content {
    margin-top: 40px;
}

.advantage-list h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
}

.advantage-list ul {
    list-style: none;
}

.advantage-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.advantage-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #7d1919;
    font-weight: bold;
}

/* Mission and Vision Cards */
.mission-card,
.vision-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.mission-card h3,
.vision-card h3 {
    font-size: 24px;
    color: #7d1919;
    margin-bottom: 20px;
}

.mission-card p,
.vision-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        padding: 0.75rem 0;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: top 0.3s ease;
        z-index: 999;
    }
    
    .nav.active {
        display: flex;
        justify-content:center;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }
    
    .nav-link {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .newsletter-inputs {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .immediate-contact {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .emergency-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .package-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .contact-form,
    .newsletter-section {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-content {
        padding: 40px 20px;
    }
    
    .thank-you-content h1 {
        font-size: 32px;
    }
    [class*="-grid"] {
        grid-template-columns: 1fr;
    }
    .cookie-table {
        display: none;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #7d1919;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #120303;
    transform: translateY(-2px);
}
