:root {
    /* Primary Colors */
    --primary-1: #7E57C2; /* Soft purple - main brand color */
    --primary-2: #F5B7B1; /* Soft pink - accent color */
    --primary-3: #5DADE2; /* Soft blue - information color */
    --primary-4: #58D68D; /* Soft green - positive actions */
    --primary-5: #F9E79F; /* Soft yellow - highlights */
    
    /* Shades */
    --primary-1-light: #9575CD;
    --primary-1-dark: #673AB7;
    --primary-2-light: #F8C9C5;
    --primary-2-dark: #E6A5A0;
    --primary-3-light: #85C1E9;
    --primary-3-dark: #3498DB;
    --primary-4-light: #7DCEA0;
    --primary-4-dark: #28B463;
    --primary-5-light: #FEF9E7;
    --primary-5-dark: #F4D03F;
    
    /* Neutrals */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --black: #000000;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-gray);
    overflow-x: hidden;
}

section {
    padding: 80px 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Buttons */
.btn {
    padding: 12px 28px;
    transition: all 0.3s ease;
    font-weight: 600;
    border-radius: 50px;
}

.btn-primary {
    background-color: var(--primary-1);
    border-color: var(--primary-1);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--primary-1-dark);
    border-color: var(--primary-1-dark);
}

.btn-outline-primary {
    color: var(--primary-1);
    border-color: var(--primary-1);
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
    background-color: var(--primary-1);
    color: var(--white);
}

/* Header */
header {
    padding: 20px 0;
    transition: all 0.3s ease;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-1);
}

header .nav-link {
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0 10px;
    position: relative;
    transition: all 0.3s ease;
}

header .nav-link:hover, header .nav-link:focus {
    color: var(--primary-1);
}

header .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-1);
    bottom: -3px;
    left: 0;
    transition: width 0.3s ease;
}

header .nav-link:hover::after, header .nav-link:focus::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(126, 87, 194, 0.2);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: rgba(245, 183, 177, 0.2);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* About Section */
.about {
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: rgba(93, 173, 226, 0.1);
    border-radius: 50%;
    top: -100px;
    left: 50%;
    z-index: -1;
}

.about-feature {
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-feature i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-1);
}

/* Services Section */
.services {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: rgba(249, 231, 159, 0.2);
    border-radius: 50%;
    bottom: -150px;
    right: -150px;
    z-index: 0;
}

.service-item {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-item-img {
    height: 200px;
    overflow: hidden;
}

.service-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.service-item:hover .service-item-img img {
    transform: scale(1.1);
}

.service-item-content {
    padding: 25px;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-1);
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-4);
}

/* Features Section */
.features {
    position: relative;
}

.features::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background-color: rgba(88, 214, 141, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: -1;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    margin-bottom: 30px;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--primary-1-light);
    color: var(--white);
    font-size: 2rem;
}

/* Price Plans */
.priceplan {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.priceplan::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: rgba(126, 87, 194, 0.1);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    z-index: 0;
}

.price-item {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 30px;
}

.price-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.price-item.featured {
    border: 2px solid var(--primary-1);
}

.price-item.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--primary-1);
    color: var(--white);
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 700;
}

.price-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-1);
    margin-bottom: 20px;
}

.price-period {
    font-size: 1rem;
    color: var(--gray);
    display: block;
}

.price-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.price-features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.price-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-4);
}

/* Team Section */
.team {
    position: relative;
    overflow: hidden;
}

.team::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: rgba(245, 183, 177, 0.1);
    border-radius: 50%;
    bottom: -150px;
    right: -150px;
    z-index: 0;
}

.team-member {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.team-img {
    height: 300px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-role {
    color: var(--gray);
    font-style: italic;
}

/* Reviews Section */
.reviews {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.reviews::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background-color: rgba(93, 173, 226, 0.1);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    z-index: 0;
}

.reviews-slider {
    position: relative;
    z-index: 1;
}

.review-item {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    margin: 20px 10px;
}

.review-item::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 2rem;
    color: rgba(126, 87, 194, 0.2);
    position: absolute;
    top: 10px;
    left: 10px;
}

.review-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.review-author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.review-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-author-info h5 {
    margin-bottom: 5px;
}

.review-author-info span {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Core Info Section */
.coreinfo {
    position: relative;
}

.coreinfo::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: rgba(249, 231, 159, 0.1);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    z-index: 0;
}

.coreinfo-item {
    padding: 30px;
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.coreinfo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.coreinfo-item i {
    font-size: 2.5rem;
    color: var(--primary-1);
    margin-bottom: 20px;
}

/* Contact Form */
.contact {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.contact::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: rgba(88, 214, 141, 0.1);
    border-radius: 50%;
    bottom: -150px;
    right: -150px;
    z-index: 0;
}

.contact-form {
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.form-control {
    border-radius: 50px;
    padding: 12px 20px;
    height: auto;
    margin-bottom: 20px;
}

textarea.form-control {
    border-radius: 20px;
    resize: none;
}

.form-check-input {
    margin-right: 10px;
}

/* Blog Section */
.blog {
    position: relative;
    overflow: hidden;
}

.blog::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background-color: rgba(126, 87, 194, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: 0;
}

.blog-item {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.blog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-img {
    height: 200px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.blog-item:hover .blog-img img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-date {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 10px;
}

/* FAQ Section */
.faq {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: rgba(245, 183, 177, 0.1);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    z-index: 0;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    font-weight: 600;
    padding: 20px;
    background-color: var(--white);
}

.accordion-button:not(.collapsed) {
    color: var(--primary-1);
    background-color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    padding: 20px;
}

/* Gallery */
.gallery {
    position: relative;
}

.gallery-item {
    margin-bottom: 30px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.gallery-item a {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(126, 87, 194, 0.2);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.gallery-item a:hover::before {
    opacity: 1;
}

.gallery-item a:hover img {
    transform: scale(1.1);
}

/* Footer */
footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: rgba(126, 87, 194, 0.1);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    z-index: 0;
}

footer::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background-color: rgba(245, 183, 177, 0.1);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    z-index: 0;
}

footer h4 {
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

footer h4::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--primary-1);
    bottom: 0;
    left: 0;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--primary-1);
    padding-left: 5px;
}

#site-copyright {
    text-align: center;
    padding-top: 20px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-gray);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
} 