/* CSS Variables - Harmonious Pastel Palette */
:root {
    /* Primary Colors */
    --primary-coral: #FF9F8E;
    --primary-sage: #A8DADC;
    --primary-lavender: #C8A8E9;
    --primary-peach: #FFD3A5;
    --primary-mint: #B8E6B8;
    
    /* Light Shades */
    --light-coral: #FFE4E1;
    --light-sage: #E8F4F8;
    --light-lavender: #F0E8FF;
    --light-peach: #FFF5E6;
    --light-mint: #F0FFF0;
    
    /* Dark Shades */
    --dark-coral: #D2725C;
    --dark-sage: #457B9D;
    --dark-lavender: #7209B7;
    --dark-peach: #E8B86D;
    --dark-mint: #6A994E;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #FEFEFE;
    --light-gray: #F8F9FA;
    --gray: #6C757D;
    --dark-gray: #343A40;
    --black: #000000;
    
    /* Typography */
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-padding: 1.5rem;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
overflow-x: hidden;
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; color: var(--dark-coral); }
h2 { font-size: 2.8rem; color: var(--dark-sage); }
h3 { font-size: 2.2rem; color: var(--dark-lavender); }
h4 { font-size: 1.8rem; color: var(--dark-peach); }
h5 { font-size: 1.4rem; color: var(--dark-mint); }
h6 { font-size: 1.2rem; color: var(--gray); }

p {
    margin-bottom: 1rem;
    color: var(--gray);
}

img {
    max-width: 100%;
    height: auto;
}

/* Breadcrumb */
.breadcrumb-nav {
    background: var(--light-sage);
    padding: 0.5rem 0;
}

.breadcrumb-icon {
    width: 24px;
    height: 24px;
    opacity: 0.7;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-coral) !important;
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: var(--dark-gray) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-coral) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-coral);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--light-coral) 0%, var(--light-sage) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-images {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-img {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Decorative Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.shape-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-lavender);
    top: 10%;
    right: 10%;
    animation-delay: -2s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--primary-mint);
    bottom: 20%;
    left: 15%;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Section Styling */
section {
    padding: var(--section-padding);
}

.page-section:nth-child(even) {
    background: var(--light-gray);
}

/* About Section */
.about-section {
    background: var(--light-mint);
}

.about-feature {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
    height: 100%;
}

.about-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.about-feature i {
    font-size: 3rem;
    color: var(--primary-sage);
    margin-bottom: 1.5rem;
}

.about-images {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.about-img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Services Section */
.services-section {
    background: var(--light-lavender);
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0,0,0,0.1);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-coral), var(--primary-sage));
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.service-card .price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-coral);
    margin-top: 1rem;
}

/* Features Section */
.features-section {
    background: var(--light-peach);
}

.feature-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-peach);
    margin-bottom: 1.5rem;
}

.features-images {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.feature-img {
    width: 250px;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Price Plan Section */
.priceplan-section {
    background: var(--light-coral);
}

.price-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0,0,0,0.1);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.price-card.featured {
    transform: scale(1.05);
    border: 3px solid var(--primary-coral);
}

.price-card:hover {
    transform: translateY(-10px);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.price-card ul {
    list-style: none;
    margin: 2rem 0;
}

.price-card ul li {
    padding: 0.5rem 0;
    color: var(--gray);
}

.price-card ul li::before {
    content: '✓';
    color: var(--primary-mint);
    font-weight: bold;
    margin-right: 0.5rem;
}

.price-value {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-coral);
    margin-top: 1.5rem;
}

/* Team Section */
.team-section {
    background: var(--light-sage);
}

.team-member {
    text-align: center;
    background: var(--white);
    padding: 2rem 1rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid var(--primary-sage);
}

/* Reviews Section */
.reviews-section {
    background: var(--light-mint);
}

.reviewsSwiper {
    padding: 2rem 0;
}

.review-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.1);
    text-align: center;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.swiper-pagination-bullet {
    background: var(--primary-coral);
}

/* Core Info Section */
.coreinfo-section {
    background: var(--light-lavender);
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--primary-lavender);
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
    background: var(--light-peach);
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.form-control, .form-select {
    border-radius: 12px;
    border: 2px solid #E9ECEF;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-coral);
    box-shadow: 0 0 0 0.2rem rgba(255, 159, 142, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-coral), var(--primary-sage));
    border: none;
    border-radius: 12px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Blog Section */
.blog-section {
    background: var(--light-mint);
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.1);
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card h4,
.blog-card p,
.blog-card a {
    padding: 0 1.5rem;
}

.blog-card h4 {
    margin-top: 1.5rem;
}

.blog-card a {
    display: inline-block;
    color: var(--primary-coral);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.blog-card a:hover {
    color: var(--dark-coral);
}

/* FAQ Section */
.faq-section {
    background: var(--light-coral);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
}

.accordion-button {
    background: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    color: var(--dark-gray);
}

.accordion-button:not(.collapsed) {
    background: var(--primary-coral);
    color: var(--white);
}

.accordion-body {
overflow-x: hidden;
    background: var(--light-gray);
}

/* Gallery Section */
.gallery-section {
    padding: 0;
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0 2rem;
}

.footer h5, .footer h6 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-coral);
}

.footer hr {
    border-color: var(--gray);
    margin: 2rem 0 1rem;
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-5 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Animation for reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
} 