:root {
    --primary: #b10040;
    --accent: #ff661c;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

.hero h1 {
    font-weight: 700;
    font-size: 2.5rem;
}

.expert-card {
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.card {
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    border: none;
}

.card h6 {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
}

.btn-warning {
    background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 8px;
    padding: 0.6rem 1.5rem;
    box-shadow: 0 2px 8px rgba(255,102,28,0.10);
    color: #fff !important;
}

.btn-danger {
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #fff !important;
}

.btn-primary {
    background: var(--primary);
    border: none;
    font-weight: 600;
    color: #fff !important;
}

.btn-movement {
    background: linear-gradient(90deg, #b10040 0%, #ff661c 100%);
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 2rem;
    padding: 0.6rem 2rem;
    color: #fff !important;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(177,0,64,0.10);
    transition: background 0.2s, box-shadow 0.2s;
}

#cta-movement h2.fw-bold {
    color: #b10040 !important;
}

.navbar {
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    background: #fff;
    z-index: 100;
}

.navbar .navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #333 !important;
    margin-right: 1rem;
    transition: color 0.2s;
}

.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: var(--accent) !important;
}

.dropdown-menu {
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    min-width: 260px;
    padding: 0.5rem 0;
    border: 1px solid #eee;
}

.dropdown-item {
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    color: #333;
    transition: background 0.2s, color 0.2s;
}

.dropdown-item:hover, .dropdown-item:focus {
    background: var(--primary);
    color: #fff;
}

@media (max-width: 991px) {
    .navbar-nav .nav-link {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    .btn-warning {
        width: 100%;
    }
}

section {
    margin-bottom: 2.5rem;
}

.testimonials .card {
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    border: none;
}

.testimonials img {
    border: 2px solid var(--accent);
}

@media (max-width: 767px) {
    .hero h1 {
        font-size: 2rem;
    }
    .testimonials .card {
        padding: 1.5rem 1rem;
    }
}

.services .card {
    min-height: 220px;
    transition: transform 0.2s, box-shadow 0.2s;
    border-top: 3px solid var(--primary);
}
.services .card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(177,0,64,0.12);
    border-top: 3px solid var(--accent);
}
.services h2, .services h3 {
    color: var(--primary);
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}
.accordion-button {
    font-weight: 600;
}
.accordion-item {
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid #eee;
    overflow: hidden;
}
@media (max-width: 767px) {
    .services .card {
        min-height: 180px;
        padding: 1rem 0.5rem;
    }
}

footer {
    border-top: 2px solid var(--primary);
}

.mega-menu {
    width: 600px;
    left: 50% !important;
    transform: translateX(-50%) !important;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    border: 1px solid #eee;
    background: #fff;
}
.mega-menu .col-md-6 {
    padding: 0 1.5rem;
}
.mega-menu .fw-bold.text-primary {
    color: var(--primary) !important;
    font-size: 1.1rem;
}
.mega-menu ul {
    margin-bottom: 0;
}
.mega-menu .dropdown-item {
    padding: 0.5rem 0;
    color: #333;
    font-weight: 500;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}
.mega-menu .dropdown-item:hover {
    background: var(--primary);
    color: #fff;
}
@media (max-width: 767px) {
    .mega-menu {
        width: 100vw;
        left: 0 !important;
        transform: none !important;
        border-radius: 0;
        padding: 1rem !important;
    }
    .mega-menu .col-md-6 {
        padding: 0;
        border: none !important;
    }
}

.card.text-center .bi {
    background: linear-gradient(135deg, var(--primary) 60%, var(--accent) 100%);
    color: #fff !important;
    border-radius: 50%;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(177,0,64,0.10);
}
.card.text-center {
    border-top: 3px solid var(--primary);
    transition: box-shadow 0.2s, border-top 0.2s;
}
.card.text-center:hover {
    box-shadow: 0 8px 32px rgba(255,102,28,0.12);
    border-top: 3px solid var(--accent);
}

.why-choose .card.text-center {
    border-top: 3px solid var(--primary);
    transition: box-shadow 0.2s, border-top 0.2s, transform 0.2s;
}
.why-choose .card.text-center:hover {
    box-shadow: 0 8px 32px rgba(255,102,28,0.12);
    border-top: 3px solid var(--accent);
    transform: translateY(-6px) scale(1.03);
}
.why-choose .card.text-center:hover .bi {
    transform: scale(1.15);
    transition: transform 0.2s;
}

.hero-section {
    position: relative;
    /* background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1200&q=80') center center/cover no-repeat; */
    background: #fff;
    min-height: 420px;
    padding: 80px 0 60px 0;
    color: #fff;
    z-index: 1;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(30, 20, 40, 0.55);
    z-index: 2;
}
.hero-section .container, .hero-section .row, .hero-section .col-md-6 {
    position: relative;
    z-index: 3;
}
.hero-section h1, .hero-section p, .hero-section a {
    color: #fff !important;
}
.hero-section img {
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    border-radius: 12px;
}
@media (max-width: 991px) {
    .hero-section {
        padding: 60px 0 40px 0;
        min-height: 340px;
    }
}
@media (max-width: 767px) {
    .hero-section {
        padding: 40px 0 20px 0;
        min-height: 260px;
        text-align: center;
    }
    .hero-section .row {
        flex-direction: column-reverse;
    }
    .hero-section .col-md-6 {
        margin-bottom: 1.5rem;
    }
    .hero-section img {
        max-width: 80vw;
        margin: 0 auto;
    }
}

.bg-primary-brand {
    background: #b10040 !important;
}
.text-accent {
    color: #ff661c !important;
}
.border-accent {
    border-color: #ff661c !important;
}
.btn-accent {
    background: #ff661c !important;
    color: #fff !important;
    font-weight: 600;
    transition: background 0.2s, box-shadow 0.2s;
}
.btn-accent:hover {
    background: #b10040 !important;
    color: #fff !important;
}
.footer-link {
    color: #f3f3f3;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.footer-link:hover {
    color: #ff661c;
    text-decoration: underline;
}
.footer-main, .newsletter-footer {
    background: #b10040 !important;
    color: #fff !important;
}
.footer-main h5, .footer-main h6, .footer-main .fw-bold, .newsletter-footer h2 {
    color: #fff !important;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.footer-main p, .footer-main .text-light, .newsletter-footer p {
    color: #e0e0e0 !important;
}
.footer-main ul {
    padding-left: 0;
}
.footer-main li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}
.footer-main .row > div {
    margin-bottom: 2rem;
}
.footer-main .border-accent {
    border-width: 2px;
}
.newsletter-form .form-control {
    border-radius: 0 !important;
    border: none;
    box-shadow: none;
    font-size: 1.1rem;
}
.newsletter-form .input-group-text {
    background: #fff;
    border: none;
    color: #b10040;
    font-size: 1.2rem;
}
.newsletter-form .btn-accent {
    border-radius: 0 2rem 2rem 0 !important;
    font-size: 1.1rem;
    padding-left: 2rem;
    padding-right: 2rem;
}
@media (max-width: 991px) {
    .footer-main .row > div {
        margin-bottom: 2rem;
    }
    .newsletter-form {
        justify-content: center !important;
    }
}

.footer-main {
    position: relative;
}
.footer-main .container {
    position: relative;
    z-index: 2;
}
.footer-main svg {
    z-index: 1;
}
  