/* Color Palette - Harmonious Pastels */
:root {
    /* Primary Colors */
    --primary-coral: #ff6b9d;
    --primary-mint: #7fb069;
    --primary-lavender: #a8a4d9;
    --primary-peach: #ffb085;
    --primary-sage: #b4c7a9;
    
    /* Light Shades */
    --light-coral: #ffb5d0;
    --light-mint: #b3d6a6;
    --light-lavender: #d1ceec;
    --light-peach: #ffd7c2;
    --light-sage: #d7e4d0;
    
    /* Dark Shades */
    --dark-coral: #e55584;
    --dark-mint: #6a9654;
    --dark-lavender: #9691c4;
    --dark-peach: #e69970;
    --dark-sage: #9fb094;
    
    /* Neutrals */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --black: #212529;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-coral), var(--primary-lavender));
    --gradient-secondary: linear-gradient(135deg, var(--primary-mint), var(--primary-sage));
    --gradient-accent: linear-gradient(135deg, var(--primary-peach), var(--light-coral));
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
overflow-x: hidden;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    font-size: 16px;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Header & Navigation */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-coral) !important;
    text-decoration: none;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-gray) !important;
    transition: color 0.3s ease;
    margin: 0 0.5rem;
}

.nav-link:hover {
    color: var(--primary-coral) !important;
}

/* Hero Section */
.hero-section {
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../RES_images/hero-pattern.webp') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.shape-1, .shape-2 {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-mint);
    top: 10%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--primary-peach);
    bottom: 20%;
    left: 15%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Styling */
section {
    padding: 80px 0;
}

.about-section {
    background: var(--light-gray);
}

.services-section {
    background: var(--white);
}

.features-section {
    background: var(--light-sage);
}

.priceplan-section {
    background: var(--white);
}

.team-section {
    background: var(--light-lavender);
}

.reviews-section {
    background: var(--white);
}

.coreinfo-section {
    background: var(--light-mint);
}

.contact-section {
    background: var(--gradient-secondary);
    color: var(--white);
}

.blog-section {
    background: var(--white);
}

.faq-section {
    background: var(--light-gray);
}

.gallery-section {
    padding: 0;
}

/* Cards & Components */
.feature-card, .service-card, .price-card, .team-member, .review-item, .info-item, .blog-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    height: 100%;
}

.feature-card:hover, .service-card:hover, .price-card:hover, .team-member:hover, .blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card img, .feature-card img, .team-member img, .blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    display: block;
}

/* Price Cards */
.price-card.featured {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.05);
}

.price-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-coral);
    display: block;
    margin-top: 1rem;
}

.price-card.featured .price {
    color: var(--white);
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-coral);
    float: right;
}

/* Feature Items */
.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-mint);
    margin-bottom: 1rem;
}

/* Team Grid */
.col-lg-2-4 {
    flex: 0 0 auto;
    width: 20%;
}

/* Swiper Slider */
.reviews-slider {
    padding: 2rem 0;
}

.review-item {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    margin: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.swiper-pagination-bullet {
    background: var(--primary-coral);
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.contact-form .form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 157, 0.25);
    border-color: var(--primary-coral);
}

/* Buttons */
.btn {
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--gradient-accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 157, 0.3);
}

/* FAQ Accordion */
.accordion-button {
    background: var(--white);
    border: none;
    color: var(--dark-gray);
    font-weight: 600;
    padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: var(--light-coral);
    color: var(--white);
}

.accordion-body {
overflow-x: hidden;
    background: var(--light-gray);
    padding: 1.5rem;
}

/* Gallery */
.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: var(--primary-coral);
    margin-bottom: 1rem;
}

.footer a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-coral);
}

.footer hr {
    border-color: var(--medium-gray);
    margin: 2rem 0 1rem;
}

/* Breadcrumb */
.breadcrumb-section {
    padding: 150px 0 80px;
    background: var(--gradient-secondary);
    position: relative;
}

.breadcrumb-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

/* Page Sections */
.page-section {
    padding: 60px 0;
}

.page-section:nth-child(even) {
    background: var(--light-gray);
}

/* Lists */
ul {
    list-style: none;
    padding: 0;
}

ul li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-mint);
    font-weight: bold;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mt-5 { margin-top: 3rem !important; }

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
} 