:root {
    /* Color Palette - 5 primary colors with light/dark variations */
    --primary-color-1: #F09D51; /* Vibrant amber/orange */
    --primary-color-1-light: #F7BF83;
    --primary-color-1-dark: #D87F2A;
    
    --primary-color-2: #4A6FA5; /* Deep blue */
    --primary-color-2-light: #7D9BC5;
    --primary-color-2-dark: #2A4F85;
    
    --primary-color-3: #38B09D; /* Teal */
    --primary-color-3-light: #69D2C2;
    --primary-color-3-dark: #258F7F;
    
    --primary-color-4: #CE6D8B; /* Muted rose */
    --primary-color-4-light: #E09AB0;
    --primary-color-4-dark: #AB4766;
    
    --primary-color-5: #564256; /* Deep purple */
    --primary-color-5-light: #7D6A7D;
    --primary-color-5-dark: #3A2C3A;
    
    /* Neutral colors */
    --neutral-100: #ffffff;
    --neutral-200: #f8f9fa;
    --neutral-300: #e9ecef;
    --neutral-400: #dee2e6;
    --neutral-500: #adb5bd;
    --neutral-600: #6c757d;
    --neutral-700: #495057;
    --neutral-800: #343a40;
    --neutral-900: #212529;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--neutral-800);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

/* Header */
header {
    background-color: var(--neutral-100);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

/* Sections */
section {
    padding: 5rem 0;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--neutral-200);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* About Section */
.about-section {
    background-color: var(--neutral-100);
}

.about-feature {
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Services Section */
.services-section {
    background-color: var(--neutral-200);
}

.service-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    background-color: var(--neutral-100);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-img {
    height: 200px;
    object-fit: cover;
}

.service-price {
    display: inline-block;
    background-color: var(--primary-color-1);
    color: var(--neutral-100);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-weight: 700;
}

.service-features {
    list-style-type: none;
    padding-left: 0;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--neutral-300);
}

.service-features li:last-child {
    border-bottom: none;
}

/* Features Section */
.features-section {
    background-color: var(--primary-color-2-light);
    color: var(--neutral-100);
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color-1);
}

/* Price Plan Section */
.priceplan-section {
    background-color: var(--neutral-100);
}

.price-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: var(--primary-color-3);
}

.price-header {
    background-color: var(--primary-color-3);
    color: var(--neutral-100);
    padding: 2rem;
    text-align: center;
}

.price-features {
    list-style-type: none;
    padding: 2rem;
}

.price-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.price-features li i {
    color: var(--primary-color-3);
    margin-right: 0.5rem;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0;
}

/* Team Section */
.team-section {
    background-color: var(--neutral-200);
}

.team-member {
    text-align: center;
    margin-bottom: 2rem;
}

.team-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 5px solid var(--primary-color-4-light);
}

.team-role {
    color: var(--primary-color-4);
    font-weight: 600;
}

/* Reviews Section */
.reviews-section {
    background-color: var(--primary-color-5-light);
    color: var(--neutral-100);
}

.review-item {
    background-color: var(--neutral-100);
    border-radius: 10px;
    padding: 2rem;
    color: var(--neutral-800);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.review-author {
    font-weight: 700;
    margin-top: 1rem;
    color: var(--primary-color-4);
}

/* Core Info Section */
.coreinfo-section {
    background-color: var(--neutral-100);
}

.coreinfo-item {
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    border-top: 5px solid var(--primary-color-3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coreinfo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.coreinfo-icon {
    font-size: 2.5rem;
    color: var(--primary-color-3);
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    background-color: var(--neutral-200);
}

.contact-form {
    background-color: var(--neutral-100);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-control {
    border-radius: 5px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
}

.btn-submit {
    background-color: var(--primary-color-1);
    border-color: var(--primary-color-1);
    padding: 0.75rem 2rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--primary-color-1-dark);
    border-color: var(--primary-color-1-dark);
}

/* Blog Section */
.blog-section {
    background-color: var(--neutral-100);
}

.blog-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    background-color: var(--neutral-100);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.blog-img {
    height: 200px;
    object-fit: cover;
}

/* FAQ Section */
.faq-section {
    background-color: var(--neutral-200);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-button {
    background-color: var(--neutral-100);
    font-weight: 600;
    padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color-2-light);
    color: var(--neutral-100);
}

/* Gallery Section */
.gallery-section {
    background-color: var(--neutral-100);
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.gallery-img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: var(--primary-color-5);
    color: var(--neutral-100);
    padding: 3rem 0 1rem;
}

.footer-heading {
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links {
    list-style-type: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--neutral-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color-1);
}

/* Copyright Section */
#site-copyright {
    display: block;
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Shape Elements */
.shape {
    position: absolute;
    z-index: 0;
}

.shape-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: var(--primary-color-1-light);
    opacity: 0.2;
    top: -100px;
    right: -100px;
}

.shape-square {
    width: 200px;
    height: 200px;
    background-color: var(--primary-color-3-light);
    opacity: 0.2;
    bottom: -50px;
    left: -50px;
    transform: rotate(45deg);
}

.shape-blob {
    width: 400px;
    height: 400px;
    background-color: var(--primary-color-4-light);
    opacity: 0.1;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: blob-animation 20s infinite alternate;
}

@keyframes blob-animation {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

/* Helper Classes */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color-1);
    bottom: -5px;
    left: 0;
}

.center-line::after {
    left: 50%;
    transform: translateX(-50%);
}

.text-white .section-title::after {
    background-color: var(--neutral-100);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.breadcrumb-section {
    background-color: var(--neutral-300);
    padding: 1rem 0;
}

/* Additional Pages Styles */
.add-page-section {
    padding: 5rem 0;
}

.add-page-section:nth-child(odd) {
    background-color: var(--neutral-200);
}

.add-page-section:nth-child(even) {
    background-color: var(--neutral-100);
} 