:root {
    /* Primary Color Palette - Pastel High-Contrast Colors */
    --primary-color: #709acd;
    --primary-light: #b3ccf2;
    --primary-dark: #4d6796;
    
    --secondary-color: #91c186;
    --secondary-light: #bce3c2;
    --secondary-dark: #62926d;
    
    --accent-color: #f0a05f;
    --accent-light: #eec5a2;
    --accent-dark: #f8b73a;
    
    --neutral-color: #e1c8cf;
    --neutral-light: #faf7f6;
    --neutral-dark: #c4bebd;
    
    --warning-color: #e9a7e8;
    --warning-light: #b5a0bc;
    --warning-dark: #c998d3;
    
    /* Typography */
    --font-size-small: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-h6: 1rem;
    --font-size-h5: 1.25rem;
    --font-size-h4: 1.5rem;
    --font-size-h3: 1.75rem;
    --font-size-h2: 2rem;
    --font-size-h1: 2.5rem;
    
    /* Spacing */
    --section-padding: 5rem 0;
}

/* Bootstrap Override - Primary Color */
.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);
}

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

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

/* Typography - Conservative Sizing */
h1 {
    font-size: var(--font-size-h1);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: var(--font-size-h2);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h3 {
    font-size: var(--font-size-h3);
    font-weight: 500;
    line-height: 1.4;
}

h4 {
    font-size: var(--font-size-h4);
    font-weight: 500;
    line-height: 1.4;
}

h5 {
    font-size: var(--font-size-h5);
    font-weight: 500;
    line-height: 1.5;
}

h6 {
    font-size: var(--font-size-h6);
    font-weight: 500;
    line-height: 1.5;
}

p {
    font-size: var(--font-size-base);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.lead {
    font-size: var(--font-size-lg);
    font-weight: 400;
}

/* Navbar Brand - Conservative Size */
.navbar-brand {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--primary-color);
}

.navbar-brand:hover {
    color: var(--primary-dark);
}

/* Navigation */
.navbar {
    box-shadow: 0 10px 7px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #434040;
    margin: 0 0.5rem;
    transition: color 1.29s ease;
}

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

/* Hero Section */
#hero {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: var(--accent-light);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

#hero .container {
    position: relative;
    z-index: 2;
}

/* Sections */
section {
    padding: var(--section-padding);
}

.bg-light {
    background-color: #f8f9fa;
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 6px 6px rgba(0,0,0,0.1);
    transition: transform 0.55s ease, box-shadow 1.55s ease;
    border-radius: 0.75rem;
}

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

.card-body {
    padding: 2rem;
    overflow-x: hidden;
}

.card-title {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    border-radius: 0.5rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 1.64s ease;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: var(--font-size-lg);
}

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

/* Forms */
.form-control {
    border-radius: 0.5rem;
    border: 2px solid #f8efef;
    padding: 0.75rem 1rem;
    transition: border-color 1.26s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(95, 118, 183, 0.25);
}

.form-label {
    font-weight: 500;
    color: #464f51;
    margin-bottom: 0.88rem;
}

/* Footer */
#footer {
    background-color: #34373a;
}

#footer h5 {
    color: var(--primary-light);
    margin-bottom: 1.70rem;
}

#footer a {
    text-decoration: none;
    transition: color 1.82s ease;
}

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

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

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

/* Team Images */
.rounded-circle {
    border: 3px solid var(--primary-light);
}

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

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

/* Services Grid */
#services .card-img-top {
    height: 200px;
    object-fit: cover;
    border-radius: 0.75rem 0.75rem 0 0;
}

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

/* Process Steps */
.bg-primary.text-white {
    background-color: var(--primary-color);
}

/* Breadcrumbs */
.breadcrumb {
    background-color: transparent;
    padding: 0;
}

.breadcrumb-item img {
    opacity: 0.7;
    transition: opacity 0.87s ease;
}

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

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

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

.text-white-50 {
    color: rgba(255, 255, 255, 0.5);
}

/* List Styles */
.list-unstyled li {
    margin-bottom: 0.80rem;
}

/* Image Responsiveness */
.img-fluid {
    border-radius: 0.5rem;
}

/* Custom Spacing */
.mb-4 {
    margin-bottom: 2rem;
}

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

.py-3 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Text Center Utilities */
.text-center h2,
.text-center h1 {
    color: var(--primary-dark);
}

.text-center .lead {
    color: var(--neutral-dark);
} 


/* 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;
    }
}
