/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Color Palette */
    --primary-color: #7c9885;
    --secondary-color: #a8c0a3;
    --accent-color: #f4a261;
    --tertiary-color: #e9c46a;
    --quaternary-color: #e76f51;
    
    /* Light/Dark Shades */
    --primary-light: #b3d4be;
    --primary-dark: #5a6f60;
    --secondary-light: #d1e4cd;
    --secondary-dark: #7a8c78;
    --accent-light: #f7c494;
    --accent-dark: #e6823b;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --black: #212529;
    
    /* Typography */
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --base-font-size: 16px;
    --line-height: 1.6;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-max-width: 1200px;
    
    /* Shadows */
    --box-shadow: 0 5px 15px rgba(124, 152, 133, 0.1);
    --card-shadow: 0 8px 25px rgba(124, 152, 133, 0.15);
    
    /* Border Radius */
    --border-radius: 8px;
    --border-radius-lg: 15px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
overflow-x: hidden;
    font-family: var(--font-family);
    font-size: var(--base-font-size);
    line-height: var(--line-height);
    color: var(--dark-gray);
    background-color: var(--white);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--primary-dark);
    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);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* ===== HEADER ===== */
.header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: var(--box-shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white) !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white) !important;
}

.navbar-toggler {
    border: 2px solid var(--white);
    color: var(--white);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== BREADCRUMB ===== */
.breadcrumb-nav {
    background-color: var(--light-gray);
    padding: 1rem 0;
    margin-top: 80px;
}

.breadcrumb {
    background: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-image {
    max-width: 24px;
    height: auto;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    padding: 100px 0;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.shape-1 {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: var(--tertiary-color);
    border-radius: 50%;
    opacity: 0.2;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-title {
    color: var(--primary-dark);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    color: var(--secondary-dark);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

/* ===== SECTIONS ===== */
section {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--light-gray) !important;
}

/* ===== CARDS ===== */
.feature-card,
.service-card,
.info-card,
.team-member,
.review-card,
.price-card,
.blog-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(124, 152, 133, 0.1);
}

.feature-card:hover,
.service-card:hover,
.info-card:hover,
.team-member:hover,
.price-card:hover,
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(124, 152, 133, 0.2);
}

.feature-card i,
.info-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ===== SERVICE CARDS ===== */
.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

.service-content h4 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-content ul li {
    padding: 0.25rem 0;
    color: var(--gray);
    position: relative;
    padding-left: 1.5rem;
}

.service-content ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin-top: 1rem;
}

/* ===== FEATURES SECTION ===== */
.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* ===== PRICE PLANS ===== */
.price-card {
    text-align: center;
    position: relative;
}

.price-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.price-card.featured:before {
    content: 'Most Popular';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 600;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.price-card ul {
    list-style: none;
    padding: 0;
}

.price-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
}

/* ===== TEAM SECTION ===== */
.col-lg-2-4 {
    flex: 0 0 20%;
    max-width: 20%;
}

@media (max-width: 991px) {
    .col-lg-2-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 575px) {
    .col-lg-2-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    display: block;
    border: 4px solid var(--primary-light);
}

.team-member {
    text-align: center;
}

.team-member h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--secondary-color);
    font-style: italic;
}

/* ===== REVIEWS SECTION ===== */
.reviews-swiper {
    padding: 2rem 0 3rem;
}

.review-card {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    border: none;
}

.review-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.review-card h5 {
    color: var(--primary-dark);
    font-weight: 600;
}

.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    background-color: var(--primary-color);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--primary-dark);
}

/* ===== BLOG SECTION ===== */
.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.blog-content h4 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.blog-content a {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
}

.blog-content a:hover {
    color: var(--accent-dark);
}

/* ===== FAQ SECTION ===== */
.accordion-button {
    background-color: var(--light-gray);
    border: none;
    color: var(--primary-dark);
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(124, 152, 133, 0.25);
}

.accordion-item {
    border: 1px solid rgba(124, 152, 133, 0.2);
    border-radius: var(--border-radius);
    margin-bottom: 0.5rem;
}

.accordion-body {
overflow-x: hidden;
    background-color: var(--white);
    color: var(--gray);
}

/* ===== GALLERY SECTION ===== */
.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.gallery-image:hover {
    transform: scale(1.05);
    box-shadow: var(--card-shadow);
}

/* ===== CONTACT FORM ===== */
.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--card-shadow);
}

.form-control {
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    transition: var(--transition);
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(124, 152, 133, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    transform: translateY(-2px);
    box-shadow: var(--card-shadow);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--dark-gray), var(--primary-dark));
    color: var(--white);
    margin-top: 3rem;
}

.footer h5 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer p {
    color: rgba(255, 255, 255, 0.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);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

/* ===== ADDITIONAL PAGE STYLES ===== */
.consultation-card,
.program-item,
.strategy-item,
.support-card,
.quality-item,
.process-step,
.document-item,
.criteria-card,
.resource-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(124, 152, 133, 0.1);
}

.consultation-card:hover,
.program-item:hover,
.strategy-item:hover,
.support-card:hover,
.quality-item:hover,
.process-step:hover,
.document-item:hover,
.criteria-card:hover,
.resource-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(124, 152, 133, 0.15);
}

.strategy-item,
.document-item,
.quality-item,
.resource-item {
    text-align: center;
}

.strategy-item i,
.document-item i,
.quality-item i,
.resource-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* ===== UTILITY CLASSES ===== */
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.text-accent { color: var(--accent-color) !important; }

.bg-primary { background-color: var(--primary-color) !important; }
.bg-secondary { background-color: var(--secondary-color) !important; }
.bg-accent { background-color: var(--accent-color) !important; }

/* ===== ANIMATIONS ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
} 