/* ===== ROOT VARIABLES ===== */
:root {
    /* Primary Colors - Pastel Palette */
    --primary-color-1: #FFD1DC; /* Pastel Pink */
    --primary-color-2: #B5EAD7; /* Pastel Mint */
    --primary-color-3: #FFC8A2; /* Pastel Peach */
    --primary-color-4: #C7CEEA; /* Pastel Lavender */
    --primary-color-5: #E2F0CB; /* Pastel Lime */
    
    /* Light & Dark Shades */
    --light-color-1: #FFFFFF;
    --light-color-2: #F8F9FA;
    --dark-color-1: #343A40;
    --dark-color-2: #495057;
    
    /* Font Variables */
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Open Sans', sans-serif;
    
    /* Spacing Variables */
    --section-padding: 80px 0;
    --container-padding: 15px;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    color: var(--dark-color-1);
    overflow-x: hidden;
    background-color: var(--light-color-2);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color-1);
}

p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--dark-color-2);
}

a {
    text-decoration: none;
    color: var(--dark-color-1);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color-1);
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: var(--section-padding);
    position: relative;
}

.container {
    padding: var(--container-padding);
}

.btn {
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color-1);
    color: var(--dark-color-1);
}

.btn-primary:hover {
    background-color: var(--primary-color-3);
    color: var(--dark-color-1);
}

.btn-secondary {
    background-color: var(--primary-color-4);
    color: var(--dark-color-1);
}

.btn-secondary:hover {
    background-color: var(--primary-color-2);
    color: var(--dark-color-1);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color-3);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 18px;
    color: var(--dark-color-2);
    max-width: 700px;
    margin: 0 auto 30px;
}

/* ===== HEADER ===== */
.header {
    padding: 20px 0;
    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.sticky {
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color-1);
}

.logo:hover {
    color: var(--primary-color-1);
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.nav-menu a {
    margin-left: 25px;
    font-weight: 600;
    font-size: 16px;
    position: relative;
}

.nav-menu a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color-1);
    bottom: -5px;
    left: 0;
    transition: all 0.3s ease;
}

.nav-menu a:hover:after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--light-color-1);
    padding: 0;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-content {
    color: var(--light-color-1);
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--light-color-1);
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--light-color-1);
    animation: fadeInUp 1.2s ease;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background-color: var(--light-color-1);
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.about-content {
    padding: 30px 0;
}

.feature-item {
    margin-bottom: 30px;
    padding: 25px;
    border-radius: 10px;
    background-color: var(--light-color-2);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color-2);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color-2);
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background-color: var(--light-color-2);
}

.service-item {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: var(--light-color-1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-price {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--primary-color-2);
    color: var(--dark-color-1);
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-features {
    margin-top: 15px;
}

.service-features li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.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);
}

/* ===== FEATURES SECTION ===== */
.features-section {
    background-color: var(--primary-color-5);
    position: relative;
    overflow: hidden;
}

.features-section:before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -150px;
    right: -150px;
}

.feature-box {
    background-color: var(--light-color-1);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color-4);
    color: var(--dark-color-1);
    font-size: 30px;
    border-radius: 50%;
    margin-bottom: 20px;
}

/* ===== PRICE PLAN SECTION ===== */
.price-section {
    background-color: var(--light-color-1);
}

.price-item {
    background-color: var(--light-color-2);
    border-radius: 10px;
    padding: 40px 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.price-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.price-item.featured {
    background-color: var(--primary-color-4);
}

.price-item.featured:before {
    content: 'Popular';
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--primary-color-1);
    color: var(--dark-color-1);
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.price-name {
    font-size: 22px;
    margin-bottom: 20px;
}

.price-amount {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--primary-color-1);
}

.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;
    top: 0;
    color: var(--primary-color-3);
}

/* ===== TEAM SECTION ===== */
.team-section {
    background-color: var(--light-color-2);
}

.team-member {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    transition: all 0.5s ease;
    width: 100%;
}

.team-member:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 25px;
    text-align: center;
    background-color: var(--light-color-1);
}

.team-name {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-role {
    color: var(--dark-color-2);
    font-style: italic;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    background-color: var(--primary-color-2);
    position: relative;
    overflow: hidden;
}

.reviews-section:after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
}

.review-slider {
    padding: 30px 0;
}

.review-item {
    background-color: var(--light-color-1);
    padding: 30px;
    border-radius: 10px;
    margin: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.review-text:before {
    content: '\201C';
    font-size: 50px;
    position: absolute;
    left: 0;
    top: -20px;
    color: var(--primary-color-3);
    font-family: Georgia, serif;
}

.review-author {
    display: flex;
    align-items: center;
}

.review-author-info {
    margin-left: 15px;
}

.author-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.author-title {
    font-size: 14px;
    color: var(--dark-color-2);
}

/* ===== CORE INFO SECTION ===== */
.coreinfo-section {
    background-color: var(--light-color-1);
}

.info-box {
    margin-bottom: 30px;
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background-color: var(--light-color-2);
    border-bottom: 4px solid var(--primary-color-3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.info-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color-3);
}

.info-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background-color: var(--light-color-2);
    position: relative;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color-1);
    color: var(--dark-color-1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 20px;
}

.contact-details h5 {
    margin-bottom: 5px;
}

.contact-form {
    background-color: var(--light-color-1);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    height: 50px;
    border: 1px solid #e9e9e9;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color-3);
    box-shadow: none;
}

textarea.form-control {
    height: 150px;
    resize: none;
}

.service-checkbox {
    margin-bottom: 5px;
}

/* ===== BLOG SECTION ===== */
.blog-section {
    background-color: var(--light-color-1);
}

.blog-item {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-color: var(--light-color-1);
    transition: all 0.3s ease;
}

.blog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 25px;
}

.blog-date {
    color: var(--dark-color-2);
    font-size: 14px;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 20px;
    margin-bottom: 15px;
}

.blog-excerpt {
    margin-bottom: 20px;
}

.blog-link {
    color: var(--primary-color-3);
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: var(--primary-color-1);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark-color-1);
    padding: 60px 0 30px;
    color: var(--light-color-1);
}

.footer-about {
    margin-bottom: 30px;
}

.footer-about h3 {
    color: var(--light-color-1);
    margin-bottom: 20px;
    font-size: 24px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h4 {
    color: var(--light-color-1);
    margin-bottom: 25px;
    font-size: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-color-1);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* ===== ADDITIONAL PAGES ===== */
.page-header {
    height: 300px;
    background-color: var(--primary-color-4);
    display: flex;
    align-items: center;
    text-align: center;
    padding: 0;
}

.page-title {
    color: var(--dark-color-1);
    font-size: 40px;
    margin-bottom: 0;
}

.additional-section {
    padding: 80px 0;
}

.additional-section:nth-child(odd) {
    background-color: var(--light-color-2);
}

.additional-section:nth-child(even) {
    background-color: var(--light-color-1);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== SPACE PAGE ===== */
#space {
    height: 500px;
    background-color: var(--light-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
} 