:root {
    --primary-color-1: #8E4A49; /* Rust red */
    --primary-color-2: #C38B72; /* Muted terracotta */
    --primary-color-3: #D8C99B; /* Soft gold */
    --primary-color-4: #4F6D7A; /* Slate blue */
    --primary-color-5: #5C4742; /* Deep brown */
    
    --light-1: #FAF7F2;
    --light-2: #F5F1E9;
    --dark-1: #2B2522;
    --dark-2: #433B38;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-1);
    background-color: var(--light-1);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    margin-bottom: 50px;
    text-align: center;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color-1);
}

.section-title h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--primary-color-4);
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--dark-2);
}

.btn-custom {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color-1);
    color: white;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: var(--primary-color-5);
    color: white;
    transform: translateY(-3px);
}

.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.3s ease;
}

.header.scrolled {
    padding: 15px 0;
    background-color: white;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color-1);
}

.nav-link {
    font-weight: 500;
    color: var(--dark-1);
    margin: 0 10px;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color-1);
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: var(--light-2);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-shape {
    position: absolute;
    opacity: 0.1;
    z-index: 1;
}

.shape-1 {
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background-color: var(--primary-color-3);
    border-radius: 50%;
}

.shape-2 {
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background-color: var(--primary-color-2);
    border-radius: 50%;
}

.about-feature {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    background-color: white;
    transition: all 0.3s ease;
    height: 100%;
}

.about-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature i {
    font-size: 3rem;
    color: var(--primary-color-1);
    margin-bottom: 20px;
}

.service-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    background-color: white;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-card-content {
    padding: 30px;
}

.service-price {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--primary-color-3);
    border-radius: 20px;
    font-weight: 700;
    color: var(--dark-1);
}

.feature-box {
    text-align: center;
    padding: 40px 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-box i {
    font-size: 3rem;
    color: var(--primary-color-1);
    margin-bottom: 20px;
}

.price-card {
    border-radius: 10px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-header {
    padding: 30px;
    background-color: var(--primary-color-4);
    color: white;
    text-align: center;
}

.price-body {
    padding: 30px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 20px 0;
}

.price-features {
    margin-bottom: 30px;
}

.price-features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.price-features li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color-1);
}

.team-member {
    text-align: center;
    margin-bottom: 30px;
}

.team-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-details h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

.team-details p {
    color: var(--primary-color-4);
}

.swiper {
    width: 100%;
    height: 100%;
    padding: 30px 0;
}

.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text:before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 2rem;
    color: var(--primary-color-3);
    opacity: 0.2;
}

.testimonial-author {
    font-weight: 600;
}

.core-info-item {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
}

.core-info-item i {
    font-size: 3rem;
    color: var(--primary-color-1);
    margin-bottom: 20px;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
}

.form-check {
    margin-bottom: 20px;
}

.blog-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    background-color: white;
    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-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 30px;
}

.blog-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.blog-excerpt {
    margin-bottom: 20px;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    border: none;
}

.accordion-button {
    background-color: var(--light-2);
    color: var(--dark-1);
    padding: 20px;
    font-weight: 600;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color-4);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 20px;
    background-color: white;
}

.gallery-item {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

footer {
    background-color: var(--dark-1);
    color: white;
    padding: 70px 0 20px;
}

footer h4 {
    color: var(--primary-color-3);
    margin-bottom: 20px;
    font-weight: 600;
}

footer p, footer a {
    color: rgba(255, 255, 255, 0.7);
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a:hover {
    color: var(--primary-color-3);
}

#site-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    display: block;
    color: rgba(255, 255, 255, 0.5);
}

/* Space page style */
#space {
    height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
} 