:root {
    --primary-color: #e22c28;
    --dark-bg: #1a1a1a;
    --light-gray: #f8f9fa;
    --gray-text: #6c757d;
    --primary: 3 77% 50%;
}

body {
    font-family: 'Nunito', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    color: #333;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #010101 !important;
}

.red-w {
    background-color: #e22c28;
    color: white !important;
    padding: 2px 7px 4px 7px;
    border-radius: 10px;
    margin-right: 5px;
    font-size: 25px !important;
    font-style: italic;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #e22c28 !important;
}

.nav-link.active {
    color: #e22c28 !important;
}

.btn-schedule {
    background-color: #e22c28;
    color: #fff !important;
    padding: 4px 10px 5px 10px;
    transition: background-color 0.3s ease;
     border-radius: 50px;
    border: 3px solid transparent;
    font-size: 14px;
}

.btn-schedule a {
    color: white;
    text-decoration: none;
}

.btn-schedule:hover {
    background-color: #fff;
    color: #e22c28 !important;
    border-radius: 50px;
    border: 3px solid #e22c28;
}

/* ==================== FOOTER ==================== */
footer {
    background: var(--dark-bg);
    color: white;
    padding: 60px 0 20px;
}

.footer-section h5 {
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
    color: #adb5bd;
}


.footer-section p {
    color: #adb5bd;
}

.footer-section a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #e22c28;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 30px;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    margin: 0;
    color: #adb5bd;
    font-size: 14px;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e22c28;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
    display: inline-block;
    width: fit-content;
}

.contact-info a:hover {
    color: #e22c28;
}

/* ==================== SCROLL ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease;
    opacity: 0;
}

.fade-in-up.visible {
    opacity: 1;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease;
    opacity: 0;
}

.slide-in-left.visible {
    opacity: 1;
}

.slide-in-right {
    animation: slideInRight 0.8s ease;
    opacity: 0;
}

.slide-in-right.visible {
    opacity: 1;
}

.scale-in {
    animation: scaleIn 0.8s ease;
    opacity: 0;
}

.scale-in.visible {
    opacity: 1;
}

section {
    overflow: hidden;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-link {
        margin: 0.5rem 0;
    }

    .footer-links {
        width: 100%;
    }

    .footer-links a {
        margin: 0 10px 10px 0;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 10px 0;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links a {
        margin: 0 10px 10px 0;
    }
}

/* button */
.btn-custom-solid {
    background-color: #e22c28 !important;
    color: #fff !important;
     border-radius: 8px;
    border: 3px solid transparent;
}

.btn-custom-solid:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    color: #e22c28 !important;
    border: 3px solid #d62828;
}

.btn-custom-outline {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    color: #000 !important;
     border-radius: 8px;
    border: 3px solid #e5e7eb;
}

.btn-custom-outline:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    color: #e22c28 !important;
    border: 3px solid #d62828;
}
.social-icons {
    display: flex;
    gap: 14px;
}

.social-icons a {
    color: inherit;
    font-size: 18px;
    transition: color 0.2s ease;
}

.social-icons a:hover {
    color: #e22c28;
}
