:root {
    /* Primary Color Palette - Harmonious Pastels */
    --primary-sage: #B8C5A6;
    --primary-coral: #F5B5A3;
    --primary-lavender: #D4C4E8;
    --primary-cream: #F7F3E8;
    --primary-soft-teal: #A8D4D5;
    
    /* Light and Dark Shades */
    --sage-light: #E5EAD9;
    --sage-dark: #9AA189;
    --coral-light: #FADACE;
    --coral-dark: #E59681;
    --lavender-light: #E9E1F2;
    --lavender-dark: #B5A1D1;
    --cream-light: #FCFAF5;
    --cream-dark: #E8E0D1;
    --teal-light: #D1E8E9;
    --teal-dark: #87BDC0;
    
    /* Typography */
    --font-family-primary: 'Inter', 'Segoe UI', sans-serif;
    --font-family-heading: 'Poppins', 'Inter', sans-serif;
    
    /* Spacing and Sizing */
    --border-radius: 12px;
    --border-radius-large: 20px;
    --box-shadow: 0 4px 20px rgba(184, 197, 166, 0.15);
    --box-shadow-hover: 0 8px 30px rgba(184, 197, 166, 0.25);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
overflow-x: hidden;
    font-family: var(--font-family-primary);
    line-height: 1.6;
    color: #333;
    background-color: var(--cream-light);
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
}

h3 {
    font-size: 2rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
    color: #555;
}

/* Header */
header {
    background: linear-gradient(135deg, var(--sage-light), var(--cream-light));
    padding: 1rem 0;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    background: transparent !important;
}

.navbar-brand {
    font-family: var(--font-family-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--sage-dark) !important;
}

.navbar-nav .nav-link {
    color: #2c3e50 !important;
    font-weight: 500;
    margin: 0 1rem;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--coral-dark) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--coral);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--sage-light) 0%, var(--lavender-light) 50%, var(--teal-light) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="30" fill="none" stroke="rgba(168,212,213,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    transform: rotate(15deg);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--sage-dark);
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* Section Styling */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--sage-dark);
    margin-bottom: 1rem;
}

.section-description {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-section {
    background: var(--cream-light);
}

.about-feature {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    border-top: 4px solid var(--coral);
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.about-feature h4 {
    color: var(--sage-dark);
    margin-bottom: 1rem;
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, var(--lavender-light), var(--cream-light));
}

.service-item {
    background: white;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--coral-light);
}

.service-image {
    height: 200px;
    background: linear-gradient(45deg, var(--teal-light), var(--sage-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--sage-dark);
}

.service-content {
    padding: 2rem;
}

.service-name {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--coral-dark);
    margin-bottom: 1rem;
}

.service-description {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-features {
    color: #555;
    font-weight: 500;
}

/* Features Section */
.features-section {
    background: var(--cream-light);
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.feature-icon {
    font-size: 3rem;
    color: var(--teal-dark);
    margin-bottom: 1.5rem;
}

/* Price Plan Section */
.priceplan-section {
    background: linear-gradient(135deg, var(--teal-light), var(--lavender-light));
}

.price-item {
    background: white;
    border-radius: var(--border-radius-large);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 3px solid transparent;
    position: relative;
    height: 100%;
}

.price-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--coral);
}

.price-item.featured {
    border-color: var(--coral);
    transform: scale(1.05);
}

.price-item.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--coral);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.price-name {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--coral-dark);
    margin-bottom: 1rem;
}

/* Team Section */
.team-section {
    background: var(--cream-light);
}

.team-member {
    text-align: center;
    background: white;
    border-radius: var(--border-radius-large);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--sage-light), var(--coral-light));
    margin: 0 auto 1.5rem;
    border: 4px solid var(--lavender-light);
}

.team-name {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.team-role {
    color: var(--sage-dark);
    font-weight: 500;
}

/* Reviews Section */
.reviews-section {
    background: linear-gradient(135deg, var(--lavender-light), var(--sage-light));
}

.review-item {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    position: relative;
    height: 100%;
}

.review-item::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--coral-light);
    line-height: 1;
}

.review-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
    padding-top: 1rem;
}

.review-author {
    font-weight: 600;
    color: var(--sage-dark);
    text-align: right;
}

/* Core Info Section */
.coreinfo-section {
    background: var(--cream-light);
}

.coreinfo-item {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    border-left: 4px solid var(--teal-dark);
}

.coreinfo-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

.coreinfo-title {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Contact Form Section */
.contact-section {
    background: linear-gradient(135deg, var(--sage-light), var(--teal-light));
}

.contact-form {
    background: white;
    border-radius: var(--border-radius-large);
    padding: 3rem;
    box-shadow: var(--box-shadow);
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    border: 2px solid var(--sage-light);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--cream-light);
}

.form-control:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 0.2rem rgba(245, 181, 163, 0.25);
    background: white;
}

.btn-primary {
    background: linear-gradient(135deg, var(--coral), var(--coral-dark));
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
    background: linear-gradient(135deg, var(--coral-dark), var(--coral));
}

/* Blog Section */
.blog-section {
    background: var(--cream-light);
}

.blog-item {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.blog-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.blog-image {
    height: 200px;
    background: linear-gradient(45deg, var(--lavender-light), var(--teal-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--sage-dark);
}

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.blog-excerpt {
    color: #666;
    margin-bottom: 1rem;
}

.blog-link {
    color: var(--coral-dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.blog-link:hover {
    color: var(--coral);
    text-decoration: underline;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, var(--lavender-light), var(--cream-light));
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: var(--border-radius) !important;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.accordion-button {
    background: white;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background: var(--sage-light);
    color: var(--sage-dark);
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
overflow-x: hidden;
    background: white;
    padding: 1.5rem;
    color: #555;
}

/* Gallery Section */
.gallery-section {
    background: var(--cream-light);
    padding: 5rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    height: 250px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    background: linear-gradient(45deg, var(--sage-light), var(--coral-light), var(--lavender-light));
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--box-shadow-hover);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--sage-dark), #2c3e50);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--coral-light);
    margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--coral-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: #999;
}

/* Swiper Styles */
.swiper {
    width: 100%;
    padding-bottom: 3rem;
}

.swiper-slide {
    height: auto;
}

.swiper-pagination-bullet {
    background: var(--coral);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

/* Decorative Shapes */
.shape-blob {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--coral-light), var(--lavender-light));
    opacity: 0.1;
    z-index: 1;
}

.shape-blob-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.shape-blob-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .price-item.featured {
        transform: none;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .shape-blob-1, .shape-blob-2 {
        animation: none;
    }
} 