:root {
    --primary-color: #7b76f5;
    --secondary-color: #715cef;
    --accent-color: #05b4de;
    --neutral-color: #4c5776;
    --highlight-color: #fe8b17;
    --light-bg: #f8fafc;
    --dark-bg: #1d2b39;
    --text-dark: #465168;
    --text-light: #94adcd;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Conservative typography */
.navbar-brand {
    font-size: 1.31rem !important;
    font-weight: 600;
    color: var(--primary-color);
}

h1 {
    font-size: 2.53rem;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

h5 {
    font-size: 1.13rem;
    font-weight: 500;
}

p.lead {
    font-size: 1.12rem;
    color: var(--text-light);
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(113, 106, 254, 0.10) 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);
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 0.5rem;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Card Styles */
.card {
    border: none;
    box-shadow: 0 6px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.95s ease, box-shadow 0.95s ease;
    border-radius: 0.75rem;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 13px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Icon Styles */
.text-primary {
    color: var(--primary-color) !important;
}

/* Gallery Section */
#gallery img {
    transition: transform 0.87s ease;
    border-radius: 0.5rem;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* Contact Section */
.form-control {
    border-radius: 0.5rem;
    border: 1px solid #f6f6f6;
    padding: 0.75rem 1rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(111, 131, 224, 0.25);
}

/* Footer */
#footer {
    background-color: var(--dark-bg) !important;
}

#footer h5, #footer h6 {
    color: #ffffff;
}

#footer p, #footer small {
    color: var(--text-light);
}

#footer a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 1.00s ease;
}

#footer a:hover {
    color: #ffffff;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .card:hover {
        transform: none;
    }
    
    #gallery img:hover {
        transform: none;
    }
}

/* Section Spacing */
.py-5 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* Background Colors */
.bg-light {
    background-color: var(--light-bg) !important;
}

/* Contact Info Styles */
.contact-info {
    padding: 2rem;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    width: 20px;
}

/* Price Plan Cards */
.border-primary {
    border: 2px solid var(--primary-color) !important;
}

/* FAQ Cards */
#faq .card {
    margin-bottom: 1rem;
}

#faq .card-title {
    font-weight: 600;
    color: var(--text-dark);
}

/* Team Section */
#team img {
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Process Section */
.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Services Section */
#services .card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Reviews Section */
#reviews .blockquote-footer {
    margin-top: 1rem;
}

#reviews .blockquote-footer cite {
    font-style: normal;
    font-weight: 500;
    color: var(--text-dark);
} 


/* Team Social Links - Glass Style */
.team-social-links {
    margin-top: 22px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.3);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 0.5);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.3);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 0.5);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.3);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 0.5);
}

.x-link {
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 0.5);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
