:root {
    /* Color Palette */
    --primary-1: #8B5FBF; /* Purple - Primary brand color */
    --primary-2: #61C0BF; /* Teal - Secondary brand color */
    --primary-3: #FFB344; /* Orange - Accent color */
    --primary-4: #E05D5D; /* Red - Call to action color */
    --primary-5: #5F7A61; /* Green - Complementary color */
    
    /* Light/Dark variations */
    --primary-1-light: #A78ED5;
    --primary-1-dark: #6A4A94;
    --primary-2-light: #8FDCDB;
    --primary-2-dark: #4A9796;
    --primary-3-light: #FFCB7B;
    --primary-3-dark: #D99328;
    --primary-4-light: #EA8A8A;
    --primary-4-dark: #B84848;
    --primary-5-light: #7D9A7F;
    --primary-5-dark: #4A5E4C;
    
    /* Neutrals */
    --neutral-100: #ffffff;
    --neutral-200: #f8f9fa;
    --neutral-300: #e9ecef;
    --neutral-400: #dee2e6;
    --neutral-500: #adb5bd;
    --neutral-600: #6c757d;
    --neutral-700: #495057;
    --neutral-800: #343a40;
    --neutral-900: #212529;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--neutral-800);
    line-height: 1.6;
    overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    .swiper-container {
        --swiper-autoplay-delay: 0 !important;
    }
    
    .animate__animated {
        animation: none !important;
        transition: none !important;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--neutral-900);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2.2rem;
}

h4 {
    font-size: 1.8rem;
}

h5 {
    font-size: 1.4rem;
}

h6 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.75rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-1);
    border-color: var(--primary-1);
    color: white;
}

.btn-primary:hover, .btn-primary:focus {
    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: white;
}

.btn-secondary:hover, .btn-secondary:focus {
    background-color: var(--primary-2-dark);
    border-color: var(--primary-2-dark);
}

.btn-accent {
    background-color: var(--primary-3);
    border-color: var(--primary-3);
    color: var(--neutral-800);
}

.btn-accent:hover, .btn-accent:focus {
    background-color: var(--primary-3-dark);
    border-color: var(--primary-3-dark);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-1);
    color: var(--primary-1);
}

.btn-outline:hover, .btn-outline:focus {
    background-color: var(--primary-1);
    color: white;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-1);
}

/* Cards */
.card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
    border: none;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--neutral-100);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 0.5rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-1);
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: var(--neutral-800);
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link:focus, 
.navbar-nav .nav-link.active {
    color: var(--primary-1);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--primary-1-light);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 95, 191, 0.85) 0%, rgba(97, 192, 191, 0.75) 100%);
}

.hero-shape {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 1;
}

/* About Section */
.about-feature {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 8px;
    background-color: var(--neutral-200);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature i {
    font-size: 2.5rem;
    color: var(--primary-1);
    margin-bottom: 1.5rem;
}

/* Services Section */
.services-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--neutral-100);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.services-item-header {
    background-color: var(--primary-1);
    color: var(--neutral-100);
    padding: 1.5rem;
    text-align: center;
}

.services-item-body {
    padding: 1.5rem;
}

.services-item-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-1);
    margin-bottom: 1rem;
}

.services-item-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-item-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--neutral-300);
}

.services-item-features li:last-child {
    border-bottom: none;
}

/* Features Section */
.features-item {
    display: flex;
    margin-bottom: 2rem;
}

.features-item-icon {
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-1-light);
    color: var(--primary-1);
    border-radius: 50%;
    margin-right: 1.5rem;
    font-size: 1.5rem;
}

.features-item-content h4 {
    margin-bottom: 0.5rem;
}

/* Price Plan Section */
.priceplan-item {
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--neutral-100);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
}

.priceplan-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.priceplan-item-header {
    padding: 2rem 1.5rem;
    background-color: var(--primary-1);
    color: var(--neutral-100);
}

.priceplan-item-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1.5rem 0;
}

.priceplan-item-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.priceplan-item-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--neutral-300);
}

/* Team Section */
.team-member {
    text-align: center;
    margin-bottom: 2rem;
}

.team-member-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 5px solid var(--primary-1-light);
}

.team-member-name {
    margin-bottom: 0.5rem;
}

.team-member-role {
    color: var(--primary-1);
    font-weight: 600;
}

/* Reviews Section */
.reviews-slider {
    padding-bottom: 3rem;
}

.reviews-item {
    background-color: var(--neutral-100);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 0.5rem;
    text-align: center;
}

.reviews-item-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.reviews-item-text:before,
.reviews-item-text:after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-1-light);
    position: absolute;
}

.reviews-item-text:before {
    top: -10px;
    left: -10px;
}

.reviews-item-text:after {
    bottom: -20px;
    right: -10px;
}

.reviews-item-author {
    font-weight: 700;
    color: var(--primary-1);
}

/* Core Info Section */
.coreinfo-item {
    text-align: center;
    margin-bottom: 2rem;
}

.coreinfo-item i {
    font-size: 2.5rem;
    color: var(--primary-1);
    margin-bottom: 1rem;
}

/* Contact Form Section */
.contact-form {
    background-color: var(--neutral-100);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-control {
    border: 1px solid var(--neutral-400);
    border-radius: 4px;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
}

.form-control:focus {
    border-color: var(--primary-1);
    box-shadow: 0 0 0 0.2rem rgba(139, 95, 191, 0.25);
}

.form-check {
    margin-bottom: 1.5rem;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.blog-item-img {
    height: 200px;
    object-fit: cover;
}

.blog-item-content {
    padding: 1.5rem;
}

/* FAQ Section */
.faq-accordion .accordion-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--neutral-300);
}

.faq-accordion .accordion-button {
    background-color: var(--neutral-200);
    color: var(--neutral-900);
    font-weight: 600;
    padding: 1.25rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: var(--primary-1);
    color: var(--neutral-100);
}

.faq-accordion .accordion-body {
    padding: 1.25rem;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Footer */
footer {
    background-color: var(--neutral-800);
    color: var(--neutral-100);
    padding: 4rem 0 1rem;
}

footer h4 {
    color: var(--neutral-100);
    margin-bottom: 1.5rem;
    font-size: 14px;
}

footer p {
    margin-bottom: 0.5rem;
}

footer a {
    color: var(--neutral-400);
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-1-light);
    text-decoration: none;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

#site-copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--neutral-700);
}

/* Space Page */
#space {
    min-height: calc(100vh - 300px);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--neutral-200);
    padding: 5rem 0;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Shapes */
.shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.shape-divider.top {
    top: 0;
    bottom: auto;
    transform: rotate(180deg);
}

.bg-blob {
    position: absolute;
    opacity: 0.1;
    z-index: 0;
}

.blob-1 {
    top: 10%;
    right: 10%;
    width: 300px;
    height: 300px;
    background-color: var(--primary-1);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: blob-animation 20s infinite alternate;
}

.blob-2 {
    bottom: 10%;
    left: 10%;
    width: 250px;
    height: 250px;
    background-color: var(--primary-2);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: blob-animation 20s infinite alternate-reverse;
}

@keyframes blob-animation {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
    25% {
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    }
    50% {
        border-radius: 30% 70% 70% 30% / 50% 60% 30% 60%;
    }
    75% {
        border-radius: 50% 50% 20% 80% / 25% 80% 20% 75%;
    }
    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
} 