/* Color Variables */
:root {
    --primary-color: #8B4A9C;
    --primary-light: #B06BC7;
    --primary-dark: #6A3A7A;
    --secondary-color: #F4A261;
    --secondary-light: #F7B985;
    --secondary-dark: #E88F3E;
    --accent-color: #2A9D8F;
    --accent-light: #4FB3A8;
    --accent-dark: #1F7A6B;
    --neutral-color: #E9C46A;
    --neutral-light: #EFCE7E;
    --neutral-dark: #D4AF4A;
    --craft-color: #E76F51;
    --craft-light: #ED8A72;
    --craft-dark: #D4553B;
    
    --light-bg: #FEFEFE;
    --dark-bg: #2C2C2C;
    --text-dark: #333333;
    --text-light: #666666;
    --text-muted: #999999;
}

/* Bootstrap Color Overrides */
.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);
}

.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);
}

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

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

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

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

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

.display-4 {
    font-size: 2.5rem;
}

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

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

.hero-shape {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
}

.hero-image-wrapper {
    position: relative;
    z-index: 1;
}

.hero-buttons .btn {
    min-width: 150px;
}

/* Feature Cards */
.feature-card {
    border: 1px solid #E9ECEF;
    border-radius: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.feature-icon i {
    color: white;
}

/* Service Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #E9ECEF;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
}

.service-image img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.price-tag {
    border-top: 1px solid #E9ECEF;
    padding-top: 1rem;
    margin-top: auto;
}

/* Pricing Cards */
.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #E9ECEF;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.15);
}

.pricing-card.bg-primary {
    border: none;
    transform: scale(1.05);
}

.pricing-card.bg-primary:hover {
    transform: scale(1.08) translateY(-5px);
}

/* Team Section */
.team-photo img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.team-member {
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-3px);
}

/* Review Cards */
.review-card {
    border: 1px solid #E9ECEF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.stars i {
    font-size: 0.9rem;
}

/* Process Steps */
.step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
}

.process-step {
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-3px);
}

/* Gallery */
#gallery img {
    transition: transform 0.3s ease, opacity 0.3s ease;
    height: 250px;
    object-fit: cover;
    width: 100%;
}

#gallery img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* FAQ Cards */
.faq-card {
    border: 1px solid #E9ECEF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}

/* Contact Form */
.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #E9ECEF;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 74, 156, 0.25);
}

.contact-info .contact-item {
    padding: 1rem;
    border-radius: 0.5rem;
    background: rgba(139, 74, 156, 0.05);
    margin-bottom: 1rem;
}

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

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

/* Additional Page Styles */
.blog-card {
    border: 1px solid #E9ECEF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
}

.blog-image img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.timeline-year {
    width: 60px;
    height: 60px;
    font-size: 0.8rem;
}

.career-card,
.info-card,
.resource-card,
.training-card,
.tool-card,
.tip-card,
.support-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #E9ECEF;
}

.career-card:hover,
.info-card:hover,
.resource-card:hover,
.training-card:hover,
.tool-card:hover,
.tip-card:hover,
.support-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.tip-number {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
}

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

.breadcrumb-item img {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.breadcrumb-item img:hover {
    opacity: 1;
}

/* Utility Classes */
.shadow-custom {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.border-custom {
    border: 2px solid var(--primary-color);
}

/* Animations - ScrollReveal will handle these */
.reveal-fade {
    opacity: 0;
}

.reveal-slide {
    transform: translateY(30px);
    opacity: 0;
}

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

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

/* Custom Spacing */
.section-padding {
    padding: 5rem 0;
}

.section-padding-sm {
    padding: 3rem 0;
} 

.hero-section h1 {
    padding-top: 250px;
}


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