:root {
    /* Color Palette - 5 primary colors with light/dark shades */
    --primary-color: #6366f1;
    --primary-light: #a5b4fc;
    --primary-dark: #4338ca;
    
    --secondary-color: #f59e0b;
    --secondary-light: #fbbf24;
    --secondary-dark: #d97706;
    
    --accent-color: #10b981;
    --accent-light: #34d399;
    --accent-dark: #059669;
    
    --neutral-color: #6b7280;
    --neutral-light: #9ca3af;
    --neutral-dark: #374151;
    
    --background-color: #f8fafc;
    --background-light: #ffffff;
    --background-dark: #1f2937;
    
    /* Typography */
    --font-size-small: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-max-width: 1200px;
}

/* Global Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--neutral-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Header Styles */
.navbar-brand {
    font-size: var(--font-size-xl);
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--neutral-dark);
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--background-light) 0%, var(--background-color) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0.1;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-cta .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.section-title {
    color: var(--neutral-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
}

.section-description {
    color: var(--neutral-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Card Styles */
.card {
    border: none;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

/* Services Cards */
.services-card {
    position: relative;
    background: var(--background-light);
}

.services-card .card-body {
    padding: 2rem;
}

.services-price {
    font-size: var(--font-size-3xl);
    color: var(--primary-color);
    font-weight: 700;
}

/* Team Section */
.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 3px solid var(--primary-light);
    transition: border-color 0.3s ease;
}

.team-member:hover img {
    border-color: var(--primary-color);
}

/* Reviews Section */
.review-card {
    background: var(--background-light);
    border-left: 4px solid var(--primary-color);
}

.review-text {
    font-style: italic;
    color: var(--neutral-color);
}

.review-author {
    color: var(--primary-color);
    font-weight: 600;
}

/* FAQ Section */
.faq-card {
    background: var(--background-light);
    border: 1px solid var(--neutral-light);
    transition: border-color 0.3s ease;
}

.faq-card:hover {
    border-color: var(--primary-color);
}

/* Gallery Section */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
}

.gallery-item img {
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Process Section */
.process-step {
    position: relative;
}

.process-number {
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* Timeline Section */
.timeline-item {
    position: relative;
    text-align: center;
}

.timeline-year {
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 600;
    font-size: 0.8rem;
}

/* Career Section */
.career-card {
    transition: transform 0.3s ease;
}

.career-card:hover {
    transform: translateY(-3px);
}

/* Core Info Section */
.coreinfo-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.coreinfo-item:hover {
    background-color: var(--background-color);
}

/* Blog Section */
.blog-card {
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-3px);
}

/* Contact Form */
.form-control {
    border: 2px solid var(--neutral-light);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

.contact-info-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 0.75rem;
    transition: transform 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-3px);
}

/* Footer */
footer {
    background: var(--background-dark);
    color: var(--background-light);
}

footer h5,
footer h6 {
    color: var(--primary-light);
}

footer a {
    color: var(--neutral-light);
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-light);
    text-decoration: none;
}

/* Breadcrumb */
.breadcrumb-section {
    padding: 1rem 0;
    background: var(--background-color);
}

.breadcrumb-icon {
    width: 24px;
    height: 24px;
    opacity: 0.7;
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color);
}

.bg-primary {
    background-color: var(--primary-color);
}

.border-primary {
    border-color: var(--primary-color);
}

/* Conservative Typography */
h1 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
}

h2 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
}

h3, h4, h5, h6 {
    font-size: var(--font-size-lg);
    font-weight: 600;
}

.lead {
    font-size: var(--font-size-lg);
    font-weight: 400;
}

p {
    font-size: var(--font-size-base);
}

.small {
    font-size: var(--font-size-small);
}

/* Animation Classes for Sal.js */
[data-sal] {
    transition-duration: 0.5s;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Custom Tooltip */
.custom-tooltip {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neutral-dark);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-size: var(--font-size-small);
    white-space: nowrap;
    z-index: 1000;
}

/* Progress Bar */
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 9999;
}

/* Form Validation States */
.is-invalid {
    border-color: #dc3545;
}

.is-valid {
    border-color: var(--accent-color);
}

.invalid-feedback {
    color: #dc3545;
    font-size: var(--font-size-small);
    margin-top: 0.25rem;
}

/* Focus States for Accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000080;
        --neutral-color: #000000;
        --background-color: #ffffff;
    }
    
    .card {
        border: 2px solid var(--neutral-dark);
    }
} 

.hero-section h1 {
    padding-top: 100px;
}


/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f77737, #fcaf45, #ffdc80);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
