:root {
    /* Primary Color Palette */
    --primary-color-1: #6B5CA5; /* Purple - representing guidance */
    --primary-color-2: #8FB8DE; /* Soft blue - representing calm */
    --primary-color-3: #F2C879; /* Warm yellow - representing hope */
    --primary-color-4: #E88B6A; /* Muted coral - representing support */
    --primary-color-5: #2D4654; /* Deep teal - representing stability */
    
    /* Light/Dark Shades */
    --primary-color-1-light: #8A7CB9;
    --primary-color-1-dark: #4C3D85;
    --primary-color-2-light: #B3D2EB;
    --primary-color-2-dark: #6B9BCA;
    --primary-color-3-light: #F9DCA6;
    --primary-color-3-dark: #DBA644;
    --primary-color-4-light: #F0B098;
    --primary-color-4-dark: #D4663E;
    --primary-color-5-light: #4A6A7A;
    --primary-color-5-dark: #1A2A33;
    
    /* Common Neutral Colors */
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #cccccc;
    --dark-gray: #555555;
    --black: #212121;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--black);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color-5);
}

/* Header Styles */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    padding: 0.5rem 0;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color-2-light) 0%, var(--primary-color-1-light) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Section Styling */
.section-padding {
    padding: 6rem 0;
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
    text-align: center;
}

.section-title h2 {
    display: inline-block;
    position: relative;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color-3);
}

/* Services Section */
.services-item {
    padding: 2rem;
    border-radius: 8px;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.services-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.services-item-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color-1);
    margin: 1rem 0;
}

/* Features Section */
.features-item {
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
}

.features-icon {
    font-size: 3rem;
    color: var(--primary-color-1);
    margin-bottom: 1.5rem;
}

/* Price Plan Section */
.priceplan-item {
    padding: 3rem 2rem;
    border-radius: 12px;
    background-color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.priceplan-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-color-2);
}

.priceplan-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.priceplan-item-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color-1);
    margin: 1.5rem 0;
}

.priceplan-features {
    margin: 2rem 0;
    padding: 0;
    list-style: none;
}

.priceplan-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
}

/* Team Section */
.team-member {
    text-align: center;
    margin-bottom: 2rem;
}

.team-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 5px solid var(--primary-color-2-light);
}

.team-member-name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.team-member-role {
    color: var(--primary-color-1);
    font-size: 0.9rem;
}

/* Reviews Section */
.reviews-section {
    background-color: var(--primary-color-5-light);
    color: var(--white);
}

.review-item {
    background-color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 1rem 0;
    position: relative;
    color: var(--black);
}

.review-item::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 2rem;
    color: var(--primary-color-3);
    opacity: 0.2;
}

/* Core Info Section */
.coreinfo-item {
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 2rem;
}

.coreinfo-icon {
    font-size: 2.5rem;
    color: var(--primary-color-1);
    margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
    background-color: var(--white);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
    border: 1px solid var(--medium-gray);
    padding: 0.8rem 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.form-check-input {
    margin-right: 0.5rem;
}

.btn-primary {
    background-color: var(--primary-color-1);
    border-color: var(--primary-color-1);
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-color-1-dark);
    border-color: var(--primary-color-1-dark);
}

/* Blog Section */
.blog-item {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.blog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-content {
    padding: 1.5rem;
}

/* FAQ Section */
.faq-section {
    background-color: var(--light-gray);
}

.accordion-item {
    margin-bottom: 1rem;
    border: none;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    padding: 1.25rem;
    background-color: var(--white);
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color-2-light);
    color: var(--primary-color-5);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color-2);
}

/* Gallery Section */
.gallery-item {
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Footer */
.site-footer {
    background-color: var(--primary-color-5);
    color: var(--white);
    padding: 4rem 0 2rem;
}
.site-footer h3, h4, h5 {

    color: var(--white);
 
}

.site-footer a {
    color: var(--primary-color-3-light);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--primary-color-3);
}

#site-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    display: block;
    text-align: center;
}

/* Breadcrumb */
.breadcrumb-section {
    background-color: var(--light-gray);
    padding: 1rem 0;
    margin-top: 70px;
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color-1) !important;
}

.bg-primary {
    background-color: var(--primary-color-1) !important;
}

.bg-light {
    background-color: var(--light-gray) !important;
}

.shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.shape-divider .shape-fill {
    fill: var(--white);
}

/* Animation Utilities */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 