/* Color Variables - Pastel High-Contrast Palette */
:root {
    --primary-color: #3B82F6;
    --primary-light: #DBEAFE;
    --primary-dark: #1E3A8A;
    
    --secondary-color: #10B981;
    --secondary-light: #D1FAE5;
    --secondary-dark: #047857;
    
    --accent-color: #F59E0B;
    --accent-light: #FEF3C7;
    --accent-dark: #B45309;
    
    --neutral-color: #6B7280;
    --neutral-light: #F9FAFB;
    --neutral-dark: #1F2937;
    
    --highlight-color: #EF4444;
    --highlight-light: #FEE2E2;
    --highlight-dark: #B91C1C;
}

/* Typography - Conservative Sizes */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--neutral-dark);
    overflow-x: hidden;
}

.navbar-brand {
    font-size: 1.25rem !important;
}

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

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3, h4, h5, h6 {
    font-weight: 600;
}

.lead {
    font-size: 1.125rem;
}

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

/* Custom Bootstrap Color Overrides */
.text-primary {
    color: var(--primary-color) !important;
}

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

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

.border-primary {
    border-color: var(--primary-color) !important;
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--neutral-light) 100%);
    min-height: 100vh;
    padding-top: 80px;
}

/* Navigation */
.navbar {
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--neutral-dark);
    transition: color 0.3s ease;
}

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

/* Card Styles */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

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

/* Service Items */
.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Section Backgrounds */
.bg-light {
    background-color: var(--neutral-light) !important;
}

/* Team Section */
.team img {
    transition: transform 0.3s ease;
}

.team img:hover {
    transform: scale(1.05);
}

/* Timeline */
.timeline-item {
    position: relative;
    padding-left: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--primary-color);
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: -5px;
    top: 10px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--neutral-dark) !important;
}

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

/* Form Styles */
.form-control {
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    padding: 0.75rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

.btn {
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-lg {
    padding: 1rem 2.5rem;
}

/* Gallery Lightbox */
.gallery img {
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

.gallery img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Responsive Design Helpers */
@media (max-width: 768px) {
    h1, .display-4 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero {
        text-align: center;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
}

/* Animation Preparation for Sal.js */
[data-sal] {
    transition-duration: 0.5s;
}

/* Accessibility - Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    [data-sal] {
        transition: none !important;
    }
}

/* Utilities */
.text-center {
    text-align: center;
}

.rounded-3 {
    border-radius: 0.75rem;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Icon Styles */
.fa-3x {
    color: var(--primary-color);
}

.fa-2x {
    color: var(--primary-color);
}

/* Price Plan Highlight */
.card.border-primary {
    border-width: 2px !important;
}

/* Process Steps */
.process-step {
    position: relative;
}

/* Service Features List */
.list-unstyled li {
    margin-bottom: 0.5rem;
}

/* Contact Info Icons */
.contact-info i {
    color: var(--primary-color);
}

/* Team Member Cards */
.team-member {
    text-align: center;
    margin-bottom: 2rem;
}

/* Custom Spacing */
.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

/* Breadcrumb */
nav img {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

nav img:hover {
    opacity: 1;
} 


/* Team Social Links - Gradient Style */
.team-social-links {
    margin-top: 20px;
    padding: 18px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 20px;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.social-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.linkedin-link {
    background: linear-gradient(135deg, #2196f3 0%, #21cbf3 100%);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #21cbf3 0%, #2196f3 100%);
}

.instagram-link {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.x-link {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    position: relative;
}

.x-link::after {
    content: '✦';
    font-weight: bold;
    font-size: 22px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: linear-gradient(135deg, #414345 0%, #232526 100%);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
