/* Color Palette */
:root {
    --primary-color: #514bf4;
    --primary-light: #a2b3ff;
    --primary-dark: #5348c6;
    
    --secondary-color: #f1f5f9;
    --secondary-light: #f8fafc;
    --secondary-dark: #b8cfe4;
    
    --accent-color: #16da74;
    --accent-light: #72ffce;
    --accent-dark: #00a266;
    
    --warning-color: #df7d13;
    --warning-light: #eda03a;
    --warning-dark: #db960c;
    
    --text-color: #171c26;
    --text-light: #526175;
    --text-dark: #0b1633;
}

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

/* Conservative Typography */
.navbar-brand {
    font-size: 1.15rem !important;
    font-weight: 600;
}

h1, .h1 {
    font-size: 2.35rem;
    font-weight: 700;
}

h2, .h2 {
    font-size: 2.04rem;
    font-weight: 600;
}

h3, .h3 {
    font-size: 1.60rem;
    font-weight: 600;
}

h4, .h4 {
    font-size: 1.41rem;
    font-weight: 600;
}

h5, .h5 {
    font-size: 1.30rem;
    font-weight: 600;
}

h6, .h6 {
    font-size: 1rem;
    font-weight: 600;
}

p, .lead {
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Custom Components */
.hero-buttons .btn {
    border-radius: 8px;
    padding: 14px 30px;
    font-weight: 600;
}

.feature-icon {
    margin-bottom: 1rem;
}

.process-number {
    font-size: 1.48rem;
    margin-bottom: 1rem;
}

.timeline-year {
    font-size: 1.30rem;
}

/* Card Enhancements */
.card {
    border: none;
    border-radius: 16px;
    transition: transform 1.24s ease-in-out;
}

.card:hover {
    transform: translateY(-2px);
}

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

/* Button Styles */
.btn {
    border-radius: 8px;
    font-weight: 600;
    padding: 10px 24px;
}

.btn-lg {
    padding: 12px 30px;
    font-size: 1rem;
}

/* Form Styles */
.form-control {
    border-radius: 8px;
    border: 2px solid #fdfdfd;
    padding: 12px 16px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(94, 95, 210, 0.25);
}

/* Section Spacing */
section {
    padding: 80px 0;
}

/* Header Adjustments */
.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #111721 0%, #3e4455 100%);
}

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

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .card {
        transition: none;
    }
    
    .card:hover {
        transform: none;
    }
}

/* Team Member Images */
.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item img {
    border-radius: 4px;
}

/* Custom spacing for hero section */
#hero {
    padding-top: 76px;
}

/* Gallery images */
#gallery img {
    height: 250px;
    object-fit: cover;
    transition: transform 1.53s ease-in-out;
}

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

@media (prefers-reduced-motion: reduce) {
    #gallery img {
        transition: none;
    }
    
    #gallery img:hover {
        transform: none;
    }
}

/* FAQ Cards */
#faq .card {
    border-left: 4px solid var(--primary-color);
}

/* Pricing Cards */
#priceplan .card {
    border-radius: 16px;
}

#priceplan .card.border-primary {
    border-width: 2px;
}

/* Review Cards */
#reviews .fas.fa-star {
    font-size: 1.10rem;
}

/* Contact Info Icons */
#contacts .fas {
    width: 20px;
    text-align: center;
} 


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