:root {
    /* Primary color palette */
    --primary-color-1: #8B5E83; /* Muted purple */
    --primary-color-2: #C8B8A9; /* Warm beige */
    --primary-color-3: #726E60; /* Deep olive */
    --primary-color-4: #A1887F; /* Dusty rose */
    --primary-color-5: #5E6B8B; /* Slate blue */
    
    /* Light/dark shades */
    --primary-color-1-light: #A57C9E;
    --primary-color-1-dark: #6A4563;
    --primary-color-2-light: #E4D4C5;
    --primary-color-2-dark: #A99989;
    --primary-color-3-light: #8F8A7A;
    --primary-color-3-dark: #545245;
    --primary-color-4-light: #BDA49B;
    --primary-color-4-dark: #7D6960;
    --primary-color-5-light: #7A86A6;
    --primary-color-5-dark: #424B61;
    
    /* Neutral colors */
    --neutral-light: #F5F5F5;
    --neutral-medium: #E0E0E0;
    --neutral-dark: #333333;
    
    /* Font settings */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
}

/* General styles */
html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: var(--line-height-base);
    color: var(--neutral-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    margin-bottom: 1rem;
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* Custom container for better spacing */
.custom-container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1200px;
}

/* Header styles */
header {
    padding: 1.5rem 0;
    background-color: var(--neutral-light);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 0.8rem 0;
    background-color: rgba(255, 255, 255, 0.95);
}

.navbar-brand {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color-1);
}

.navbar-nav .nav-link {
    color: var(--neutral-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin: 0 0.3rem;
    position: relative;
}

.navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color-1);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover:after,
.navbar-nav .nav-link.active:after {
    width: 80%;
}

/* Hero section */
.hero-section {
    padding: 10rem 0 6rem;
    background-color: var(--primary-color-2-light);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color-1-dark);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color-3);
}

.hero-desc {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-shape {
    position: absolute;
    z-index: 1;
}

.hero-shape-1 {
    top: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    background-color: rgba(165, 124, 158, 0.1);
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
}

.hero-shape-2 {
    bottom: -150px;
    left: -100px;
    width: 400px;
    height: 400px;
    background-color: rgba(122, 134, 166, 0.1);
    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
}

/* Section styles */
.section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: var(--primary-color-1);
}

.section-subtitle {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--primary-color-3);
}

.section-desc {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About section */
.about-section {
    background-color: var(--neutral-light);
}

.about-feature {
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    background-color: #fff;
    transition: all 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.about-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color-1);
}

.about-feature-name {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color-3-dark);
}

.about-feature-desc {
    color: var(--neutral-dark);
}

/* Services section */
.services-section {
    background-color: #fff;
}

.services-item {
    margin-bottom: 30px;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
    background-color: var(--neutral-light);
    height: 100%;
}

.services-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.services-item-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color-4);
}

.services-item-name {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color-1);
}

.services-item-desc {
    margin-bottom: 1.5rem;
    color: var(--neutral-dark);
}

.services-item-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color-3-dark);
    margin-bottom: 1.5rem;
}

.services-item-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.services-item-features li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.services-item-features li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color-1);
}

/* Features section */
.features-section {
    background-color: var(--primary-color-2-light);
    position: relative;
    overflow: hidden;
}

.features-shape {
    position: absolute;
    z-index: 1;
}

.features-shape-1 {
    top: -100px;
    right: -50px;
    width: 300px;
    height: 300px;
    background-color: rgba(165, 124, 158, 0.1);
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
}

.features-item {
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.features-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.features-item-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color-5);
}

.features-item-name {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color-3-dark);
}

/* Price plan section */
.priceplan-section {
    background-color: #fff;
}

.priceplan-item {
    margin-bottom: 30px;
    padding: 3rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
    background-color: var(--neutral-light);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.priceplan-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.priceplan-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color-1), var(--primary-color-4));
}

.priceplan-item-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color-1);
}

.priceplan-item-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color-3-dark);
    margin-bottom: 1.5rem;
}

.priceplan-item-desc {
    margin-bottom: 1.5rem;
    color: var(--neutral-dark);
}

.priceplan-item-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    text-align: left;
}

.priceplan-item-features li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.priceplan-item-features li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color-1);
}

/* Team section */
.team-section {
    background-color: var(--neutral-light);
}

.team-member {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    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-member-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member-info {
    padding: 1.5rem;
    background-color: #fff;
    text-align: center;
}

.team-member-name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color-1);
}

.team-member-role {
    color: var(--primary-color-3);
    font-style: italic;
}

/* Reviews section */
.reviews-section {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.reviews-shape {
    position: absolute;
    z-index: 1;
}

.reviews-shape-1 {
    bottom: -100px;
    left: -50px;
    width: 300px;
    height: 300px;
    background-color: rgba(122, 134, 166, 0.1);
    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
}

.reviews-slider {
    position: relative;
    z-index: 2;
}

.reviews-item {
    padding: 2rem;
    border-radius: 10px;
    background-color: var(--neutral-light);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin: 1rem;
}

.reviews-item-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2rem;
}

.reviews-item-text:before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color-1-light);
    font-size: 1.5rem;
}

.reviews-item-author {
    font-weight: 700;
    color: var(--primary-color-1);
}

/* Core info section */
.coreinfo-section {
    background-color: var(--primary-color-1);
    color: #fff;
}

.coreinfo-section .section-title,
.coreinfo-section .section-subtitle,
.coreinfo-section .section-desc {
    color: #fff;
}

.coreinfo-item {
    margin-bottom: 2rem;
    text-align: center;
}

.coreinfo-item-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color-2-light);
}

.coreinfo-item-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.coreinfo-item-desc {
    color: rgba(255, 255, 255, 0.8);
}

/* Contact section */
.contact-section {
    background-color: var(--neutral-light);
}

.contact-form {
    padding: 2rem;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    border: 1px solid var(--neutral-medium);
    border-radius: 5px;
    padding: 0.8rem 1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color-1);
    box-shadow: 0 0 0 0.2rem rgba(139, 94, 131, 0.25);
}

.form-check {
    margin-bottom: 1.5rem;
}

.form-label {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Blog section */
.blog-section {
    background-color: #fff;
}

.blog-item {
    margin-bottom: 30px;
    border-radius: 10px;
    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-item-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-item-content {
    padding: 1.5rem;
    background-color: #fff;
}

.blog-item-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color-1);
}

.blog-item-excerpt {
    margin-bottom: 1.5rem;
    color: var(--neutral-dark);
}

.blog-item-link {
    color: var(--primary-color-1);
    font-weight: 500;
    position: relative;
    padding-right: 1.5rem;
}

.blog-item-link:after {
    content: '\f061';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.blog-item-link:hover {
    color: var(--primary-color-1-dark);
}

.blog-item-link:hover:after {
    right: -5px;
}

/* FAQ section */
.faq-section {
    background-color: var(--neutral-light);
}

.accordion-item {
    margin-bottom: 1rem;
    border: none;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-button {
    background-color: #fff;
    color: var(--primary-color-1);
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    padding: 1.2rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color-1-light);
    color: #fff;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    padding: 1.5rem;
    background-color: #fff;
}

/* Gallery section */
.gallery-section {
    padding: 5rem 0;
    background-color: #fff;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 94, 131, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    color: #fff;
    font-size: 2rem;
}

/* Footer styles */
footer {
    background-color: var(--primary-color-3-dark);
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-desc {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-contact {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color-1-light);
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-bottom {
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Button styles */
.btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color-1);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--primary-color-1-dark);
    color: #fff;
}

.btn-secondary {
    background-color: var(--primary-color-5);
    color: #fff;
}

.btn-secondary:hover {
    background-color: var(--primary-color-5-dark);
    color: #fff;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color-1);
    color: var(--primary-color-1);
}

.btn-outline:hover {
    background-color: var(--primary-color-1);
    color: #fff;
}

/* Utilities */
.text-primary {
    color: var(--primary-color-1) !important;
}

.bg-primary {
    background-color: var(--primary-color-1) !important;
}

.text-secondary {
    color: var(--primary-color-5) !important;
}

.bg-secondary {
    background-color: var(--primary-color-5) !important;
}

/* Space page */
#space {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--neutral-light);
} 