/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Color Palette - Pastel High Contrast */
    --primary-color: #6366f1;
    --primary-light: #a5b4fc;
    --primary-dark: #4338ca;
    
    --secondary-color: #f59e0b;
    --secondary-light: #fbbf24;
    --secondary-dark: #d97706;
    
    --accent-color: #10b981;
    --accent-light: #34d399;
    --accent-dark: #059669;
    
    --neutral-color: #6b7280;
    --neutral-light: #d1d5db;
    --neutral-dark: #374151;
    
    --background-color: #f8fafc;
    --background-light: #ffffff;
    --background-dark: #1f2937;
    
    /* Typography */
    --font-size-small: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --card-border-radius: 0.75rem;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

/* ===== GLOBAL STYLES ===== */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--neutral-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
}

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

/* ===== HEADER STYLES ===== */
.navbar-brand {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--neutral-dark);
    transition: color 0.3s ease;
}

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

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, var(--background-light) 0%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
    opacity: 0.1;
    z-index: 1;
}

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

.hero-section h1 {
    color: var(--primary-dark);
    font-size: 2.5rem;
    padding-top: 250px;
}

.hero-section .lead {
    font-size: var(--font-size-lg);
    color: var(--neutral-color);
}

/* ===== SECTION STYLES ===== */
section {
    padding: var(--section-padding);
}

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

.section-subtitle {
    color: var(--neutral-color);
    margin-bottom: 2rem;
}

/* ===== CARD STYLES ===== */
.card {
    border: none;
    border-radius: var(--card-border-radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.card-img-top {
    border-radius: var(--card-border-radius) var(--card-border-radius) 0 0;
    height: 200px;
    object-fit: cover;
}

/* ===== BUTTON STYLES ===== */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    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-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);
}

/* ===== SERVICES SECTION ===== */
#services .card {
    height: 100%;
}

#services .card-title {
    color: var(--primary-dark);
    font-size: var(--font-size-lg);
}

#services .text-primary {
    color: var(--primary-color);
    font-weight: 700;
}

/* ===== FEATURES SECTION ===== */
#features .fas {
    color: var(--primary-color);
}

#features h4 {
    color: var(--primary-dark);
    margin-top: 1rem;
}

/* ===== TEAM SECTION ===== */
#team img {
    border: 3px solid var(--primary-light);
    transition: transform 0.3s ease;
}

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

#team h4 {
    color: var(--primary-dark);
    margin-top: 1rem;
}

/* ===== REVIEWS SECTION ===== */
#reviews .card {
    border-left: 4px solid var(--primary-color);
}

#reviews .blockquote-footer {
    color: var(--neutral-color);
}

/* ===== PROCESS SECTION ===== */
#process .rounded-circle {
    background-color: var(--primary-color);
    font-size: 1.25rem;
}

#process h4 {
    color: var(--primary-dark);
    margin-top: 1rem;
}

/* ===== CORE INFO SECTION ===== */
#coreinfo h4 {
    color: var(--primary-color);
    font-weight: 700;
}

/* ===== GALLERY SECTION ===== */
#gallery img {
    transition: transform 0.3s ease, filter 0.3s ease;
}

#gallery img:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

/* ===== CONTACT SECTION ===== */
#contact .form-control {
    border-radius: 0.5rem;
    border: 2px solid var(--neutral-light);
    transition: border-color 0.3s ease;
}

#contact .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

#contact .fas {
    color: var(--primary-color);
}

/* ===== FAQ SECTION ===== */
#faq .card {
    border-left: 3px solid var(--accent-color);
}

#faq .card-title {
    color: var(--primary-dark);
    font-size: var(--font-size-lg);
}

/* ===== FOOTER STYLES ===== */
#footer {
    background-color: var(--background-dark);
}

#footer h5, #footer h6 {
    color: var(--primary-light);
}

#footer a {
    transition: color 0.3s ease;
}

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

/* ===== BREADCRUMB STYLES ===== */
.breadcrumb-section {
    padding-top: 6rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb img {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.breadcrumb img:hover {
    opacity: 1;
}

/* ===== UTILITY CLASSES ===== */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
}

/* ===== RESPONSIVE TYPOGRAPHY ===== */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    padding-top: 250px;
}
    
    .display-5 {
        font-size: 2rem;
    }
    
    .display-6 {
        font-size: 1.5rem;
    }
}

/* ===== ANIMATION ENHANCEMENTS ===== */
.card, .btn, img {
    transition: all 0.3s ease;
}

/* ===== ACCESSIBILITY ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus indicators */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
img {
    max-width: 100%;
    height: auto;
}

.img-fluid {
    will-change: transform;
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .btn,
    #footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
} 


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.9);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 1);
    box-shadow: 0 8px 30px rgba(228, 64, 95, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
