:root {
    /* Primary Color Palette - Pastel High-Contrast Colors */
    --primary-green: #7FB069;
    --primary-blue: #6FAADB;
    --primary-orange: #FFB347;
    --primary-purple: #B19CD9;
    --primary-coral: #FF9999;
    
    /* Light Shades */
    --light-green: #B8D4A5;
    --light-blue: #A3C7E8;
    --light-orange: #FFD1A3;
    --light-purple: #D1C7E8;
    --light-coral: #FFB3B3;
    
    /* Dark Shades */
    --dark-green: #5A7C4A;
    --dark-blue: #4E7BA8;
    --dark-orange: #CC8F38;
    --dark-purple: #8A7AAD;
    --dark-coral: #CC7A7A;
    
    /* Additional Colors */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --black: #000000;
}

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

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

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

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

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

h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

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

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

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

/* Header Styles */
#header {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
}

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

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

/* Hero Section */
#hero {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--light-blue) 100%);
    position: relative;
    overflow: hidden;
}

.hero-shapes .shape-blob-1 {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--primary-orange);
    border-radius: 50%;
    opacity: 0.3;
    top: 10%;
    right: 10%;
    z-index: 0;
}

.hero-shapes .shape-blob-2 {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--primary-coral);
    border-radius: 50%;
    opacity: 0.3;
    bottom: 20%;
    left: 5%;
    z-index: 0;
}

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

/* Feature Cards */
.feature-card {
    padding: 2rem;
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

/* Service Cards */
.card {
    border: none;
    border-radius: 10px;
    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 {
    border-radius: 10px 10px 0 0;
    height: 200px;
    object-fit: cover;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-top: 1rem;
}

/* Process Numbers */
.process-number {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem auto;
}

/* Timeline Items */
.timeline-item {
    position: relative;
}

.timeline-year {
    background: var(--primary-orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Team Images */
#team img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 3px solid var(--primary-green);
}

/* Contact Form */
.contact-form .form-control {
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    padding: 0.75rem;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(127, 176, 105, 0.25);
}

.contact-info {
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.contact-info i {
    margin-right: 0.5rem;
    width: 20px;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

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

.btn-outline-primary {
    color: var(--primary-green);
    border-color: var(--primary-green);
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--white);
}

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

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

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

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

/* Breadcrumb */
.breadcrumb-nav {
    border-bottom: 1px solid var(--light-gray);
}

.breadcrumb-img {
    height: 24px;
    width: auto;
}

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

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

/* Background Sections */
.bg-light {
    background-color: var(--light-gray);
}

/* Utilities */
.text-success {
    color: var(--primary-green);
}

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

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

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

.text-secondary {
    color: var(--dark-gray);
}

/* Badge Colors */
.badge.bg-primary {
    background-color: var(--primary-blue);
}

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

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

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

/* Animation Classes for Sal.js */
.sal-animate {
    transition: all 0.5s ease;
}

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

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

/* Ensure proper spacing from fixed header */
body {
    padding-top: 76px;
} 


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