/* ===== CSS VARIABLES - COLOR PALETTE ===== */
:root {
    /* Primary Colors */
    --primary-color: #7799b7;
    --secondary-color: #8fbb8c;
    --accent-color: #dbc7af;
    --warm-color: #f6b378;
    --cool-color: #bdebf7;
    
    /* Light Shades */
    --primary-light: #b0c5d6;
    --secondary-light: #d2e2c9;
    --accent-light: #faf9f0;
    --warm-light: #f6c49a;
    --cool-light: #c5d8df;
    
    /* Dark Shades */
    --primary-dark: #4a5a8e;
    --secondary-dark: #6e8c69;
    --accent-dark: #fbf0c1;
    --warm-dark: #e68963;
    --cool-dark: #88b3c4;
    
    /* Neutral Colors */
    --text-dark: #273f4f;
    --text-light: #374a65;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-light: #e3f5ff;
    
    /* Conservative Typography */
    --font-size-base: 1rem;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --card-padding: 1.5rem;
    --border-radius: 0.5rem;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    
    /* Animation */
    --transition-base: all 0.3s ease;
    --transition-fast: all 0.2s ease;
}

/* ===== RESPECT PREFERS-REDUCED-MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    [data-sal] {
        animation: none !important;
    }
}

/* ===== BASE STYLES ===== */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

/* ===== CONSERVATIVE TYPOGRAPHY ===== */
h1, .h1 {
    font-size: var(--font-size-3xl);
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

h2, .h2 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.99rem;
}

h3, .h3 {
    font-size: var(--font-size-xl);
    font-weight: 500;
    color: var(--secondary-dark);
    margin-bottom: 0.86rem;
}

h4, .h4 {
    font-size: var(--font-size-lg);
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.65rem;
}

h5, .h5 {
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.61rem;
}

p {
    font-size: var(--font-size-base);
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Conservative navbar-brand sizing */
.navbar-brand {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--primary-dark);
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a"><stop offset="0" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="1" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="150" fill="url(%23a)"/><circle cx="800" cy="600" r="200" fill="url(%23a)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
}

.hero-section .container-fluid {
    position: relative;
    z-index: 2;
}

.hero-buttons .btn {
    padding: 0.75rem 2rem;
    font-size: var(--font-size-base);
    border-radius: var(--border-radius);
    transition: var(--transition-base);
}

.hero-buttons .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.hero-buttons .btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.hero-buttons .btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.hero-buttons .btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* ===== FEATURE CARDS ===== */
.feature-card {
    background: var(--bg-white);
    padding: var(--card-padding);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: var(--font-size-3xl);
    color: var(--primary-color);
}

/* ===== SERVICE CARDS ===== */
.service-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-base);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.service-card .card-body {
    padding: var(--card-padding);
}

.service-card .price-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--accent-color);
    color: var(--accent-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: var(--font-size-sm);
}

.service-card .features-text {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* ===== FEATURE ITEMS ===== */
.feature-item {
    padding: var(--card-padding);
    text-align: center;
}

.feature-item .feature-icon {
    font-size: var(--font-size-4xl);
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* ===== PRICE CARDS ===== */
.price-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-base);
    height: 100%;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.price-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.price-card .card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    padding: 2rem 1.5rem;
    text-align: center;
}

.price-card .price-display {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-top: 1rem;
}

.price-card .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-card .feature-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

.price-card .feature-list li:last-child {
    border-bottom: none;
}

.price-card .feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

/* ===== TEAM SECTION ===== */
.team-member {
    padding: var(--card-padding);
    text-align: center;
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--primary-light);
}

/* ===== REVIEW CARDS ===== */
.review-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.review-card .card-body {
    padding: var(--card-padding);
}

.reviewer-info {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rating {
    color: var(--warm-color);
}

/* ===== CASE STUDY CARDS ===== */
.case-study-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-base);
    height: 100%;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.case-study-card .case-content {
    padding: var(--card-padding);
}

/* ===== PROCESS STEPS ===== */
.process-step {
    padding: var(--card-padding);
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* ===== TIMELINE ===== */
.timeline-container {
    position: relative;
    padding: 2rem 0;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: var(--primary-light);
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 18px;
    height: 18px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.timeline-year {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--accent-dark);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: 0.67rem;
}

/* ===== CAREER CARDS ===== */
.career-card {
    background: var(--bg-white);
    padding: var(--card-padding);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
}

.career-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.role-badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius);
    font-size: var(--font-size-sm);
    font-weight: 500;
    margin-top: 1rem;
}

/* ===== INFO CARDS ===== */
.info-card {
    background: var(--bg-white);
    padding: var(--card-padding);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
    text-align: center;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    font-size: var(--font-size-3xl);
    color: var(--cool-color);
    margin-bottom: 1rem;
}

/* ===== BLOG CARDS ===== */
.blog-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-base);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-card .blog-content {
    padding: var(--card-padding);
}

.blog-card .read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-base);
}

.blog-card .read-more:hover {
    color: var(--primary-dark);
}

/* ===== FAQ CARDS ===== */
.faq-card {
    background: var(--bg-white);
    padding: var(--card-padding);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
}

.faq-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.faq-card h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ===== GALLERY ===== */
.gallery-img {
    border-radius: var(--border-radius);
    transition: var(--transition-base);
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--bg-light);
}

.contact-info {
    background: var(--bg-white);
    padding: var(--card-padding);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    height: fit-content;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.64rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    font-size: var(--font-size-xl);
    color: var(--primary-color);
    margin-right: 1rem;
    width: 30px;
    text-align: center;
}

.contact-item h5 {
    margin-bottom: 0.32rem;
    color: var(--text-dark);
}

.contact-item p {
    margin-bottom: 0;
    color: var(--text-light);
}

/* ===== FORMS ===== */
.form-control {
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
    padding: 0.75rem 1rem;
    font-size: var(--font-size-base);
    transition: var(--transition-base);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(113, 137, 172, 0.25);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-size: var(--font-size-base);
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: var(--transition-base);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
}

.footer h5 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.footer a {
    color: var(--bg-light);
    text-decoration: none;
    transition: var(--transition-base);
}

.footer a:hover {
    color: var(--primary-light);
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 0.58rem;
}

/* ===== SPACE PAGE ===== */
.space-container {
    background: linear-gradient(135deg, var(--cool-light), var(--accent-light));
    position: relative;
    overflow: hidden;
}

.space-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* ===== BREADCRUMB ===== */
.breadcrumb-icon {
    width: 20px;
    height: 20px;
    opacity: 0.7;
}

/* ===== ADDITIONAL PAGE CARDS ===== */
.resource-card, .tool-card, .community-card, .support-card, .path-card,
.course-card, .art-card, .health-card, .financial-card, .hobby-card {
    background: var(--bg-white);
    padding: var(--card-padding);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
    text-align: center;
}

.resource-card:hover, .tool-card:hover, .community-card:hover, .support-card:hover, .path-card:hover,
.course-card:hover, .art-card:hover, .health-card:hover, .financial-card:hover, .hobby-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.resource-icon, .tool-icon, .community-icon, .support-icon, .path-icon,
.course-icon, .art-icon, .health-icon, .financial-icon, .hobby-icon {
    font-size: var(--font-size-3xl);
    margin-bottom: 1rem;
}

.resource-icon { color: var(--primary-color); }
.tool-icon { color: var(--secondary-color); }
.community-icon { color: var(--accent-dark); }
.support-icon { color: var(--warm-color); }
.path-icon { color: var(--cool-color); }
.course-icon { color: var(--primary-color); }
.art-icon { color: var(--warm-color); }
.health-icon { color: var(--secondary-color); }
.financial-icon { color: var(--primary-dark); }
.hobby-icon { color: var(--cool-color); }

/* ===== UTILITY CLASSES ===== */
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.bg-primary { background-color: var(--primary-color); }
.bg-secondary { background-color: var(--secondary-color); }
.bg-accent { background-color: var(--accent-color); }

/* ===== SECTION BACKGROUNDS ===== */
.bg-light {
    background-color: var(--bg-light);
}

/* ===== SMOOTH SCROLLING ===== */
html {
    scroll-behavior: smooth;
}

/* ===== ACCESSIBILITY ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== FOCUS STYLES ===== */
.btn:focus,
.form-control:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .footer,
    .btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        break-after: avoid;
    }
} 

.hero-section h1 {
    padding-top: 175px;
}


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
