:root {
    /* Color Palette - Pastel High-Contrast Colors */
    --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: #d1d5db;
    --neutral-dark: #374151;
    
    --background-color: #f8fafc;
    --background-light: #ffffff;
    --background-dark: #e2e8f0;
    
    /* 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: 4rem 0;
    --container-max-width: 1200px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    
    /* Border Radius */
    --border-radius-sm: 0.375rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 0.75rem;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--neutral-dark);
    background-color: var(--background-color);
}

/* Accessibility - Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.3s ease;
}

.skip-link:focus {
    top: 0;
    opacity: 1;
    transform: translateY(0);
}

.container {
    max-width: var(--container-max-width);
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .navbar {
        transition: none !important;
    }
    
    .scroll-to-top {
        transition: none !important;
    }
}

/* Header Styles */
.navbar {
    background-color: var(--background-light);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
    transition: transform 0.3s ease;
}

.navbar-brand {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: var(--neutral-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(1px);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 175px;
}

.hero-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: var(--font-size-2xl);
    color: var(--neutral-dark);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: var(--font-size-lg);
    color: var(--neutral-color);
    margin-bottom: 2rem;
}

/* Section Styles */
.section {
    padding: var(--section-padding);
}

.section-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: var(--font-size-xl);
    color: var(--neutral-color);
    text-align: center;
    margin-bottom: 1rem;
}

.section-description {
    font-size: var(--font-size-base);
    color: var(--neutral-color);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Card Styles */
.card {
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--background-light);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-img-top {
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.card-text {
    color: var(--neutral-color);
    margin-bottom: 1rem;
}

/* Services Section */
.services-card {
    text-align: center;
    margin-bottom: 2rem;
}

.services-price {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 1rem;
}

.services-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.services-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--neutral-light);
}

.services-features li:last-child {
    border-bottom: none;
}

/* Team Section */
.team-member {
    text-align: center;
    margin-bottom: 2rem;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 4px solid var(--primary-light);
}

.team-name {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--neutral-color);
    font-style: italic;
}

/* Reviews Section */
.review-card {
    background-color: var(--background-light);
    border-left: 4px solid var(--accent-color);
    padding: 2rem;
    margin-bottom: 2rem;
}

.review-text {
    font-size: var(--font-size-lg);
    color: var(--neutral-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    font-weight: 600;
    color: var(--primary-dark);
}

/* FAQ Section */
.faq-card {
    margin-bottom: 1.5rem;
}

.faq-question {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.faq-answer {
    color: var(--neutral-color);
    line-height: 1.7;
}

/* Process Section */
.process-step {
    text-align: center;
    margin-bottom: 2rem;
}

.process-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.process-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.process-description {
    color: var(--neutral-color);
}

/* Contact Section */
.contact-form {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-info {
    background-color: var(--primary-light);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    color: var(--primary-dark);
}

.contact-info h4 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Form Styles */
.form-control {
    border: 2px solid var(--neutral-light);
    border-radius: var(--border-radius-md);
    padding: 0.75rem;
    font-size: var(--font-size-base);
    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);
}

.form-control.is-invalid {
    border-color: #dc3545;
}

.form-control.is-valid {
    border-color: var(--accent-color);
}

.invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: var(--font-size-sm);
    margin-top: 0.25rem;
}

.btn {
    border-radius: var(--border-radius-md);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    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);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
}

/* Footer */
.footer {
    background-color: var(--neutral-dark);
    color: var(--neutral-light);
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: var(--background-light);
    margin-bottom: 1.5rem;
}

.footer p {
    margin-bottom: 1rem;
}

.footer a {
    color: var(--neutral-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-light);
}

.footer-divider {
    border-color: var(--neutral-color);
    margin: 2rem 0 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--neutral-color);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Utility Classes */
.bg-primary {
    background-color: var(--primary-color);
}

.bg-secondary {
    background-color: var(--secondary-color);
}

.bg-accent {
    background-color: var(--accent-color);
}

.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

.text-accent {
    color: var(--accent-color);
}

.border-accent {
    border-color: var(--accent-color);
}

.rounded-custom {
    border-radius: var(--border-radius-lg);
}

.shadow-custom {
    box-shadow: var(--shadow-lg);
}

/* Decorative Elements */
.decorative-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.blob-1 {
    width: 200px;
    height: 200px;
    background-color: var(--primary-color);
    top: 10%;
    right: 10%;
}

.blob-2 {
    width: 150px;
    height: 150px;
    background-color: var(--secondary-color);
    bottom: 20%;
    left: 5%;
}

.blob-3 {
    width: 100px;
    height: 100px;
    background-color: var(--accent-color);
    top: 60%;
    right: 20%;
}

/* Breadcrumb */
.breadcrumb {
    background-color: transparent;
    padding: 1rem 0;
    margin-bottom: 2rem;
    margin-top: 80px;
}

.breadcrumb-item img {
    height: 20px;
    width: auto;
    filter: var(--primary-color);
}

/* Space Page */
#space {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-light);
    border-radius: var(--border-radius-lg);
    margin: 2rem 0;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
