:root {
    /* Primary Color Palette - Pastel High-Contrast Colors */
    --primary-blue: #6B73FF;
    --primary-purple: #9B59B6;
    --primary-teal: #16A085;
    --primary-coral: #FF6B6B;
    --primary-green: #2ECC71;
    
    /* Light Shades */
    --light-blue: #E8EAFF;
    --light-purple: #F4E6FF;
    --light-teal: #E8F8F5;
    --light-coral: #FFE8E8;
    --light-green: #E8F8F0;
    
    /* Dark Shades */
    --dark-blue: #4A52CC;
    --dark-purple: #7D3C98;
    --dark-teal: #138D75;
    --dark-coral: #E74C3C;
    --dark-green: #27AE60;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Conservative Typography */
.navbar-brand {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-blue);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-purple);
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
}

h5 {
    font-size: 1.125rem;
    font-weight: 500;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-purple) 100%);
    position: relative;
    overflow: hidden;
}

.hero-shapes .shape-1 {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: var(--primary-coral);
    border-radius: 50%;
    opacity: 0.6;
    z-index: 1;
}

.hero-shapes .shape-2 {
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 150px;
    height: 150px;
    background: var(--primary-teal);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.5;
    z-index: 1;
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    padding: 12px 30px;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
}

/* Card Styles */
.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Process Steps */
.process-step {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* Team Images */
.team img,
img[src*="team_"] {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

/* Contact Form */
.form-control {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 12px 16px;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(107, 115, 255, 0.25);
}

/* Footer */
#footer {
    background: #2c3e50;
}

#footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

#footer a:hover {
    color: var(--primary-blue);
}

/* Gallery */
#gallery img {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* Breadcrumb */
.breadcrumb-icon {
    width: 24px;
    height: 24px;
}

/* Animation Classes for Sal.js - DISABLED */
/* [data-sal] {
    transition-duration: 0.5s;
} */

/* Ensure immediate visibility of all images and content */
img {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.card, .process-step, #hero h1, #hero h2, #hero p, #team img {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero-shapes .shape-1,
    .hero-shapes .shape-2 {
        animation: none;
    }
    
    .card:hover {
        transform: none;
    }
    
    #gallery img:hover {
        transform: none;
    }
}

/* Utility Classes */
.text-primary {
    color: var(--primary-blue);
}

.bg-primary {
    background-color: var(--primary-blue);
}

/* Contact Info Styling */
.contact-info {
    padding: 2rem;
    background: var(--light-blue);
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-info i {
    font-size: 1.2rem;
}

/* Section Spacing */
section {
    padding: 4rem 0;
}

/* Navbar Adjustments */
.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-blue);
}

/* Ensure proper spacing from fixed navbar */
body {
    padding-top: 76px;
}

/* High contrast colors for footer - no gradients */
#footer {
    background: #1a252f;
    color: #ffffff;
}

#footer h5, #footer h6 {
    color: #ffffff;
}

#footer p {
    color: #ecf0f1;
}

#footer a {
    color: #bdc3c7;
}

#footer a:hover {
    color: #ffffff;
}

#footer hr {
    border-color: #34495e;
} 


/* 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;
}

.instagram-link:hover {
    background: #e4405f;
    border-color: #e4405f;
    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;
    }
}
