:root {
    /* Primary Color Palette - Pastel High-Contrast */
    --primary-color: #6483ff;
    --primary-light: #5a7ced;
    --primary-dark: #2c31b1;
    
    --secondary-color: #00dbf3;
    --secondary-light: #4bcefa;
    --secondary-dark: #0e7db1;
    
    --accent-color: #ff9e37;
    --accent-light: #e7b52a;
    --accent-dark: #f18d18;
    
    --success-color: #05a873;
    --success-light: #3cdfcf;
    --success-dark: #008356;
    
    --neutral-color: #738090;
    --neutral-light: #697183;
    --neutral-dark: #3f4653;
    
    /* 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-padding: 2rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Header Styles */
.navbar-brand {
    font-weight: 700;
    font-size: 1.63rem;
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 1.55s ease;
}

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

/* Hero Section */
#hero {
    background: linear-gradient(135deg, #f8fafc 0%, #d1d3d9 100%);
    position: relative;
    overflow: hidden;
}

.hero-shape {
    width: 300px;
    height: 300px;
    background: var(--primary-light);
    border-radius: 50%;
    opacity: 0.1;
    top: 10%;
    right: -150px;
    z-index: 1;
}

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

/* Section Spacing */
section {
    padding: var(--section-padding);
}

/* Card Styles */
.card {
    transition: transform 0.90s ease, box-shadow 2.18s ease;
    border-radius: 12px;
}

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

/* Button Styles */
.btn {
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 1.81s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.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);
    transform: translateY(-2px);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

.display-4 {
    font-size: 2.64rem;
    font-weight: 700;
}

.lead {
    font-size: var(--font-size-lg);
    font-weight: 400;
}

/* Icon Styles */
.fa-3x {
    font-size: 2.67rem;
}

.fa-2x {
    font-size: 1.79rem;
}

/* Services Section */
#services .card-img-top {
    height: 200px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

/* Price Plan Highlights */
.card.border-primary {
    border-width: 2px;
    position: relative;
}

.badge {
    font-size: 0.94rem;
    padding: 0.5rem 1rem;
}

/* Team Section */
#team .card-img-top {
    height: 250px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

/* Process Section */
.bg-primary.rounded-circle {
    box-shadow: 0 6px 12px rgba(96, 93, 201, 0.30);
}

/* Contact Form */
.form-control {
    border-radius: 8px;
    border: 1px solid #f3f3f4;
    padding: 0.75rem;
    transition: border-color 0.85s ease, box-shadow 1.05s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(47, 55, 223, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--neutral-dark);
    margin-bottom: 0.80rem;
}

/* Footer */
#footer {
    background-color: #454b63;
}

#footer a:hover {
    color: var(--primary-light);
    transition: color 1.41s ease;
}

/* Breadcrumb */
.breadcrumb-section {
    background-color: #f8fafc;
    padding: 1rem 0;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color);
}

.bg-light {
    background-color: #f8fafc;
}

/* Stars Rating */
.fa-star.text-warning {
    color: #efa428;
}

/* Animation Base Styles */
[data-sal] {
    transition-duration: 1.92s;
    transition-timing-function: ease-out;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }
    
    .hero-shape {
        display: none;
    }
    
    #hero {
        min-height: 80vh;
    }
    
    .card-img-top {
        height: 180px;
    }
    
    #team .card-img-top {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .display-4 {
        font-size: 1.88rem;
    }
    
    .lead {
        font-size: var(--font-size-base);
    }
    
    section {
        padding: 3rem 0;
    }
    
    .card-body {
        padding: 1.5rem;
    }
}

/* Performance Optimizations */
.card-img-top {
    will-change: transform;
}

.btn {
    will-change: transform;
}

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

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #1c2ea5;
        --neutral-dark: #000000;
    }
    
    .card {
        border: 2px solid var(--neutral-dark);
    }
}

/* Print Styles */
@media print {
    .navbar,
    #footer,
    .btn {
        display: none;
    }
    
    section {
        page-break-inside: avoid;
    }
} 


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