:root {
    /* Color Palette - Pastel Colors */
    --primary-color-1: #e9c3b8; /* Soft Peach */
    --primary-color-2: #c8d6e5; /* Pastel Blue */
    --primary-color-3: #d6e2cb; /* Sage Green */
    --primary-color-4: #f0e2e6; /* Lilac */
    --primary-color-5: #f5efe0; /* Cream */
    
    /* Light and dark shades */
    --primary-color-1-light: #f2dbd3;
    --primary-color-1-dark: #c9a399;
    --primary-color-2-light: #e1e9f0;
    --primary-color-2-dark: #a6b7c9;
    --primary-color-3-light: #e8eedf;
    --primary-color-3-dark: #b5c4a8;
    --primary-color-4-light: #f8eef1;
    --primary-color-4-dark: #d3c3ca;
    --primary-color-5-light: #faf7ee;
    --primary-color-5-dark: #dcd6c4;
    
    /* Text colors */
    --text-dark: #333333;
    --text-medium: #555555;
    --text-light: #777777;
    --text-white: #ffffff;
    
    /* Background colors */
    --bg-light: #ffffff;
    --bg-off-white: #f9f9f9;
    --bg-dark: #333333;
}

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--text-dark);
}

a {
    color: var(--primary-color-2-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color-2);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color-1);
    border-color: var(--primary-color-1);
    color: var(--text-dark);
    padding: 10px 24px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-color-1-dark);
    border-color: var(--primary-color-1-dark);
    color: var(--text-white);
}

.btn-outline-primary {
    border-color: var(--primary-color-1);
    color: var(--primary-color-1-dark);
    padding: 10px 24px;
    font-weight: 500;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color-1);
    border-color: var(--primary-color-1);
    color: var(--text-dark);
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 60px;
    text-align: center;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color-1);
}

/* Header */
.navbar {
    background-color: var(--bg-light);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--text-dark);
}

.navbar-nav .nav-link {
    color: var(--text-medium);
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color-1-dark);
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    height: 700px;
}

.hero-slider .swiper-slide {
    height: 700px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-slider .swiper-slide:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 15px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    color: var(--text-white);
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease forwards;
}

.hero-content p {
    color: var(--text-white);
    font-size: 18px;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease forwards;
}

.hero-content .btn {
    animation: fadeInUp 1.4s ease forwards;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary-color-1);
    opacity: 0.5;
}

.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
}

/* About Section */
.about-section {
    background-color: var(--bg-off-white);
}

.about-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-img img {
    width: 100%;
    transition: transform 0.3s ease;
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 30px;
}

.about-feature {
    margin-top: 30px;
}

.about-feature-item {
    margin-bottom: 30px;
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.about-feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-feature-item i {
    font-size: 40px;
    color: var(--primary-color-1);
    margin-bottom: 20px;
}

.about-feature-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Services Section */
.services-section {
    background-color: var(--bg-light);
}

.service-item {
    padding: 30px;
    margin-bottom: 30px;
    background-color: var(--bg-off-white);
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    text-align: center;
    line-height: 70px;
    background-color: var(--primary-color-3-light);
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 30px;
    color: var(--primary-color-3-dark);
}

.service-item:hover .service-icon {
    background-color: var(--primary-color-1);
}

.service-item:hover .service-icon i {
    color: var(--text-white);
}

.service-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
}

.service-item p {
    margin-bottom: 20px;
    text-align: center;
}

.service-price {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color-1-dark);
    margin-bottom: 20px;
    text-align: center;
}

.service-features {
    padding-left: 0;
    list-style: none;
}

.service-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.service-features li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color-3-dark);
}

/* Features Section */
.features-section {
    background-color: var(--primary-color-5-light);
    position: relative;
    overflow: hidden;
}

.features-section:before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(201, 163, 153, 0.1);
    z-index: 0;
}

.features-section:after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(181, 196, 168, 0.1);
    z-index: 0;
}

.feature-item {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color-4-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 25px;
    color: var(--primary-color-4-dark);
}

.feature-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-item p {
    margin-bottom: 0;
}

/* Price Plan Section */
.price-plan-section {
    background-color: var(--bg-off-white);
}

.price-item {
    background-color: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.price-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.price-header {
    padding: 30px;
    background-color: var(--primary-color-2-light);
    text-align: center;
}

.price-header h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.price-header .price {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color-2-dark);
    margin-bottom: 0;
}

.price-body {
    padding: 30px;
}

.price-desc {
    margin-bottom: 20px;
    text-align: center;
}

.price-features {
    padding-left: 0;
    list-style: none;
    margin-bottom: 30px;
}

.price-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    padding-left: 25px;
}

.price-features li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--primary-color-2-dark);
}

.price-footer {
    padding: 0 30px 30px;
    text-align: center;
}

/* Team Section */
.team-section {
    background-color: var(--bg-light);
}

.team-item {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.team-img {
    position: relative;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    transition: all 0.3s ease;
}

.team-item:hover .team-img img {
    transform: scale(1.05);
}

.team-content {
    padding: 20px;
    text-align: center;
    background-color: var(--bg-light);
}

.team-content h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Reviews Section */
.reviews-section {
    background-color: var(--primary-color-3-light);
    position: relative;
    overflow: hidden;
}

.reviews-slider {
    padding-bottom: 50px;
}

.review-item {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin: 20px 15px;
    transition: all 0.3s ease;
}

.review-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.review-text {
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
}

.review-text:before {
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 20px;
    position: absolute;
    top: -10px;
    left: -15px;
    color: var(--primary-color-3);
    opacity: 0.3;
}

.review-author {
    display: flex;
    align-items: center;
}

.review-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.author-info h5 {
    font-size: 18px;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
}

.reviews-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--primary-color-3);
    opacity: 0.5;
}

.reviews-slider .swiper-pagination-bullet-active {
    opacity: 1;
}

/* Core Info Section */
.core-info-section {
    background-color: var(--bg-off-white);
}

.core-info-item {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.core-info-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.core-info-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color-1-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.core-info-icon i {
    font-size: 25px;
    color: var(--primary-color-1-dark);
}

.core-info-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.core-info-item p {
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    background-color: var(--bg-light);
}

.contact-info {
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    margin-bottom: 20px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color-4-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-info-icon i {
    font-size: 20px;
    color: var(--primary-color-4-dark);
}

.contact-info-text h5 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-info-text p {
    margin-bottom: 0;
    color: var(--text-medium);
}

.contact-form {
    background-color: var(--bg-off-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-form .form-control {
    height: 50px;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 15px;
    margin-bottom: 20px;
}

.contact-form textarea.form-control {
    height: 150px;
}

.contact-form .btn-primary {
    width: 100%;
}

/* Blog Section */
.blog-section {
    background-color: var(--bg-light);
}

.blog-item {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.blog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    transition: all 0.3s ease;
}

.blog-item:hover .blog-img img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
    background-color: var(--bg-light);
}

.blog-content h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.blog-content p {
    margin-bottom: 15px;
}

.blog-link {
    font-weight: 500;
    color: var(--primary-color-1-dark);
}

.blog-link i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.blog-link:hover i {
    margin-left: 10px;
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    padding: 60px 0 0;
    color: var(--text-white);
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-widget h4 {
    color: var(--text-white);
    font-size: 22px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-widget h4:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color-1);
}

.footer-widget p {
    margin-bottom: 30px;
}

.footer-links {
    padding-left: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: #aaa;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--primary-color-1);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    margin-bottom: 15px;
}

.footer-contact-icon {
    color: var(--primary-color-1);
    margin-right: 15px;
    font-size: 18px;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom small {
    color: #aaa;
}

/* Additional Classes for Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .navbar {
        padding: 15px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-section,
    .hero-slider .swiper-slide {
        height: 600px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .navbar {
        padding: 10px;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    .hero-section,
    .hero-slider .swiper-slide {
        height: 500px;
    }
    
    .hero-content h1 {
        font-size: 30px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .hero-section,
    .hero-slider .swiper-slide {
        height: 450px;
    }
    
    .hero-content h1 {
        font-size: 26px;
    }
}

/* Space Page */
.space-wrapper {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
} 