:root {
    /* Primary Color Palette */
    --primary-blue: #3b82f6;
    --primary-purple: #8b5cf6;
    --primary-teal: #14b8a6;
    --primary-green: #10b981;
    --primary-pink: #ec4899;
    
    /* Light Shades */
    --light-blue: #dbeafe;
    --light-purple: #ede9fe;
    --light-teal: #ccfbf1;
    --light-green: #d1fae5;
    --light-pink: #fce7f3;
    
    /* Dark Shades */
    --dark-blue: #1e40af;
    --dark-purple: #7c3aed;
    --dark-teal: #0f766e;
    --dark-green: #047857;
    --dark-pink: #be185d;
    
    /* Neutral Colors */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    padding-top: 76px;
    overflow-x: hidden;
}

/* Conservative Typography */
.navbar-brand {
    font-size: 1.2rem;
}

h1, .display-4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-800);
}

h2, .h1 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--gray-800);
}

h3, .h4 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--gray-600);
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--gray-700);
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.1rem;
    font-weight: 400;
}

/* Header Styles */
.navbar {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--gray-700);
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-blue);
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-purple) 100%);
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, var(--light-teal) 0%, transparent 70%);
    opacity: 0.3;
    z-index: 1;
}

#hero .container {
    position: relative;
    z-index: 2;
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Card Styles */
.card {
    border: none;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    border-radius: 1rem 1rem 0 0;
    height: 200px;
    object-fit: cover;
}

/* Section Spacing */
section {
    padding: 5rem 0;
}

.py-5 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* Feature Icons */
.fa-3x {
    font-size: 2.5rem;
}

.fa-2x {
    font-size: 1.75rem;
}

/* Team Member Images */
.rounded-circle {
    border: 3px solid var(--light-blue);
    transition: all 0.3s ease;
}

.rounded-circle:hover {
    border-color: var(--primary-blue);
    transform: scale(1.05);
}

/* Testimonial Cards */
#reviews .card {
    background: linear-gradient(145deg, var(--light-blue), var(--light-purple));
    border-left: 4px solid var(--primary-blue);
}

/* FAQ Cards */
#faq .card {
    background-color: var(--gray-50);
    border-left: 4px solid var(--primary-teal);
    margin-bottom: 1rem;
}

#faq .card-title {
    color: var(--primary-teal);
}

/* Gallery Styles */
#gallery img {
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    height: 250px;
    object-fit: cover;
}

#gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Contact Form */
.form-control {
    border-radius: 0.5rem;
    border: 2px solid var(--gray-200);
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

/* Footer Styles */
#footer {
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
}

#footer h5 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

#footer .text-white-50:hover {
    color: var(--primary-blue);
    text-decoration: none;
}

/* Pricing Cards */
.border-primary {
    border-color: var(--primary-blue);
}

.bg-primary {
    background-color: var(--primary-blue);
}

.text-primary {
    color: var(--primary-blue);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.shadow-soft {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.text-gradient {
    background: linear-gradient(45deg, var(--primary-blue), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Breadcrumb Styles */
.breadcrumb {
    background: none;
    padding: 0;
}

.breadcrumb-item img {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.breadcrumb-item img:hover {
    opacity: 1;
}

/* Additional Page Specific Styles */
.border-success {
    border-color: var(--primary-green);
}

.bg-success {
    background-color: var(--primary-green);
}

.border-warning {
    border-color: #f59e0b;
}

.bg-warning {
    background-color: #f59e0b;
}

.border-info {
    border-color: var(--primary-teal);
}

.bg-info {
    background-color: var(--primary-teal);
}

.border-secondary {
    border-color: var(--gray-600);
}

.bg-secondary {
    background-color: var(--gray-600);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }
    
    .h1 {
        font-size: 1.75rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .py-5 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
} 


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.instagram-link {
    background: #e4405f;
    border: 2px solid #e4405f;
}

.instagram-link:hover {
    background: #d62976;
    border-color: #d62976;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
