:root {
    /* Color palette */
    --color-primary: #9d4edd;
    --color-primary-light: #b76cf7;
    --color-primary-dark: #7b2cbf;
    --color-secondary: #48bfe3;
    --color-secondary-light: #72efdd;
    --color-secondary-dark: #0096c7;
    --color-accent: #f7b267;
    --color-light: #f8f9fa;
    --color-dark: #212529;
    --color-gray: #6c757d;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
}

/* Base styles */
body {
    font-family: var(--font-primary);
    color: var(--color-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
}

/* Header styles */
header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: var(--color-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.section-subtitle {
    margin-bottom: 2rem;
    color: var(--color-dark);
}

.section-description {
    margin-bottom: 3rem;
    color: var(--color-gray);
}

/* Hero section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--color-light);
    position: relative;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: var(--color-primary-light);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 0;
}

.hero-shape-1 {
    top: -150px;
    right: -50px;
    width: 400px;
    height: 400px;
}

.hero-shape-2 {
    bottom: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    background-color: var(--color-secondary-light);
}

/* About section */
.about {
    background-color: #fff;
}

.about-feature {
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

/* Services section */
.services {
    background-color: var(--color-light);
}

.service-item {
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    border-top: 4px solid var(--color-primary);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-price {
    font-size: 1.75rem;
    color: var(--color-primary);
    font-weight: 700;
    margin: 1rem 0;
}

.service-features {
    list-style: none;
    padding-left: 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 {
    background-color: #fff;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary-light);
    color: #fff;
    font-size: 2rem;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

/* Price plans */
.price-plan {
    background-color: var(--color-light);
}

.price-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.price-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-header {
    background-color: var(--color-primary);
    color: white;
    padding: 2rem 1.5rem;
    text-align: center;
}

.price-body {
    padding: 2rem;
}

.price-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.price-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.price-features li:last-child {
    border-bottom: none;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

/* Team section */
.team {
    background-color: #fff;
}

.team-member {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.team-img {
    width: 100%;
    height: auto;
}

.team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.team-member:hover .team-info {
    bottom: 0;
}

/* Reviews */
.reviews {
    background-color: var(--color-light);
}

.review-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 1rem;
}

.review-author {
    font-weight: 600;
    color: var(--color-primary);
}

/* Core info */
.core-info {
    background-color: #fff;
}

.core-info-item {
    padding: 2rem;
    border-radius: 8px;
    background-color: var(--color-light);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.core-info-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact form */
.contact {
    background-color: var(--color-light);
}

.contact-form {
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
    margin-bottom: 1.5rem;
}

.form-check {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Blog section */
.blog {
    background-color: #fff;
}

.blog-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

/* FAQ section */
.faq {
    background-color: var(--color-light);
}

.accordion-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    border: none;
}

.accordion-button {
    font-weight: 600;
    padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--color-primary);
    color: white;
}

.accordion-body {
    padding: 1.5rem;
    background-color: #fff;
}

/* Gallery */
.gallery {
    background-color: #fff;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: var(--color-dark);
    color: white;
    padding: 5rem 0 2rem;
}

footer h5 {
    color: var(--color-primary-light);
    margin-bottom: 1.5rem;
}

footer ul {
    list-style: none;
    padding-left: 0;
}

footer ul li {
    margin-bottom: 0.75rem;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: white;
}

#site-copyright {
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Buttons */
.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

.btn-secondary {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.btn-secondary:hover {
    background-color: var(--color-secondary-dark);
    border-color: var(--color-secondary-dark);
}

/* Utilities */
.text-primary {
    color: var(--color-primary) !important;
}

.bg-primary {
    background-color: var(--color-primary) !important;
}

.text-secondary {
    color: var(--color-secondary) !important;
}

.bg-secondary {
    background-color: var(--color-secondary) !important;
} 