:root {
    /* Primary Color Palette - Pastel High-Contrast Colors */
    --primary-color: #6366f1;
    --primary-light: #a5b4fc;
    --primary-dark: #4338ca;
    
    --secondary-color: #10b981;
    --secondary-light: #6ee7b7;
    --secondary-dark: #047857;
    
    --accent-color: #f59e0b;
    --accent-light: #fbbf24;
    --accent-dark: #d97706;
    
    --neutral-color: #6b7280;
    --neutral-light: #d1d5db;
    --neutral-dark: #374151;
    
    --background-color: #f8fafc;
    --background-light: #ffffff;
    --background-dark: #1f2937;
    
    /* Typography */
    --font-size-base: 16px;
    --font-size-sm: 14px;
    --font-size-lg: 18px;
    --line-height-base: 1.6;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--neutral-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
}

/* Conservative Typography */
.navbar-brand {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--neutral-dark);
}

h4 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--neutral-dark);
}

h5 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--neutral-dark);
}

p {
    font-size: var(--font-size-base);
    margin-bottom: 1rem;
    color: var(--neutral-color);
}

.lead {
    font-size: var(--font-size-lg);
    font-weight: 300;
    color: var(--primary-color);
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Card Styles */
.card {
    border: none;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    background-color: var(--background-light);
}

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

.card-img-top {
    border-radius: 0.75rem 0.75rem 0 0;
    height: 200px;
    object-fit: cover;
}

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

#hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--neutral-dark);
}

#hero .lead {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Section Spacing */
section {
    padding: 4rem 0;
}

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

/* Navigation */
.navbar {
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

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

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

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

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

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

#footer h5 {
    color: var(--background-light);
    font-weight: 600;
}

#footer a {
    color: var(--neutral-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Form Styles */
.form-control {
    border: 2px solid var(--neutral-light);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    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);
}

/* Pricing Cards */
.border-primary {
    border: 2px solid var(--primary-color);
}

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

.process-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -50%;
    width: 100%;
    height: 2px;
    background-color: var(--primary-light);
    z-index: -1;
}

.process-step:last-child::after {
    display: none;
}

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

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

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

/* Testimonials */
#reviews .card {
    border-top: 3px solid var(--secondary-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    #hero h1 {
        font-size: 2.5rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
    }
}

/* Animation Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
        transition-duration: 0.01ms;
        scroll-behavior: auto;
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus Styles */
.btn:focus,
.form-control:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

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

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

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

/* Custom Components */
.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.testimonial-card {
    position: relative;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-light);
    line-height: 1;
}

/* Services Grid */
.services-grid .card {
    height: 100%;
    border: 1px solid var(--neutral-light);
}

.services-grid .card-title {
    color: var(--primary-color);
    font-weight: 600;
}

.price-badge {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Blog Grid */
#blog_grid .card-img-top {
    height: 180px;
    object-fit: cover;
}

/* Additional Page Breadcrumb */
.breadcrumb-section {
    background-color: var(--background-color);
    padding: 1rem 0;
}

.breadcrumb-section img {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.breadcrumb-section img:hover {
    opacity: 1;
} 


/* Team Social Links - Glass Style */
.team-social-links {
    margin-top: 22px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.social-link {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.3);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 0.5);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.3);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 0.5);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.3);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 0.5);
}

.x-link {
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

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

.x-link:hover {
    background: rgba(0, 0, 0, 0.5);
}

.x-link i {
    display: none;
}

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