:root {
    /* Main color palette */
    --primary-color-1: #7B4B94; /* Purple - main brand color */
    --primary-color-2: #E0B1CB; /* Soft pink */
    --primary-color-3: #5C374C; /* Deep plum */
    --primary-color-4: #9EB25D; /* Sage green */
    --primary-color-5: #F7D1CD; /* Blush pink */
    
    /* Light/dark variations */
    --primary-color-1-light: #9668AC;
    --primary-color-1-dark: #613875;
    --primary-color-2-light: #ECCBDE;
    --primary-color-2-dark: #C78DAF;
    --primary-color-3-light: #7A4D64;
    --primary-color-3-dark: #422939;
    --primary-color-4-light: #B8CC80;
    --primary-color-4-dark: #7A9237;
    --primary-color-5-light: #FEE9E7;
    --primary-color-5-dark: #EAB1AA;
    
    /* Neutral colors */
    --neutral-light: #F8F5FA;
    --neutral-medium: #E0DDEA;
    --neutral-dark: #333333;
}

/* Base styles */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--neutral-dark);
    background-color: var(--neutral-light);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-color-3);
}

p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color-1);
    border-color: var(--primary-color-1);
    color: white;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--primary-color-1-dark);
    border-color: var(--primary-color-1-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color-1);
    color: var(--primary-color-1);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-secondary:hover, .btn-secondary:focus {
    background-color: var(--primary-color-1);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: var(--primary-color-1);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Cards */
.card {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color-1);
}

.nav-link {
    font-weight: 500;
    color: var(--neutral-dark);
    margin: 0 0.5rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link:focus, .nav-link.active {
    color: var(--primary-color-1);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color-1);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link:focus::after, .nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color-1-light) 0%, var(--primary-color-1) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-img {
    position: relative;
    z-index: 2;
}

.hero-shape {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    z-index: 1;
}

.hero-shape-2 {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    z-index: 1;
}

/* Services Section */
.services {
    background-color: white;
    position: relative;
}

.service-card {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 5px solid var(--primary-color-2);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-top: 5px solid var(--primary-color-1);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color-1);
}

.service-price {
    font-weight: 700;
    color: var(--primary-color-1);
    font-size: 1.5rem;
    margin: 1rem 0;
}

.service-features {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    color: var(--primary-color-4);
    position: absolute;
    left: 0;
    top: 0.5rem;
    font-weight: bold;
}

/* About Section */
.about {
    position: relative;
    background-color: var(--neutral-light);
}

.about-feature {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.about-feature:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.about-feature-icon {
    font-size: 2rem;
    color: var(--primary-color-1);
    margin-bottom: 1rem;
}

/* Features Section */
.features {
    background-color: white;
    position: relative;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color-2-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    color: var(--primary-color-1);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background-color: var(--primary-color-1);
    color: white;
    transform: rotateY(180deg);
}

/* Price Plan Section */
.price-plan {
    background-color: var(--neutral-light);
    position: relative;
}

.price-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    position: relative;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.price-header {
    background-color: var(--primary-color-2-light);
    padding: 2rem;
    color: var(--primary-color-3);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color-1);
    margin: 1rem 0;
}

.price-features {
    padding: 2rem;
    list-style: none;
    padding-left: 0;
}

.price-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--neutral-medium);
}

.price-features li:last-child {
    border-bottom: none;
}

.price-popular {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-color-1);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg) translateX(2.5rem) translateY(-1.5rem);
    width: 10rem;
    text-align: center;
}

/* Team Section */
.team {
    background-color: white;
    position: relative;
}

.team-member {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.team-img {
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
}

.team-member:hover .team-img {
    transform: scale(1.05);
}

.team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem 1.5rem 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.team-name {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.team-role {
    font-size: 1rem;
    opacity: 0.9;
}

/* Reviews Section */
.reviews {
    background-color: var(--neutral-light);
    position: relative;
}

.review-item {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    margin: 1rem 0.5rem;
}

.review-text {
    font-style: italic;
    position: relative;
    padding: 1rem 0;
}

.review-text::before, .review-text::after {
    content: '"';
    font-size: 3rem;
    line-height: 0;
    position: absolute;
    color: var(--primary-color-2);
}

.review-text::before {
    top: 0.5rem;
    left: -0.5rem;
}

.review-text::after {
    bottom: -1rem;
    right: -0.5rem;
}

.review-author {
    font-weight: 700;
    color: var(--primary-color-1);
    margin-top: 1.5rem;
}

/* Core Info Section */
.core-info {
    background-color: white;
    position: relative;
}

.info-item {
    padding: 2rem;
    border-radius: 10px;
    background-color: var(--neutral-light);
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.info-item:hover {
    background-color: white;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.info-icon {
    font-size: 2.5rem;
    color: var(--primary-color-1);
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact {
    background-color: var(--neutral-light);
    position: relative;
}

.contact-form {
    background-color: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-control {
    border: 1px solid var(--neutral-medium);
    padding: 0.75rem 1rem;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color-1);
    box-shadow: 0 0 0 0.2rem rgba(123, 75, 148, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--primary-color-3);
}

/* Blog Section */
.blog {
    background-color: white;
    position: relative;
}

.blog-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card: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;
}

.blog-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color-3);
}

.blog-excerpt {
    font-size: 0.9rem;
    color: var(--neutral-dark);
    margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq {
    background-color: var(--neutral-light);
    position: relative;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.accordion-button {
    padding: 1.25rem;
    background-color: white;
    font-weight: 600;
    color: var(--primary-color-3);
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color-1);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,0.1);
}

.accordion-body {
    padding: 1.25rem;
    background-color: white;
}

/* Gallery Section */
.gallery {
    background-color: white;
    position: relative;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 30px;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

/* Footer */
footer {
    background-color: var(--primary-color-3);
    color: white;
    padding: 5rem 0 2rem;
}

.footer-heading {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-text {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

.footer-contact-info {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.5rem;
}

.footer-contact-info i {
    margin-right: 0.5rem;
    color: var(--primary-color-2);
}

#site-copyright {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Animation classes */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

.slide-up {
    animation: slideUp 0.5s ease-in-out;
}

.slide-in-right {
    animation: slideInRight 0.5s ease-in-out;
}

.slide-in-left {
    animation: slideInLeft 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Space page */
#space {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Shapes and decorative elements */
.shape-blob {
    position: absolute;
    border-radius: 50%;
    background-color: var(--primary-color-2-light);
    opacity: 0.3;
    z-index: 0;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    right: 10%;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    right: -50px;
} 