/* ====================================
   CSS VARIABLES (COLOR PALETTE)
==================================== */
:root {
    /* Primary Colors */
    --primary-peach: #FFB4A3;
    --primary-sage: #A8D8B9;
    --primary-lavender: #B4A7D6;
    --primary-butter: #F7E7A3;
    --primary-blush: #FFD6E8;
    
    /* Light Shades */
    --light-peach: #FFE8E3;
    --light-sage: #E8F4ED;
    --light-lavender: #E8E5F2;
    --light-butter: #FDF9E3;
    --light-blush: #FFF2F8;
    
    /* Dark Shades */
    --dark-peach: #E89B88;
    --dark-sage: #8FC49F;
    --dark-lavender: #9B8EBD;
    --dark-butter: #E6D088;
    --dark-blush: #F2BDCF;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --black: #2C2C2C;
    --gray-light: #F8F9FA;
    --gray-medium: #6C757D;
    --gray-dark: #495057;
    
    /* Shadows & Effects */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ====================================
   GLOBAL STYLES
==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
overflow-x: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
}

/* ====================================
   TYPOGRAPHY
==================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.3rem; }
h6 { font-size: 1.1rem; }

p {
    margin-bottom: 1rem;
    color: var(--gray-dark);
}

.subtitle {
    color: var(--primary-sage);
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.description {
    color: var(--gray-medium);
    font-size: 1rem;
    line-height: 1.7;
}

/* ====================================
   HEADER & NAVIGATION
==================================== */
.header {
    background: var(--white);
    box-shadow: var(--shadow-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-medium);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-sage) !important;
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: var(--black) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition-fast);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-sage) !important;
}

.navbar-nav .nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--primary-sage);
    transition: var(--transition-fast);
}

/* ====================================
   BREADCRUMB
==================================== */
.breadcrumb-section {
    margin-top: 80px;
    padding: 2rem 0;
    background: var(--light-sage);
}

.breadcrumb-image {
    text-align: center;
}

.breadcrumb-image img {
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

/* ====================================
   HERO SECTION
==================================== */
.hero-section {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--light-peach) 0%, var(--light-lavender) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    padding: 3rem 0;
    position: relative;
    z-index: 2;
}

.hero-title {
    color: var(--dark-sage);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle {
    color: var(--primary-lavender);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero-description {
    color: var(--gray-dark);
    font-size: 1.1rem;
    line-height: 1.8;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.shape-1 {
    position: absolute;
    top: 20%;
    left: -5%;
    width: 200px;
    height: 200px;
    background: var(--primary-butter);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    position: absolute;
    bottom: 20%;
    right: -5%;
    width: 150px;
    height: 150px;
    background: var(--primary-blush);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.3;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    width: 100%;
    height: auto;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

/* ====================================
   SECTIONS
==================================== */
.about-section,
.services-section,
.features-section,
.priceplan-section,
.team-section,
.reviews-section,
.coreinfo-section,
.contact-section,
.blog-section,
.faq-section,
.page-section {
    padding: 5rem 0;
}

.about-section {
    background: var(--white);
}

.services-section {
    background: var(--light-butter);
}

.features-section {
    background: var(--white);
}

.priceplan-section {
    background: var(--light-blush);
}

.team-section {
    background: var(--white);
}

.reviews-section {
    background: var(--light-sage);
}

.coreinfo-section {
    background: var(--white);
}

.contact-section {
    background: var(--light-lavender);
}

.blog-section {
    background: var(--white);
}

.faq-section {
    background: var(--light-peach);
}

/* ====================================
   ABOUT FEATURES
==================================== */
.about-feature {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
    height: 100%;
}

.about-feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
}

/* ====================================
   SERVICE CARDS
==================================== */
.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.3rem 0;
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.service-features li:before {
    content: '✓';
    color: var(--primary-sage);
    font-weight: bold;
    margin-right: 0.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-peach);
    text-align: center;
    margin-top: 1rem;
}

/* ====================================
   FEATURE ITEMS
==================================== */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-sage);
    border-radius: 15px;
    margin-bottom: 1rem;
    transition: var(--transition-medium);
}

.feature-item:hover {
    background: var(--primary-sage);
    color: var(--white);
}

.feature-item .feature-icon {
    margin: 0;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

/* ====================================
   PRICE CARDS
==================================== */
.price-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
    height: 100%;
    border: 3px solid transparent;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.price-card.featured {
    border-color: var(--primary-sage);
    transform: scale(1.05);
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.price-card ul li {
    padding: 0.5rem 0;
    color: var(--gray-medium);
}

.price-card ul li:before {
    content: '✓';
    color: var(--primary-sage);
    font-weight: bold;
    margin-right: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-peach);
    margin-top: 2rem;
}

/* ====================================
   TEAM SECTION
==================================== */
.team-member {
    text-align: center;
    background: var(--light-peach);
    border-radius: 20px;
    padding: 2rem 1rem;
    transition: var(--transition-medium);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-light);
}

.team-member h5 {
    color: var(--dark-sage);
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

/* ====================================
   REVIEWS SWIPER
==================================== */
.reviews-swiper {
    padding: 2rem 0;
}

.review-item {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    margin: 0 1rem;
}

.review-item p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.review-item h5 {
    color: var(--primary-sage);
    font-weight: 600;
}

.swiper-pagination-bullet {
    background: var(--primary-sage);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--dark-sage);
}

/* ====================================
   INFO ITEMS
==================================== */
.info-item {
    background: var(--light-lavender);
    border-radius: 15px;
    padding: 2rem;
    transition: var(--transition-medium);
    height: 100%;
}

.info-item:hover {
    background: var(--primary-lavender);
    color: var(--white);
}

.info-item h5 {
    color: var(--dark-lavender);
    margin-bottom: 1rem;
}

.info-item:hover h5 {
    color: var(--white);
}

/* ====================================
   CONTACT FORM
==================================== */
.contact-form {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-medium);
}

.form-control,
.form-select {
    border: 2px solid var(--light-sage);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--gray-light);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-sage);
    box-shadow: 0 0 0 0.2rem rgba(168, 216, 185, 0.25);
    background: var(--white);
}

.btn-primary {
    background: var(--primary-sage);
    border: 2px solid var(--primary-sage);
    border-radius: 10px;
    padding: 0.8rem 2.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.btn-primary:hover {
    background: var(--dark-sage);
    border-color: var(--dark-sage);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* ====================================
   BLOG POSTS
==================================== */
.blog-post {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
    height: 100%;
}

.blog-post:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.blog-post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
}

.blog-content h4 {
    color: var(--dark-sage);
    margin-bottom: 1rem;
}

.blog-content a {
    color: var(--primary-sage);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.blog-content a:hover {
    color: var(--dark-sage);
    text-decoration: underline;
}

/* ====================================
   FAQ ACCORDION
==================================== */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.accordion-button {
    background: var(--white);
    border: none;
    color: var(--dark-sage);
    font-weight: 600;
    padding: 1.5rem;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-peach);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
overflow-x: hidden;
    background: var(--light-peach);
    padding: 1.5rem;
    color: var(--gray-dark);
    line-height: 1.7;
}

/* ====================================
   GALLERY
==================================== */
.gallery-section {
    padding: 0;
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-medium);
    cursor: pointer;
}

.gallery-image:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* ====================================
   ELEMENT ITEMS (Additional Pages)
==================================== */
.element-item {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
    height: 100%;
    border-left: 4px solid var(--primary-sage);
}

.element-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
    border-left-color: var(--dark-sage);
}

.element-item h5 {
    color: var(--dark-sage);
    margin-bottom: 1rem;
}

/* ====================================
   FOOTER
==================================== */
.footer {
    background: var(--dark-sage);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer h5, .footer h6 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1rem;
}

#site-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ====================================
   UTILITY CLASSES
==================================== */
.text-primary { color: var(--primary-sage) !important; }
.bg-primary { background-color: var(--primary-sage) !important; }

.rounded-xl { border-radius: 20px; }
.shadow-custom { box-shadow: var(--shadow-medium); }

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
} 