/* Root Variables - 5 Primary Colors + Light/Dark Shades */
:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #06b6d4;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    
    /* Light shades */
    --primary-light: #e0e7ff;
    --secondary-light: #f3e8ff;
    --accent-light: #cffafe;
    --success-light: #d1fae5;
    --warning-light: #fef3c7;
    
    /* Dark shades */
    --primary-dark: #4338ca;
    --secondary-dark: #7c3aed;
    --accent-dark: #0891b2;
    --success-dark: #059669;
    --warning-dark: #d97706;
    
    /* Neutral colors */
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --bg-light: #f9fafb;
    --border-color: #e5e7eb;
}

/* Base Styles */
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    font-size: 16px;
    overflow-x: hidden;
}

/* Conservative Typography */
.navbar-brand {
    font-size: 1.25rem;
    font-weight: 600;
}

h1, .display-4 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2, .h2 {
    font-size: 1.875rem;
    font-weight: 600;
}

h3, .h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4, .h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

h5, .h5 {
    font-size: 1.125rem;
    font-weight: 500;
}

p, .lead {
    font-size: 1rem;
    max-width: none;
}

.lead {
    font-size: 1.125rem;
}

/* Header Styles */
.navbar {
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    color: var(--primary-color);
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
    padding-top: 80px;
}

#hero h1 {
    color: var(--primary-dark);
}

#hero .text-muted {
    color: var(--text-muted);
}

/* Section Spacing */
.py-5 {
    padding: 4rem 0;
}

/* Card Styles */
.card {
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    border-radius: 0.75rem 0.75rem 0 0;
    height: 200px;
    object-fit: cover;
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
}

/* Icon Styles */
.fa-3x {
    color: var(--primary-color);
}

/* Background Variants */
.bg-light {
    background-color: var(--bg-light);
}

.bg-primary {
    background-color: var(--primary-color);
}

.bg-success {
    background-color: var(--success-color);
}

.bg-info {
    background-color: var(--accent-color);
}

.bg-warning {
    background-color: var(--warning-color);
}

.bg-dark {
    background-color: var(--text-dark);
}

/* Form Styles */
.form-control {
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Gallery Styles */
#gallery img {
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
    height: 250px;
    object-fit: cover;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* Footer Styles */
#footer {
    background-color: var(--text-dark);
}

#footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

#footer a:hover {
    color: var(--primary-color);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* Team Cards */
.team-card img {
    height: 300px;
    object-fit: cover;
}

/* Price Cards */
.price-card {
    position: relative;
    overflow: hidden;
}

.price-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    border-left: 4px solid var(--primary-color);
}

/* FAQ Cards */
.faq-card {
    border-left: 3px solid var(--accent-color);
}

/* Breadcrumb Styles */
.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item img {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.breadcrumb-item:hover img {
    opacity: 1;
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color);
}

.border-primary {
    border-color: var(--primary-color);
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
        transition-duration: 0.01ms;
        scroll-behavior: auto;
    }
}

/* Custom Decorative Elements */
.hero-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

/* Section Dividers */
.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-color), transparent);
    margin: 2rem 0;
}

/* Smooth Transitions */
.smooth-transition {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Content Spacing */
.content-spacing {
    margin-bottom: 1.5rem;
}

.content-spacing:last-child {
    margin-bottom: 0;
}

/* High Contrast Colors for Footer */
#footer {
    background-color: #1a1a1a;
    color: #ffffff;
}

#footer h5 {
    color: #ffffff;
}

#footer p {
    color: #cccccc;
}

#footer a {
    color: #cccccc;
}

#footer a:hover {
    color: #ffffff;
}

/* No Gradients in Footer */
#footer .bg-gradient {
    background: none;
} 


/* Team Social Links - Modern Style */
.team-social-links {
    margin-top: 25px;
    padding: 20px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transform: scale(0);
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.social-link:hover::before {
    transform: scale(1.2);
}

.social-link:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #00c6ff);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #0099cc);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f093fb, #f5576c);
}

.x-link {
    background: linear-gradient(45deg, #000000, #434343);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 24px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
}
