:root {
    /* Color Palette - Pastel Tones */
    --primary-1: #e9c7b7; /* Soft Peach */
    --primary-2: #b8d8ba; /* Sage Green */
    --primary-3: #a8aec1; /* Dusty Blue */
    --primary-4: #f5e6c0; /* Cream */
    --primary-5: #ddb6c6; /* Muted Rose */
    
    /* Light and Dark Variations */
    --primary-1-light: #f5e3db;
    --primary-1-dark: #b69585;
    --primary-2-light: #d5ead6;
    --primary-2-dark: #8da88f;
    --primary-3-light: #d0d4e0;
    --primary-3-dark: #7a7f98;
    --primary-4-light: #faf3e0;
    --primary-4-dark: #c5b890;
    --primary-5-light: #f0d6e2;
    --primary-5-dark: #ad8a9d;
    
    /* Text Colors */
    --text-dark: #333333;
    --text-medium: #666666;
    --text-light: #999999;
    
    /* Base Font */
    --font-family: 'Poppins', sans-serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-3-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-3);
}

/* Layout Components */
.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--primary-1);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

header .navbar {
    padding: 20px 0;
    transition: all 0.4s ease;
}

header .navbar-brand {
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-3-dark);
}

header .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 15px;
    position: relative;
}

header .nav-link:hover {
    color: var(--primary-1-dark);
}

header .nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-1);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

header .nav-link:hover:after {
    width: 60%;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--primary-4-light);
}

.hero-content {
    position: relative;
    z-index: 5;
    padding: 0 15px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.swiper-slide {
    position: relative;
}

.hero-slide-inner {
    padding: 100px 0;
    color: #fff;
    position: relative;
    z-index: 2;
}

/* About Section */
.about-section {
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.about-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-img img {
    width: 100%;
    height: auto;
}

.about-img::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.1);
}

.about-feature {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    background-color: #fff;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-2);
}

.about-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature h4 {
    margin-bottom: 15px;
    color: var(--primary-3-dark);
}

/* Services Section */
.services-section {
    position: relative;
    background-color: var(--primary-4-light);
    padding: 100px 0;
}

.service-item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    margin-bottom: 30px;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-item-img {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.service-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-item:hover .service-item-img img {
    transform: scale(1.1);
}

.service-item-content {
    padding: 30px;
}

.service-item h4 {
    margin-bottom: 15px;
    color: var(--primary-1-dark);
}

.service-item-price {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-2-light);
    color: var(--primary-2-dark);
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-item-features {
    list-style-type: none;
    padding-left: 0;
    margin-top: 20px;
}

.service-item-features li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    position: relative;
    padding-left: 20px;
}

.service-item-features li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-2);
    margin-right: 10px;
    position: absolute;
    left: 0;
}

/* Features Section */
.features-section {
    position: relative;
    padding: 100px 0;
    background-color: #fff;
}

.feature-item {
    text-align: center;
    padding: 40px 30px;
    border-radius: 10px;
    transition: all 0.4s ease;
    margin-bottom: 30px;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    background-color: var(--primary-3-light);
    transform: translateY(-10px);
}

.feature-icon {
    margin-bottom: 20px;
    color: var(--primary-3);
    font-size: 2.5rem;
}

.feature-item h4 {
    margin-bottom: 15px;
    color: var(--primary-3-dark);
}

/* Price Plan Section */
.price-plan-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--primary-2-light);
}

.price-plan-item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    margin-bottom: 30px;
    text-align: center;
    border-top: 5px solid var(--primary-1);
}

.price-plan-item.featured {
    border-top-color: var(--primary-3);
    transform: scale(1.05);
}

.price-plan-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.price-plan-item.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.price-plan-item h4 {
    margin-bottom: 20px;
    color: var(--primary-1-dark);
}

.price-plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-3-dark);
    margin-bottom: 20px;
}

.price-plan-features {
    list-style-type: none;
    padding-left: 0;
    margin: 30px 0;
    text-align: left;
}

.price-plan-features li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    position: relative;
    padding-left: 25px;
}

.price-plan-features li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-2);
    position: absolute;
    left: 0;
}

/* Team Section */
.team-section {
    position: relative;
    padding: 100px 0;
    background-color: #fff;
}

.team-member {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    margin-bottom: 30px;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-member-img {
    position: relative;
    overflow: hidden;
}

.team-member-img img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.team-member:hover .team-member-img img {
    transform: scale(1.1);
}

.team-member-info {
    padding: 30px;
    text-align: center;
}

.team-member-info h4 {
    margin-bottom: 5px;
    color: var(--primary-3-dark);
}

.team-member-role {
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: 15px;
}

/* Reviews Section */
.reviews-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--primary-3-light);
}

.review-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    margin: 15px;
}

.review-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.review-text {
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.review-text:before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-1-light);
    position: absolute;
    top: -15px;
    left: 0;
    font-family: serif;
}

.review-author {
    font-weight: 600;
    color: var(--primary-3-dark);
}

/* Core Info Section */
.core-info-section {
    position: relative;
    padding: 100px 0;
    background-color: #fff;
}

.core-info-item {
    background-color: var(--primary-1-light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    border-bottom: 3px solid var(--primary-1);
}

.core-info-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.core-info-item:nth-child(2n) {
    background-color: var(--primary-2-light);
    border-bottom-color: var(--primary-2);
}

.core-info-item:nth-child(3n) {
    background-color: var(--primary-3-light);
    border-bottom-color: var(--primary-3);
}

.core-info-item h4 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

/* Contact Section */
.contact-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--primary-4-light);
}

.contact-form {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    height: 50px;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-1);
    box-shadow: 0 0 5px rgba(233, 199, 183, 0.5);
}

textarea.form-control {
    height: 150px;
    resize: none;
}

.contact-info {
    background-color: var(--primary-3-light);
    border-radius: 10px;
    padding: 40px;
    height: 100%;
}

.contact-info h4 {
    margin-bottom: 30px;
    color: var(--primary-3-dark);
}

.contact-item {
    display: flex;
    margin-bottom: 20px;
}

.contact-icon {
    margin-right: 15px;
    color: var(--primary-3);
    font-size: 1.2rem;
}

.btn-primary {
    padding: 12px 30px;
    background-color: var(--primary-1);
    border: none;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--primary-1-dark);
}

/* Footer */
footer {
    background-color: var(--primary-3-dark);
    color: #fff;
    padding: 60px 0 30px;
}

.footer-title {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-links {
    list-style-type: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.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-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 60px;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Blog Section */
.blog-section {
    position: relative;
    padding: 100px 0;
    background-color: #fff;
}

.blog-item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    margin-bottom: 30px;
}

.blog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-img {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-item:hover .blog-img img {
    transform: scale(1.1);
}

.blog-content {
    padding: 30px;
}

.blog-title {
    margin-bottom: 15px;
    font-size: 1rem;
}

.blog-excerpt {
    color: var(--text-medium);
    margin-bottom: 20px;
}

.blog-link {
    display: inline-block;
    color: var(--primary-1-dark);
    font-weight: 600;
}

.blog-link:hover {
    color: var(--primary-1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUp {
    animation-name: fadeInUp;
}

/* Space Template */
#space {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-4-light);
}

/* Additional Pages */
.add-page-section {
    padding: 100px 0;
    position: relative;
}

.add-page-section:nth-child(odd) {
    background-color: #fff;
}

.add-page-section:nth-child(even) {
    background-color: var(--primary-4-light);
}

.add-page-element {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-1);
}

.add-page-element:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.add-page-element:nth-child(2n) {
    border-left-color: var(--primary-2);
}

.add-page-element:nth-child(3n) {
    border-left-color: var(--primary-3);
}

.add-page-element:nth-child(4n) {
    border-left-color: var(--primary-4);
}

.add-page-element:nth-child(5n) {
    border-left-color: var(--primary-5);
}

/* Page Banner */
.page-banner {
    padding: 120px 0 80px;
    text-align: center;
    background-position: center;
    background-size: cover;
    position: relative;
}

.page-banner-content h1 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.page-banner-content p {
    color: var(--text-medium);
    font-size: 1.2rem;
}

/* Map Section */
.map-section {
    position: relative;
}

.map-container {
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.map-info-box {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-1-dark);
    color: #fff;
} 