/* Styles for dropdown menu */
.dropdown-parent {
    position: relative;
}

.dropdown-toggle {
    position: relative;
    padding-right: 15px;
}

.dropdown-toggle::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid currentColor;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.dropdown-parent:hover .dropdown-toggle::after {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown-parent:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 8px 20px;
    color: #222222;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f8f8f8;
    color: #FF1E00;
}

@media (max-width: 990.98px) {
    .dropdown-toggle::after {
        right: auto;
        left: calc(100% + 10px);
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        background-color: transparent;
        padding: 0 0 0 15px;
        margin-top: 10px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    
    .dropdown-parent:hover .dropdown-menu {
        display: block;
    }
    
    .dropdown-item {
        padding: 8px 10px;
    }
    
    .dropdown-item:hover {
        background-color: transparent;
    }
}

/* Footer documents styles */
.footer-item {
    padding: 20px 0;
}

.footer-item h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-item p {
    margin-bottom: 10px;
}

.footer-item a {
    color: #FFFFFF;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-item a:hover {
    opacity: 1;
    color: #FFFFFF;
    text-decoration: underline;
}

/* Pricing styles */
.pricing {
    background-color: var(--bs-primary);
    padding: 80px 0;
}

.pricing-item {
    margin-bottom: 30px;
}

.pricing-content {
    background-color: #ffffff;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pricing-content:hover {
    transform: translateY(-10px);
}

.btn-primary-outline-0 {
    background-color: var(--bs-primary);
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary-outline-0:hover {
    background-color: #e01a00;
    color: #fff;
}

.text-primary {
    color: var(--bs-primary) !important;
}

.border-primary {
    border-color: var(--bs-primary) !important;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.rounded-pill {
    border-radius: 50rem !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.g-4 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
    margin-right: calc(var(--bs-gutter-x) * -0.5);
    margin-left: calc(var(--bs-gutter-x) * -0.5);
}

.g-4 > * {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

.col-md-6 {
    flex: 0 0 auto;
    width: 50%;
}

@media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.333333%;
    }
}

.text-center {
    text-align: center !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.display-4 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.fw-bold {
    font-weight: 700 !important;
}

.text-white {
    color: #fff !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

.px-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

.me-2 {
    margin-right: 0.5rem !important;
}

.m-0 {
    margin: 0 !important;
}

.rounded-top {
    border-top-left-radius: 0.375rem !important;
    border-top-right-radius: 0.375rem !important;
}

.border-3 {
    border-width: 3px !important;
}

.border-bottom {
    border-bottom: 1px solid #dee2e6 !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.align-items-center {
    align-items: center !important;
}

.d-flex {
    display: flex !important;
}

.text-uppercase {
    text-transform: uppercase !important;
} 