:root {
    /* Primary Color Palette - Pastel High-Contrast Colors */
    --primary-blue: #4f94eb;
    --primary-green: #7bec24;
    --primary-purple: #9314ff;
    --primary-orange: #ff9f34;
    --primary-red: #d60012;
    
    /* Light & Dark Shades */
    --light-blue: #d5edff;
    --dark-blue: #214c76;
    --light-green: #F0FFF4;
    --dark-green: #45a07c;
    --light-purple: #e0d4ea;
    --dark-purple: #502f9e;
    --light-orange: #fff9ec;
    --dark-orange: #d56330;
    --light-red: #ffeceb;
    --dark-red: #892721;
    
    /* Neutral Colors */
    --text-dark: #20282f;
    --text-light: #7286a7;
    --background-light: #F7FAFC;
    --border-color: #eaedef;
    
    /* Conservative 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 */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
}

/* 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;
    }
}

/* Global Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: var(--font-size-base);
}

/* Conservative Typography */
.navbar-brand {
    font-size: var(--font-size-xl) !important;
    font-weight: 600;
    color: var(--primary-blue) !important;
}

h1 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

h2 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

h3 {
    font-size: var(--font-size-xl);
    font-weight: 500;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-xs);
}

h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

h5, h6 {
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--text-dark);
}

p {
    font-size: var(--font-size-base);
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
}

/* Button Customizations */
.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    font-weight: 500;
}

.btn-primary:hover {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
}

.btn-outline-primary {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-outline-primary:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-purple) 100%);
    padding-top: 120px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--primary-green);
    border-radius: 50%;
    opacity: 0.1;
    transform: translate(50%, -50%);
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: var(--primary-orange);
    border-radius: 50%;
    opacity: 0.1;
    transform: translate(-50%, 50%);
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 17px;
    box-shadow: 0 9px 6px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 17px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 2.53rem;
    color: var(--primary-blue);
}

/* Service Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 9px 6px rgba(0, 0, 0, 0.07);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
}

.price-tag {
    background: var(--primary-green);
    color: white;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 20px;
    display: inline-block;
    margin-top: var(--spacing-sm);
}

.price {
    font-size: var(--font-size-xl);
    font-weight: 700;
}

/* Pricing Cards */
.pricing-card {
    border: 6px solid var(--border-color);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
}

.featured-plan {
    border-color: var(--primary-blue);
    background: linear-gradient(135deg, var(--light-blue), white);
}

.pricing-footer {
    margin-top: auto;
}

/* Team Section */
.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 3px solid var(--primary-blue);
}

/* Review Cards */
.review-card {
    border: none;
    box-shadow: 0 7px 6px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
}

.stars {
    font-size: var(--font-size-lg);
}

/* Case Study Cards */
.case-study-card {
    border: none;
    box-shadow: 0 9px 6px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.case-study-card:hover {
    transform: translateY(-5px);
}

.case-study-card img {
    height: 200px;
    object-fit: cover;
}

/* Process Section */
.process-step {
    position: relative;
}

.step-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    color: white;
    font-size: 1.52rem;
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-orange);
    color: white;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-small);
    font-weight: 700;
}

/* Timeline Section */
.timeline-container {
    position: relative;
    padding: var(--spacing-lg) 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-blue);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: var(--spacing-xl);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    text-align: right;
}

.timeline-content {
    background: white;
    padding: var(--spacing-md);
    border-radius: 12px;
    box-shadow: 0 8px 6px rgba(0, 0, 0, 0.07);
    width: 45%;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary-blue);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -31px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -31px;
}

.timeline-date {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: var(--font-size-small);
}

/* Career Cards */
.career-card {
    border: none;
    box-shadow: 0 7px 6px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease;
}

.career-card:hover {
    transform: translateY(-3px);
}

/* Info Cards */
.info-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.info-card:hover {
    transform: translateY(-3px);
}

/* Contact Section */
.contact-form {
    background: white;
    padding: var(--spacing-xl);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-info {
    padding: var(--spacing-md);
}

/* FAQ Section */
.faq-card {
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: var(--spacing-sm);
    transition: box-shadow 0.3s ease;
}

.faq-card:hover {
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
}

/* Gallery Section */
.gallery-img {
    border-radius: 8px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: #502f9e;
    margin-top: var(--spacing-xl);
}

footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-blue) !important;
}

/* Newsletter Form */
.newsletter-form .input-group {
    border-radius: 25px;
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
    border-radius: 25px 0 0 25px;
}

.newsletter-form .btn {
    border-radius: 0 25px 25px 0;
}

/* Breadcrumb */
.breadcrumb-section {
    padding-top: 100px;
}

.breadcrumb-img {
    height: 26px;
    width: auto;
}

/* Additional Page Styles */
.tech-card,
.management-card,
.integration-item,
.metric-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.tech-card:hover,
.management-card:hover,
.integration-item:hover,
.metric-card:hover {
    transform: translateY(-3px);
}

.security-feature,
.experience-feature {
    padding: var(--spacing-md);
    border-radius: 8px;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: var(--spacing-sm);
}

.smart-feature,
.innovation-card,
.implementation-step {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease;
}

.smart-feature:hover,
.innovation-card:hover,
.implementation-step:hover {
    transform: translateY(-3px);
}

.efficiency-metric {
    text-align: center;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.metric-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.step-number {
    background: var(--primary-orange);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

/* Feature Icon Wrapper */
.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Contact Hours */
.contact-hours {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.hours-list > div {
    padding: 0.25rem 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-list > div:last-child {
    border-bottom: none;
}

.emergency-contact {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Utility Classes */
.text-primary-blue {
    color: var(--primary-blue) !important;
}

.bg-light-blue {
    background-color: var(--light-blue) !important;
}

.border-primary {
    border-color: var(--primary-blue) !important;
}

/* Animations - Simple and Accessible */
.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Focus States for Accessibility */
.btn:focus,
.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.2rem rgba(80, 155, 240, 0.25);
    border-color: var(--primary-blue);
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Error States */
.error-state {
    border-color: var(--primary-red) !important;
    box-shadow: 0 0 0 0.2rem rgba(205, 0, 5, 0.25);
}

/* Success States */
.success-state {
    border-color: var(--primary-green) !important;
    box-shadow: 0 0 0 0.2rem rgba(137, 193, 13, 0.25);
} 

.hero-section h1 {
    padding-top: 150px;
}


/* 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);
}

.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;
    }
}
