:root {
    /* Primary Color Palette - 5 pastel high-contrast colors */
    --primary-color: #6366f1;
    --secondary-color: #f59e0b;
    --accent-color: #10b981;
    --warning-color: #ef4444;
    --info-color: #06b6d4;
    
    /* Light shades */
    --primary-light: #c7d2fe;
    --secondary-light: #fed7aa;
    --accent-light: #a7f3d0;
    --warning-light: #fecaca;
    --info-light: #a5f3fc;
    
    /* Dark shades */
    --primary-dark: #4338ca;
    --secondary-dark: #d97706;
    --accent-dark: #059669;
    --warning-dark: #dc2626;
    --info-dark: #0891b2;
    
    /* Neutral colors */
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-max-width: 1200px;
}

/* Base styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Typography - Conservative font sizes */
.navbar-brand {
    font-size: 1.25rem;
}

h1, .display-4 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5, .h5 {
    font-size: 1.25rem;
}

h6, .h6 {
    font-size: 1.125rem;
}

.lead {
    font-size: 1.125rem;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Header styles */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar-brand {
    color: var(--primary-color);
    font-weight: 700;
}

.navbar-nav .nav-link {
    color: var(--gray-600);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--info-light) 100%);
    padding-top: 100px;
}

.hero-image img {
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.hero-buttons .btn {
    margin: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Button styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.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);
}

.bg-light {
    background-color: var(--gray-100);
}

/* Feature cards */
.feature-card, .service-card, .price-card, .review-card, .team-member, .faq-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover, .service-card:hover, .price-card:hover, .review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Service cards */
.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.service-card .price {
    font-weight: 700;
    color: var(--primary-color);
}

/* Price cards */
.price-card.bg-primary {
    background-color: var(--primary-color);
    transform: scale(1.05);
}

.price-card.bg-primary:hover {
    transform: scale(1.05) translateY(-5px);
}

/* Feature items */
.feature-item {
    padding: 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background-color: var(--gray-100);
}

.feature-icon, .quality-icon, .edu-icon {
    flex-shrink: 0;
}

/* Team section */
.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 1rem;
}

/* Review cards */
.stars i {
    font-size: 1rem;
    margin-right: 0.25rem;
}

.reviewer {
    font-weight: 600;
    color: var(--gray-600);
}

/* Gallery */
#gallery img {
    border-radius: 0.75rem;
    transition: transform 0.3s ease;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* FAQ section */
.faq-card {
    border-left: 4px solid var(--primary-color);
}

/* Contact form */
.contact-form .form-control {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 2px solid var(--gray-200);
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

/* Footer */
footer {
    background-color: var(--gray-900);
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color);
}

/* Breadcrumb */
.breadcrumb-nav {
    margin-top: 76px;
}

.breadcrumb-image {
    width: 24px;
    height: 24px;
}

/* Process steps */
.process-step .step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
}

/* Quality items */
.quality-item {
    background-color: var(--gray-100);
    border-radius: 0.75rem;
}

/* Spec cards */
.spec-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Innovation items */
.innovation-item, .application-item, .tech-item {
    padding: 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.innovation-item:hover, .application-item:hover, .tech-item:hover {
    background-color: var(--gray-100);
    transform: translateY(-3px);
}

/* Creative cards */
.creative-card, .personal-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.creative-card:hover, .personal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Educational items */
.edu-item {
    background-color: var(--gray-100);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.edu-item:hover {
    background-color: var(--accent-light);
}

/* Space page */
#space {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--info-light) 100%);
    margin-top: 76px;
}

/* Utilities */
.text-primary {
    color: var(--primary-color);
}

.text-success {
    color: var(--accent-color);
}

.text-warning {
    color: var(--secondary-color);
}

.text-danger {
    color: var(--warning-color);
}

.text-info {
    color: var(--info-color);
}

.bg-primary {
    background-color: var(--primary-color);
}

/* Shadow utilities */
.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
} 

.hero 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);
}

.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;
    }
}
