:root {
    --primary-color: #6f52ca;
    --primary-light: #9254c1;
    --primary-dark: #381881;
    --secondary-color: #ff7b1f;
    --secondary-light: #ea3d12;
    --secondary-dark: #da5f1f;
    --accent-color: #1fc27d;
    --accent-light: #2cb789;
    --accent-dark: #049a71;
    --neutral-color: #758295;
    --neutral-light: #88898a;
    --neutral-dark: #525e65;
    --light-color: #f8f9fa;
    --light-shade: #ffffff;
    --dark-color: #272b2f;
    --dark-shade: #33393e;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--dark-color);
}

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

.lead {
    font-size: 1.39rem;
    font-weight: 400;
}

/* Header Styles */
.navbar {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(17px);
    box-shadow: 0 8px 11px rgba(0, 0, 0, 0.1);
    transition: all 0.50s ease;
}

.navbar-brand {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

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

#hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(111, 66, 193, 0.05) 0%, transparent 70%);
    z-index: 1;
}

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

/* Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    padding: 0.75rem 2rem;
    transition: all 1.82s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 11px 19px rgba(92, 44, 191, 0.30);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
}

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

/* Card Styles */
.card {
    border: none;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.08);
    transition: all 1.61s ease;
    border-radius: 10px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 1.41s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

/* Services Section */
#services .card {
    background: white;
    border-radius: 15px;
}

#services-item-1 .card {
    border-top: 4px solid var(--primary-color);
}

#services-item-2 .card {
    border-top: 4px solid var(--secondary-color);
}

#services-item-3 .card {
    border-top: 4px solid var(--accent-color);
}

#services-item-4 .card {
    border-top: 4px solid var(--primary-color);
}

#services-item-5 .card {
    border-top: 4px solid var(--secondary-color);
}

#services-item-6 .card {
    border-top: 4px solid var(--accent-color);
}

/* Team Section */
.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid var(--light-shade);
    transition: all 1.98s ease;
}

.team-member:hover img {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

/* Price Plan Section */
#priceplan .card {
    position: relative;
}

#priceplan .card.border-primary {
    border-width: 2px;
    transform: scale(1.05);
}

#priceplan .card.border-primary::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 1.13rem;
    font-weight: 600;
}

/* Process Section */
.process-step {
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: var(--light-shade);
    z-index: 1;
}

.process-step:last-child::after {
    display: none;
}

/* Gallery Section */
#gallery img {
    transition: all 1.67s ease;
    border-radius: 10px;
}

#gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Contact Form */
.form-control {
    border: 2px solid var(--light-shade);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 1.26s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(115, 71, 183, 0.25);
}

/* Footer */
#footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-shade) 100%);
}

#footer a {
    text-decoration: none;
    transition: color 0.99s ease;
}

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

/* Breadcrumb */
.breadcrumb-nav {
    padding-top: 6rem;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: all 1.35s ease;
    }
    
    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Icon Styles */
.fa-3x {
    color: var(--primary-color);
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.text-success {
    color: var(--accent-color) !important;
}

/* Section Spacing */
section {
    padding: 5rem 0;
}

section.py-5 {
    padding: 5rem 0;
}

/* Background Colors */
.bg-light {
    background-color: var(--light-shade) !important;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-5 {
    margin-top: 3rem;
}

/* Custom Grid Fix for Team Section */
.col-lg-2-4 {
    flex: 0 0 20%;
    max-width: 20%;
}

@media (max-width: 991.98px) {
    .col-lg-2-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 575.98px) {
    .col-lg-2-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

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

/* Print Styles */
@media print {
    .navbar,
    #footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid #ddcdcf;
    }
} 


/* Team Social Links - Gradient Style */
.team-social-links {
    margin-top: 20px;
    padding: 18px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 20px;
}

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

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.social-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.linkedin-link {
    background: linear-gradient(135deg, #2196f3 0%, #21cbf3 100%);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #21cbf3 0%, #2196f3 100%);
}

.instagram-link {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.x-link {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    position: relative;
}

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

.x-link:hover {
    background: linear-gradient(135deg, #414345 0%, #232526 100%);
}

.x-link i {
    display: none;
}

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