:root {
    /* Primary Color Palette */
    --primary-color-1: #f8c9bb; /* Soft Peach */
    --primary-color-2: #a4d6de; /* Sky Blue */
    --primary-color-3: #ffecb3; /* Pale Yellow */
    --primary-color-4: #e2c3e6; /* Lavender */
    --primary-color-5: #b9dfbf; /* Mint Green */
    
    /* Shade Variations */
    --primary-color-1-light: #fde5dd;
    --primary-color-1-dark: #e5a997;
    --primary-color-2-light: #cfe9ee;
    --primary-color-2-dark: #7ab5c0;
    --primary-color-3-light: #fff6d9;
    --primary-color-3-dark: #e6cb87;
    --primary-color-4-light: #f3e5f5;
    --primary-color-4-dark: #c7a3cc;
    --primary-color-5-light: #daeede;
    --primary-color-5-dark: #93c299;
    
    /* Text Colors */
    --text-dark: #384053;
    --text-medium: #5d6576;
    --text-light: #8a91a3;
    
    /* Background Colors */
    --bg-light: #ffffff;
    --bg-off-white: #f9f9f9;
    --bg-light-gray: #f2f3f5;
    
    /* Accent Colors */
    --accent-color: #ff8560;
    --success-color: #4caf50;
    --warning-color: #ffc107;
    --error-color: #f44336;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.3;
    color: var(--text-dark);
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--primary-color-2-dark);
}

a:hover {
    color: var(--primary-color-1);
}

img {
    max-width: 100%;
    height: auto;
}

/* Container Adjustments */
.container {
    padding: 0 2rem;
}

/* Section Spacing */
section {
    padding: 6rem 0;
    position: relative;
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
}

/* Section Title Styling */
.section-title {
    margin-bottom: 4rem;
    text-align: center;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-color-1);
    border-radius: 3px;
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
}

/* Button Styles */
.btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.btn-primary {
    background-color: var(--primary-color-1);
    border-color: var(--primary-color-1);
    color: var(--text-dark);
}

.btn-primary:hover {
    background-color: var(--primary-color-1-dark);
    border-color: var(--primary-color-1-dark);
    color: var(--bg-light);
}

.btn-secondary {
    background-color: var(--primary-color-2);
    border-color: var(--primary-color-2);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background-color: var(--primary-color-2-dark);
    border-color: var(--primary-color-2-dark);
    color: var(--bg-light);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color-1);
    color: var(--primary-color-1-dark);
}

.btn-outline:hover {
    background: var(--primary-color-1);
    color: var(--bg-light);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-scrolled {
    padding: 0.5rem 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color-1-dark) !important;
}

.nav-link {
    font-weight: 600;
    color: var(--text-dark) !important;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.nav-link:before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color-1);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover:before, .nav-link.active:before {
    width: 70%;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--bg-light);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-image {
    position: relative;
}

.hero-shape {
    position: absolute;
    z-index: 1;
}

.shape-1 {
    top: -10%;
    right: -5%;
    width: 40%;
    opacity: 0.6;
}

.shape-2 {
    bottom: -15%;
    left: -10%;
    width: 35%;
    opacity: 0.5;
}

/* About Section */
.about-section {
    position: relative;
    background-color: var(--bg-off-white);
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature {
    padding: 2rem;
    border-radius: 10px;
    background-color: var(--bg-light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color-2);
}

/* Services Section */
.services-section {
    position: relative;
}

.service-item {
    padding: 2.5rem;
    border-radius: 15px;
    background-color: var(--bg-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color-1), var(--primary-color-2));
}

.service-item i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color-1);
}

.service-price {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    background-color: var(--primary-color-3-light);
    color: var(--text-dark);
    font-weight: 700;
    margin: 1rem 0;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.service-features li:last-child {
    border-bottom: none;
}

/* Features Section */
.features-section {
    background-color: var(--bg-off-white);
    position: relative;
}

.feature-item {
    background-color: var(--bg-light);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary-color-4-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-color-4);
}

/* Price Plan Section */
.priceplan-section {
    position: relative;
}

.price-item {
    background-color: var(--bg-light);
    border-radius: 15px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

.price-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.price-item.featured {
    background: linear-gradient(135deg, var(--primary-color-1-light), var(--primary-color-2-light));
}

.price-item.featured:before {
    content: 'Popular';
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    transform: rotate(45deg);
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color-2-dark);
    margin: 1.5rem 0;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.price-features li {
    padding: 0.7rem 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.price-features li:last-child {
    border-bottom: none;
}

/* Team Section */
.team-section {
    background-color: var(--bg-off-white);
    position: relative;
}

.team-member {
    background-color: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-img {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}

.team-img img {
    transition: transform 0.4s ease;
}

.team-member:hover .team-img img {
    transform: scale(1.05);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-role {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    background-color: var(--primary-color-1-light);
    color: var(--primary-color-1-dark);
    font-size: 0.8rem;
    margin: 0.5rem 0 1rem;
}

/* Reviews Section */
.reviews-section {
    position: relative;
}

.reviews-slider {
    overflow: hidden;
    padding: 2rem 0;
}

.review-item {
    background-color: var(--bg-light);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
}

.review-item:before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    color: var(--primary-color-3-light);
    opacity: 0.5;
}

.review-text {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.review-author {
    display: flex;
    align-items: center;
}

.review-author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

.review-author-name {
    font-weight: 700;
    margin-bottom: 0;
}

/* Core Info Section */
.coreinfo-section {
    background-color: var(--bg-off-white);
    position: relative;
}

.coreinfo-item {
    background-color: var(--bg-light);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.coreinfo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.coreinfo-item i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color-5);
}

/* Contact Section */
.contact-section {
    position: relative;
}

.contact-form {
    background-color: var(--bg-light);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-control {
    border: 1px solid #e1e1e1;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    font-size: 0.9rem;
    background-color: var(--bg-off-white);
}

.form-control:focus {
    border-color: var(--primary-color-2);
    box-shadow: 0 0 0 0.25rem rgba(164, 214, 222, 0.25);
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* Blog Section */
.blog-section {
    background-color: var(--bg-off-white);
    position: relative;
}

.blog-item {
    background-color: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-img {
    position: relative;
    overflow: hidden;
}

.blog-img img {
    transition: transform 0.4s ease;
}

.blog-item:hover .blog-img img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    background-color: var(--primary-color-3-light);
    color: var(--primary-color-3-dark);
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
    position: relative;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    padding: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color-1-dark);
    background-color: var(--primary-color-1-light);
    box-shadow: none;
}

.accordion-button:focus {
    border-color: var(--primary-color-1);
    box-shadow: 0 0 0 0.25rem rgba(248, 201, 187, 0.25);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23384053'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e5a997'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    background-color: var(--bg-light);
}

/* Gallery Section */
.gallery-section {
    position: relative;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 1.5rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.gallery-item img {
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 5rem 0 2rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color-1), var(--primary-color-2), var(--primary-color-3), var(--primary-color-4), var(--primary-color-5));
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color-1);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--bg-light);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color-1);
    padding-left: 5px;
}

.contact-info {
    margin-bottom: 1.5rem;
}

.contact-info i {
    width: 30px;
    color: var(--primary-color-1);
}

.site-copyright {
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
} 