
:root {
    /* EzyBlu color palette based on the logo */
    --primary-blue: #5163a9;
    --dark-blue: #3a4a8c;
    --light-blue: #8494c7;
    --primary-orange: #f97316;
    --dark-orange: #dd6108;
    --light-orange: #fab988;
    --light-grey: #c4c4cc;
    --dark-grey: #9f9ea1;
    --white: #ffffff;
    --black: #333333;
}

/* General Styles */
body {
    font-family: 'Poppins';
    color: var(--black);
    padding-top: 76px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

a {
    color: var(--primary-blue);
}

a:hover {
    color: var(--dark-blue);
}

.btn-primary {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--dark-orange);
    border-color: var(--dark-orange);
}

.btn-outline-primary {
    color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
    color: var(--white);
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.text-primary {
    color: var(--primary-blue) !important;
}

.bg-primary {
    background-color: var(--primary-blue) !important;
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding-top: 15px;
    padding-bottom: 15px;
}

.navbar .nav-link {
    font-weight: 500;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.navbar .nav-link.active {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

/* Features Section */
.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
}

/* Testimonials Section */
.testimonials {
    background-color: #fff;
}

.testimonial-item {
    padding: 20px;
}

.testimonial-item img {
    object-fit: cover;
    border: 3px solid var(--primary-orange);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    padding: 60px 0;
    color: white;
    margin-bottom: 30px;
}

.page-header h1 {
    margin-bottom: 10px;
}

.page-header .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.page-header .breadcrumb-item a {
    color: var(--light-blue);
}

.page-header .breadcrumb-item.active {
    color: var(--white);
}

/* Services Page */
.service-section {
    padding: 60px 0;
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-blue);
}

/* Pricing Page */
.pricing-card {
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.pricing-card .period {
    font-size: 1rem;
    color: var(--dark-grey);
}

.popular {
    border: 2px solid var(--primary-orange) !important;
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--primary-orange);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.comparison-table th:not(:first-child), 
.comparison-table td:not(:first-child) {
    text-align: center;
}

/* Contact Page */
.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(249, 115, 22, 0.1);
    border-radius: 50%;
    color: var(--primary-orange);
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(249, 115, 22, 0.1);
    color: var(--primary-orange);
    transition: all 0.3s;
}

.social-link:hover {
    background-color: var(--primary-orange);
    color: var(--white);
    text-decoration: none;
}

/* Footer */
footer h5 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

footer a:hover {
    color: var(--white) !important;
}

/* Media Queries */
@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 15px;
    }
    
    .navbar .d-flex {
        margin-top: 10px;
    }
    
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-section .d-flex {
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    animation: fadeInUp 0.5s ease-out;
}

/* Accordion Styling */
.accordion-button:not(.collapsed) {
    color: var(--primary-orange);
    background-color: rgba(249, 115, 22, 0.1);
}

.accordion-button:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.25rem rgba(249, 115, 22, 0.25);
}
