/* Custom CSS for Counseling Planet - Enhanced with vibrant colors */

/* ===== VARIABLES ===== */
:root {
    /* Main Colors - Enhanced Therapeutic Palette */
    --primary: #3a9188;       /* Deeper teal */
    --primary-light: #5bb0a7; /* Serene teal */
    --primary-dark: #2a6b65;  /* Dark teal */
    
    --secondary: #f2b134;     /* Warm amber */
    --secondary-light: #f7c868; /* Lighter amber */
    --secondary-dark: #d99b24; /* Deeper amber */
    
    --accent: #8a6fb0;        /* Gentle lavender */
    --accent-light: #b094d1;  /* Lighter lavender */
    --accent-dark: #6a5387;   /* Deeper lavender */
    
    /* Neutral Colors */
    --dark: #2d3142;          /* Deep blue-gray */
    --text: #2d3142;          /* Text color */
    --light-text: #5d6b7e;    /* Light text color */
    --light: #f0f7ee;         /* Soft mint/off-white */
    --white: #ffffff;         /* White */
    
    /* Accent Secondary */
    --accent-secondary: #ed553b; /* Warm coral */
    
    /* Gradients */
    --primary-gradient: linear-gradient(135deg, #3a9188 0%, #5bb0a7 100%);
    --secondary-gradient: linear-gradient(135deg, #f2b134 0%, #f7c868 100%);
    --accent-gradient: linear-gradient(135deg, #8a6fb0 0%, #b094d1 100%);
    --accent-secondary-gradient: linear-gradient(135deg, #ed553b 0%, #f27059 100%);
    --dark-gradient: linear-gradient(135deg, #2d3142 0%, #4f5574 100%);
    
    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.15);
    --shadow-primary: 0 10px 20px rgba(58, 145, 136, 0.2);
    --shadow-secondary: 0 10px 20px rgba(242, 177, 52, 0.2);
    --shadow-accent: 0 10px 20px rgba(138, 111, 176, 0.2);
    
    /* Typography */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Montserrat', sans-serif;
    
    /* Border Radius */
    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50%;
}

/* ===== BASE STYLES ===== */
body {
    font-family: var(--body-font);
    color: var(--text);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* ===== TOP BANNER ===== */
.top-banner {
    background: var(--primary-gradient);
    padding: 12px 0;
    color: var(--white);
}

.banner-info {
    display: flex;
    align-items: center;
}

.banner-info i {
    color: var(--secondary-light);
    margin-right: 8px;
}

.banner-info span {
    margin-right: 20px;
}

.banner-social {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.banner-social a {
    color: var(--white);
    margin-left: 15px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.banner-social a:hover {
    color: var(--secondary-light);
    transform: translateY(-3px);
}

/* ===== HEADER ===== */
.site-header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.site-title {
    color: var(--primary);
    font-family: var(--heading-font);
    font-size: 2.2rem;
    margin: 0;
    font-weight: 700;
}

.navbar-nav {
    margin-left: auto;
}

.nav-link {
    color: var(--dark) !important;
    font-weight: 600;
    padding: 10px 15px !important;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-gradient);
    transition: all 0.3s ease;
    border-radius: var(--radius-full);
}

.nav-link:hover:before,
.nav-link.active:before {
    width: 70%;
}

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

.btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--primary-gradient);
    border: none;
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--secondary-gradient);
    border: none;
    color: var(--white);
    box-shadow: var(--shadow-secondary);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-light {
    background: var(--white);
    border: none;
    color: var(--primary);
}

.btn-light:hover {
    background: var(--light);
    color: var(--primary-dark);
}

.consultation-btn {
    margin-left: 15px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background-color: var(--primary);
    padding: 180px 0 120px;
    position: relative;
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 49, 66, 0.8) 0%, rgba(58, 145, 136, 0.8) 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    color: var(--white);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    transition: all 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.03);
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 100px 0;
    background-color: var(--white);
}

.section-heading {
    margin-bottom: 3rem;
    text-align: center;
}

.heading-line {
    width: 80px;
    height: 4px;
    background: var(--primary-gradient);
    margin: 1.5rem auto;
    border-radius: var(--radius-full);
}

.feature-card {
    padding: 40px 30px;
    text-align: center;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    border-bottom: 4px solid var(--primary);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 2rem;
    box-shadow: var(--shadow-primary);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.feature-card p {
    color: var(--light-text);
    margin-bottom: 0;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 100px 0;
    background-color: var(--light);
    position: relative;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    transition: all 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--secondary-gradient);
    border-radius: var(--radius-full);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-secondary);
    transition: all 0.3s ease;
}

.about-image:hover .experience-badge {
    transform: rotate(10deg);
}

.experience-badge .number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.1;
}

.about-section .section-heading {
    text-align: left;
}

.about-section .heading-line {
    margin-left: 0;
}

.about-features {
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.about-feature i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-right: 15px;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 100px 0;
    background-color: var(--white);
}

.service-card {
    padding: 40px 30px;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-bottom: 4px solid var(--primary);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 25px;
    box-shadow: var(--shadow-primary);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.service-card p {
    color: var(--light-text);
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.service-link i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 120px 0;
    background-color: var(--secondary);
    position: relative;
    color: var(--white);
    background-size: cover;
    background-position: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(242, 177, 52, 0.9) 0%, rgba(217, 155, 36, 0.9) 100%);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--light);
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    border-bottom: 4px solid var(--primary);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    padding: 40px 30px;
    position: relative;
    background: linear-gradient(135deg, rgba(240, 247, 238, 0.5) 0%, rgba(255, 255, 255, 0.5) 100%);
}

.testimonial-content i {
    font-size: 2rem;
    color: var(--primary-light);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 20px;
}

.testimonial-content p {
    position: relative;
    z-index: 1;
    font-style: italic;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    background: var(--primary-gradient);
    color: var(--white);
}

.author-info h4 {
    margin-bottom: 5px;
    color: var(--white);
    font-size: 1.1rem;
}

.author-info p {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 100px 0;
    background-color: var(--white);
}

.card {
    border: none;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.card-header {
    background-color: transparent;
    border: none;
    padding: 0;
}

.card-header h2 {
    margin: 0;
}

.card-header button {
    padding: 18px 20px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    position: relative;
    padding-right: 50px;
    width: 100%;
    text-align: left;
    background-color: var(--white);
    border: 1px solid #eaeaea;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 16px;
    line-height: 1.5;
}

.card-header button:hover {
    background-color: #f8f9fa;
    color: var(--primary);
    border-color: var(--primary-light);
}

.card-header button:after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    color: var(--primary);
    font-size: 18px;
}

.card-header button[aria-expanded="true"] {
    background-color: #f8f9fa;
    color: var(--primary);
    border-color: var(--primary);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.03);
}

.card-header button[aria-expanded="true"]:after {
    transform: translateY(-50%) rotate(180deg);
    color: var(--primary);
}

.card-body {
    padding: 20px 25px;
    color: var(--light-text);
    background-color: var(--white);
    border: 1px solid #eaeaea;
    border-top: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    line-height: 1.7;
}

/* ===== CONTACT INFO SECTION ===== */
.contact-info-section {
    padding: 80px 0;
    background-color: var(--light);
}

.contact-info-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border-bottom: 4px solid var(--primary);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: var(--shadow-primary);
}

.contact-info-card h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.contact-info-card p {
    color: var(--light-text);
    margin-bottom: 0;
}

/* ===== FOOTER ===== */
.site-footer {
    background-color: var(--light);
    color: var(--text);
    position: relative;
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget h4 {
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-widget h4:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
}

.footer-widget p {
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-light);
    color: var(--white);
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a:before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.contact-info i {
    color: var(--primary);
    margin-right: 10px;
    width: 20px;
}

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

.copyright-text {
    margin-bottom: 0;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1199.98px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-section h1 {
        font-size: 3.5rem;
    }
    
    .cta-section h2 {
        font-size: 2.5rem;
    }
    
    section {
        padding: 80px 0;
    }
}

@media (max-width: 991.98px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 150px 0 100px;
    }
    
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .hero-section p {
        font-size: 1.2rem;
    }
    
    .cta-section h2 {
        font-size: 2.2rem;
    }
    
    section {
        padding: 70px 0;
    }
    
    .consultation-btn {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .banner-info, .banner-social {
        justify-content: center;
        text-align: center;
    }
    
    .banner-social {
        margin-top: 10px;
    }
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-section {
        padding: 120px 0 80px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-section p {
        font-size: 1.1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        right: -10px;
        bottom: 20px;
    }
    
    .experience-badge .number {
        font-size: 2.5rem;
    }
    
    .experience-badge .text {
        font-size: 0.8rem;
    }
}

@media (max-width: 575.98px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
}
/* Blog styles */
.blog-image {
    height: 200px;
    overflow: hidden;
    border-top-left-radius: var(--radius-lg);
    border-top-right-radius: var(--radius-lg);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.service-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.blog-meta span {
    font-size: 0.85rem;
    color: var(--light-text);
    display: flex;
    align-items: center;
}

.blog-meta i {
    margin-right: 5px;
    color: var(--primary);
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.blog-content h3 a {
    color: var(--dark);
    transition: all 0.3s ease;
}

.blog-content h3 a:hover {
    color: var(--primary);
}

.blog-content p {
    color: var(--light-text);
    margin-bottom: 20px;
}

/* Content article styles */
.content-article {
    padding: 30px;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.content-section {
    padding: 0 0 80px;
}

.content-article h2 {
    color: var(--primary-dark);
    margin-top: 30px;
    margin-bottom: 20px;
}

.content-article h3 {
    color: var(--primary-dark);
    margin-top: 25px;
    margin-bottom: 15px;
}

.content-article p {
    margin-bottom: 20px;
}

.content-article ul,
.content-article ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.content-article li {
    margin-bottom: 10px;
}

.content-article img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 20px 0;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.content-article img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

/* Breadcrumb styles */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item.active {
    color: var(--white);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Pagination styles */
.pagination {
    justify-content: center;
    margin-top: 50px;
}

.page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
}

.page-link {
    color: var(--primary);
    border-radius: var(--radius-sm);
    margin: 0 3px;
}

.page-link:hover {
    color: var(--primary-dark);
    background-color: var(--light);
}
/* Top Banner Styles */
.top-banner {
  background-color: var(--dark);
  padding: 10px 0;
  color: var(--white);
}

.top-contact a {
  color: var(--white);
  margin-right: 20px;
  font-size: 14px;
  text-decoration: none;
}

.top-contact a:hover {
  color: var(--primary-light);
}

.top-social {
  text-align: right;
}

.top-social a {
  color: var(--white);
  margin-left: 15px;
  font-size: 14px;
  text-decoration: none;
}

.top-social a:hover {
  color: var(--primary-light);
}

/* Header Banner with Image */
.header-banner {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
}

.banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/images/holistic-banner.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(45, 49, 66, 0.6);
  z-index: 2;
}

.banner-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding-top: 120px;
  color: var(--white);
}

.banner-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.banner-content p {
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
}

@media (max-width: 768px) {
  .header-banner {
    height: 200px;
  }
  
  .banner-content {
    padding-top: 70px;
  }
  
  .banner-content h1 {
    font-size: 32px;
  }
  
  .banner-content p {
    font-size: 16px;
  }
}
/* Fix dropdown menu background and hover colors */
.dropdown-menu {
  background-color: white;
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.dropdown-item {
  color: var(--text);
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.dropdown-item:hover, 
.dropdown-item:focus {
  background-color: var(--primary-light);
  color: white;
}
.btn-link {
    color: var(--text) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    box-shadow: none !important;
}

.btn-link:hover, 
.btn-link:focus {
    color: var(--primary) !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

.btn-link.collapsed {
    color: var(--text) !important;
}

.btn-link:not(.collapsed) {
    color: var(--primary) !important;
}

/* Override Bootstrap's default focus styles */
.btn:focus, 
.btn.focus,
.btn-link:focus,
.btn-link.focus {
    outline: 0 !important;
    box-shadow: none !important;
    border-color: var(--primary-light) !important;
}

/* Additional override for any remaining blue focus styles */
*:focus {
    outline-color: var(--primary) !important;
}
/* ===== FOOTER STYLES ===== */
.site-footer {
  background-color: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 0;
  position: relative;
}

.footer-top {
  padding: 80px 0 50px;
  position: relative;
  background: linear-gradient(135deg, #2d3142 0%, #3a4156 100%);
}

.footer-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(to right, var(--primary) 0%, var(--primary-light) 100%);
}

.footer-widget h4 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.footer-widget h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary);
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  line-height: 1.8;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
}

.footer-links li a:before {
  content: "›";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--primary);
  font-size: 18px;
}

.footer-links li a:hover {
  color: var(--primary-light);
  padding-left: 18px;
}

.social-links {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.contact-info p {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon {
  color: var(--primary);
  margin-right: 10px;
  font-size: 16px;
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
}

.copyright-text {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-bottom-links {
  margin-top: 10px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 10px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary-light);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99;
  box-shadow: 0 5px 15px rgba(58, 145, 136, 0.3);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-3px);
}

@media (max-width: 767px) {
  .footer-widget {
    margin-bottom: 40px;
  }
  
  .footer-bottom-links,
  .copyright-text {
    text-align: center;
  }
  
  .footer-bottom-links a {
    margin: 0 10px;
  }
}
/* Fix for the floating green line in footer */
.footer-widget h4 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
  display: inline-block;
}

.footer-widget h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  margin: 0 auto;
}
/* About Me Page Styles */
.profile-image {
  border: 5px solid #3a9188;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.about-content h2 {
  color: #3a9188;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.about-content h3 {
  color: #ed553b;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.about-content p {
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.cta-section {
  background-color: #f0f7ee;
  border-left: 5px solid #f2b134;
  padding: 2rem;
  margin-top: 3rem;
  margin-bottom: 2rem;
  border-radius: 5px;
}

.cta-section .btn-primary {
  background-color: #ed553b;
  border-color: #ed553b;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-section .btn-primary:hover {
  background-color: #f2b134;
  border-color: #f2b134;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
/* Services Page Styles */
.services-content h2 {
  color: #3a9188;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f2b134;
}

.services-content p {
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.services-content ul {
  margin-bottom: 2rem;
}

.services-content li {
  margin-bottom: 0.5rem;
}

.service-icon {
  font-size: 2.5rem;
  color: #3a9188;
  margin-bottom: 1rem;
}

.service-card {
  transition: all 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 1.5rem;
  background-color: #fff;
}

.service-content h3 {
  color: #3a9188;
  margin-bottom: 1rem;
}

.service-link {
  color: #ed553b;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: #f2b134;
  text-decoration: none;
}
/* Certification Logos Styles */
.certifications-section {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.certifications-section h3 {
  color: #3a9188;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.certification-logo {
  max-height: 120px;
  transition: all 0.3s ease;
  filter: grayscale(0.2);
}

.certification-logo:hover {
  transform: scale(1.05);
  filter: grayscale(0);
}
/* Additional Image Styles */
.additional-image {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 3px solid #f0f7ee;
}

.additional-image:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
/* Improved Certification Logo Visibility */
.certification-logo {
  max-height: 120px;
  transition: all 0.3s ease;
  filter: brightness(1.2) contrast(1.2);
  background-color: #f9f9f9;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.certification-logo:hover {
  transform: scale(1.05);
  filter: brightness(1.3) contrast(1.3);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}
/* Improved Service Icons Visibility with Better Contrast */
.service-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  background-color: #3a9188;
  margin: 0 auto 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border: 2px solid #3a9188;
}

.service-icon i {
  font-size: 32px;
  color: #ffffff;
  line-height: 80px;
}

.service-card:hover .service-icon {
  background-color: #f2b134;
  transform: translateY(-5px);
  border-color: #f2b134;
}

.service-card:hover .service-icon i {
  color: #ffffff;
}
/* Hero Section Styling */
.hero-section {
  position: relative;
  padding: 120px 0;
  color: #ffffff;
  background-color: #3a9188;
  overflow: hidden;
}

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

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
}
/* Improved Service Icons Visibility with Better Contrast */
.service-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  background-color: #3a9188;
  margin: 0 auto 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border: 2px solid #3a9188;
}

.service-icon i {
  font-size: 32px;
  color: #ffffff;
  line-height: 80px;
}

.service-card:hover .service-icon {
  background-color: #f2b134;
  transform: translateY(-5px);
  border-color: #f2b134;
}

.service-card:hover .service-icon i {
  color: #ffffff;
}
