:root {
    /* Primary Colors */
    --primary-1: #83A7A6; /* Sage Green */
    --primary-2: #FCB87D; /* Peach */
    --primary-3: #E8C5C5; /* Soft Pink */
    --primary-4: #D6E6E8; /* Light Blue */
    --primary-5: #9BA79F; /* Muted Green */
    
    /* Shades */
    --primary-1-light: #A6C1C0;
    --primary-1-dark: #637F7E;
    --primary-2-light: #FECDA2;
    --primary-2-dark: #E9A05A;
    --primary-3-light: #F2D8D8;
    --primary-3-dark: #D6A7A7;
    --primary-4-light: #E8F1F2;
    --primary-4-dark: #B1CCCE;
    --primary-5-light: #B3BCB6;
    --primary-5-dark: #7D877E;
    
    /* Neutrals */
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #E9ECEF;
    --dark-gray: #495057;
    --black: #212529;
}

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-gray);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--black);
}

a {
    color: var(--primary-1);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-1-dark);
}

.btn {
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-1);
    border-color: var(--primary-1);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-1-dark);
    border-color: var(--primary-1-dark);
}

.btn-secondary {
    background-color: var(--primary-2);
    border-color: var(--primary-2);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--primary-2-dark);
    border-color: var(--primary-2-dark);
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: var(--primary-1);
}

.bg-light {
    background-color: var(--light-gray) !important;
}

/* Header */
.navbar {
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 24px;
    color: var(--primary-1);
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark-gray);
    font-weight: 500;
    padding: 0 15px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary-1);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--primary-4-light);
    overflow: hidden;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-image img {
    max-width: 100%;
    border-radius: 20px;
}

.shape-blob {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    opacity: 0.2;
}

.shape-blob-1 {
    width: 400px;
    height: 400px;
    background-color: var(--primary-2);
    top: -100px;
    right: -100px;
}

.shape-blob-2 {
    width: 300px;
    height: 300px;
    background-color: var(--primary-3);
    bottom: -50px;
    left: -50px;
}

/* About Section */
.about-feature {
    padding: 30px;
    border-radius: 15px;
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-feature i {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-1);
}

/* Services Section */
.services-item {
    padding: 30px;
    border-radius: 15px;
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease;
}

.services-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.services-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary-1);
    transition: all 0.3s ease;
    z-index: -1;
}

.services-item:hover::before {
    width: 100%;
    opacity: 0.1;
}

.services-item i {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-1);
}

.services-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-1);
    margin-top: 15px;
}

.services-features {
    margin-top: 15px;
    padding-left: 0;
    list-style: none;
}

.services-features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.services-features li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-1);
}

/* Features Section */
.features-item {
    padding: 30px;
    border-radius: 15px;
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    text-align: center;
}

.features-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.features-item i {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-2);
}

/* Price Plan Section */
.pricing-item {
    padding: 40px 30px;
    border-radius: 15px;
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.pricing-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.pricing-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-3);
    z-index: -1;
}

.pricing-item.featured {
    background-color: var(--primary-1-light);
}

.pricing-item.featured::after {
    background-color: var(--primary-1);
}

.pricing-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--black);
}

.pricing-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-1);
    margin-bottom: 20px;
}

.pricing-price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--dark-gray);
}

.pricing-features {
    margin-bottom: 30px;
    padding-left: 0;
    list-style: none;
}

.pricing-features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.pricing-features li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-1);
}

/* Team Section */
.team-member {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.team-img {
    position: relative;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    transition: all 0.5s ease;
}

.team-member:hover .team-img img {
    transform: scale(1.1);
}

.team-info {
    padding: 20px;
    text-align: center;
    background-color: var(--white);
}

.team-info h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.team-info p {
    color: var(--primary-1);
    margin-bottom: 0;
}

/* Review Section */
.reviews-slider {
    padding: 30px 0;
}

.review-item {
    padding: 30px;
    border-radius: 15px;
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 15px;
    position: relative;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding-top: 30px;
}

.review-text::before {
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 24px;
    color: var(--primary-3);
}

.review-author {
    display: flex;
    align-items: center;
}

.review-author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.review-author-img img {
    width: 100%;
}

.review-author-info h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.review-author-info p {
    margin-bottom: 0;
    color: var(--primary-1);
}

/* Core Info Section */
.coreinfo-item {
    padding: 30px;
    border-radius: 15px;
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.coreinfo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.coreinfo-item::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--primary-2-light);
    opacity: 0.3;
    transition: all 0.5s ease;
    z-index: -1;
}

.coreinfo-item:hover::before {
    width: 150px;
    height: 150px;
}

.coreinfo-item i {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-2);
}

/* Contact Section */
.contact-form {
    padding: 40px;
    border-radius: 15px;
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-control {
    height: 50px;
    border-radius: 30px;
    padding: 10px 20px;
    margin-bottom: 20px;
    border: 1px solid var(--medium-gray);
}

textarea.form-control {
    height: 150px;
    border-radius: 20px;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-1);
}

.contact-info {
    padding: 40px;
    border-radius: 15px;
    background-color: var(--primary-1);
    color: var(--white);
    height: 100%;
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    margin-bottom: 20px;
}

.contact-info-item i {
    font-size: 24px;
    margin-right: 20px;
}

.contact-info-item p {
    margin-bottom: 0;
}

/* Blog Section */
.blog-item {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.blog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.blog-img {
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    transition: all 0.5s ease;
}

.blog-item:hover .blog-img img {
    transform: scale(1.1);
}

.blog-content {
    padding: 20px;
    background-color: var(--white);
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.blog-content p {
    margin-bottom: 15px;
}

/* FAQ Section */
.accordion-item {
    margin-bottom: 15px;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    padding: 20px;
    font-weight: 600;
    color: var(--black);
    background-color: var(--white);
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-1);
    background-color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    padding: 20px;
    background-color: var(--white);
}

/* Gallery Section */
.gallery-container {
    margin-bottom: 30px;
}

.gallery-item {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Footer */
footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 80px 0 30px;
}

footer h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 22px;
}

footer p, footer a {
    color: rgba(255, 255, 255, 0.7);
}

footer a:hover {
    color: var(--primary-2);
}

footer ul {
    padding-left: 0;
    list-style: none;
}

footer ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0;
} 