:root {
    --primary-color: #8B4A8B;
    --primary-light: #B894B8;
    --primary-dark: #5E2A5E;
    --secondary-color: #D4B896;
    --secondary-light: #E8D4B6;
    --secondary-dark: #B8976B;
    --accent-color: #96C7D4;
    --accent-light: #B6D9E8;
    --accent-dark: #6BA2B8;
    --text-color: #4A3728;
    --text-light: #8B7B6B;
    --bg-light: #FAF8F6;
    --white: #FFFFFF;
    --border-color: #E8E4E0;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-dark);
    font-weight: 600;
}

.display-4 {
    font-size: 2.5rem;
    font-weight: 700;
}

.lead {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Header */
#header {
    background-color: var(--white) !important;
    border-bottom: 1px solid var(--border-color);
}

.navbar-brand {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.75rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--secondary-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero-decoration {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

#hero .container {
    position: relative;
    z-index: 2;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Cards */
.card {
    border: 1px solid var(--border-color);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 74, 139, 0.1);
}

.card-img-top {
    border-radius: 15px 15px 0 0;
    height: 200px;
    object-fit: cover;
}

/* Services Section */
#services .card {
    height: 100%;
}

#services .card-body {
    padding: 2rem;
}

#services .h4 {
    color: var(--primary-color);
    font-weight: 700;
}

/* Features Section */
#features .fas {
    color: var(--accent-color);
}

/* Team Section */
#team .card-img-top {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    margin: 1rem auto;
    object-fit: cover;
}

/* Reviews Section */
#reviews .fas.fa-star {
    color: #FFD700;
}

/* Gallery Section */
#gallery img {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* FAQ Section */
#faq .card {
    border-left: 4px solid var(--accent-color);
    margin-bottom: 1rem;
}

/* Contact Form */
.form-control {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 74, 139, 0.25);
}

/* Footer */
#footer {
    background-color: var(--text-color);
}

#footer h5 {
    color: var(--white);
    margin-bottom: 1rem;
}

#footer a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

#footer a:hover {
    color: var(--white);
}

/* Utility Classes */
.bg-light {
    background-color: var(--bg-light);
}

.text-primary {
    color: var(--primary-color);
}

.border-primary {
    border-color: var(--primary-color);
}

/* Animations - Respect prefers-reduced-motion */
@media (prefers-reduced-motion: no-preference) {
    .sal-animate {
        transition-duration: 0.5s;
        transition-timing-function: ease-out;
    }
    
    [data-sal] {
        transition-duration: 0.5s;
        transition-timing-function: ease-out;
    }
}

@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;
    }
}

/* Sections Padding */
section {
    padding: 4rem 0;
}

/* Badge Styles */
.badge {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
}

/* Price Plan Special Styling */
#priceplan .card.border-primary {
    border-width: 2px;
}

#priceplan .card-header {
    border-radius: 15px 15px 0 0;
}

/* Contact Info Icons */
#contacts .fas {
    color: var(--primary-color);
}

/* Shadow Utilities */
.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(139, 74, 139, 0.075);
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(139, 74, 139, 0.15);
} 


/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f77737, #fcaf45, #ffdc80);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
