:root {
    /* Primary Color Palette - 5 colors with light/dark shades */
    --primary-color: #6366f1;
    --primary-light: #a5b4fc;
    --primary-dark: #4338ca;
    
    --secondary-color: #ec4899;
    --secondary-light: #f9a8d4;
    --secondary-dark: #be185d;
    
    --accent-color: #06b6d4;
    --accent-light: #67e8f9;
    --accent-dark: #0891b2;
    
    --success-color: #10b981;
    --success-light: #6ee7b7;
    --success-dark: #047857;
    
    --warning-color: #f59e0b;
    --warning-light: #fbbf24;
    --warning-dark: #d97706;
    
    /* Additional colors */
    --light-bg: #f8fafc;
    --dark-bg: #0f172a;
    --dark-bg-secondary: #1e293b;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
}

/* Conservative typography */
.navbar-brand {
    font-size: 1.25rem !important;
    font-weight: 600;
    color: var(--primary-color);
}

h1, .display-5 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3, .h5 {
    font-size: 1.25rem;
    line-height: 1.4;
}

p, .lead {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.text-muted {
    color: var(--text-muted);
}

/* Primary button styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Header styles */
.navbar {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
    background-color: var(--primary-light);
}

/* Hero section */
#hero {
    background: linear-gradient(135deg, var(--light-bg) 0%, rgba(255, 255, 255, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
    opacity: 0.1;
    z-index: 0;
}

#hero .container {
    position: relative;
    z-index: 1;
}

/* Card styles */
.card {
    border: none;
    border-radius: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    border-radius: 1rem 1rem 0 0;
    height: 200px;
    object-fit: cover;
}

.card-title {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.card-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Services section specific */
#services .card {
    height: 100%;
}

#services .text-primary {
    color: var(--primary-color);
}

/* Team section */
#team img {
    border: 4px solid var(--primary-light);
    transition: all 0.3s ease;
}

#team img:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

/* Price plan cards */
#priceplan .card {
    position: relative;
}

#priceplan .border-primary {
    border: 2px solid var(--primary-color);
}

#priceplan .badge {
    background-color: var(--primary-color);
}

#priceplan .text-primary {
    color: var(--primary-color);
}

#priceplan .text-success {
    color: var(--success-color);
}

/* Process section */
#process .bg-primary {
    background-color: var(--primary-color);
}

/* FAQ section */
#faq .card {
    border-left: 4px solid var(--accent-color);
}

/* Contact form */
.form-control {
    border-radius: 0.5rem;
    border: 2px solid #e5e7eb;
    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-primary);
    margin-bottom: 0.5rem;
}

/* Footer */
#footer {
    background-color: var(--dark-bg);
    color: #ffffff;
}

#footer h5 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

#footer p {
    color: #f1f5f9;
    line-height: 1.6;
}

#footer .text-white-50 {
    color: #cbd5e1 !important;
    transition: color 0.3s ease;
    text-decoration: none;
}

#footer .text-white-50:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

#footer small {
    color: #e2e8f0 !important;
    font-size: 0.9rem;
}

#footer hr {
    border-color: #475569;
    opacity: 0.6;
}

#footer ul {
    list-style: none;
    padding: 0;
}

#footer li {
    margin-bottom: 0.5rem;
}

/* Gallery */
#gallery img {
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

#gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Icon styles */
.fa-3x {
    color: var(--primary-color);
}

.fa-2x {
    color: var(--primary-color);
}

/* Section spacing */
section {
    scroll-margin-top: 80px;
}

.py-5 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.bg-light {
    background-color: var(--light-bg);
}

/* Breadcrumb */
.breadcrumb {
    background: none;
    padding: 0;
}

.breadcrumb-item img {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.breadcrumb-item img:hover {
    opacity: 1;
}

/* Utility classes */
.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Animation support - respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Custom decorative elements */
.bg-gradient {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
}

/* Reviews section specific */
#reviews .card {
    border-left: 4px solid var(--secondary-color);
}

/* Process steps */
#process .rounded-circle {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Case study cards */
#casestudy .card {
    border-top: 4px solid var(--success-color);
}

/* Features section icons */
#features .fa-2x {
    margin-right: 1rem;
}

/* About features */
#about .fa-3x {
    margin-bottom: 1rem;
} 

body {
    overflow-x: hidden;
}


/* Team Social Links - Neon Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.social-icons-grid {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 2px solid;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 0.7;
}

.social-link:hover {
    transform: scale(1.1);
    text-shadow: 0 0 20px currentColor;
    box-shadow: 0 0 20px currentColor;
}

.facebook-link {
    border-color: #1877f2;
    color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
}

.linkedin-link {
    border-color: #0a66c2;
    color: #0a66c2;
    background: rgba(10, 102, 194, 0.1);
}

.instagram-link {
    border-color: #e4405f;
    color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
}

.x-link {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 22px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
