/* CSS Variables - Color Palette */
:root {
    --primary-color: #6366f1;
    --primary-light: #a5b4fc;
    --primary-dark: #4338ca;
    --secondary-color: #ec4899;
    --secondary-light: #f9a8d4;
    --secondary-dark: #be185d;
    --accent-color: #10b981;
    --accent-light: #6ee7b7;
    --accent-dark: #047857;
    --neutral-color: #64748b;
    --neutral-light: #cbd5e1;
    --neutral-dark: #334155;
    --warning-color: #f59e0b;
    --warning-light: #fcd34d;
    --warning-dark: #d97706;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --dark-gray: #1e293b;
    --black: #0f172a;
}

/* Global Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--neutral-dark);
    overflow-x: hidden;
}

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

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

.section-title {
    font-size: 2.25rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.section-description {
    font-size: 1rem;
    color: var(--neutral-color);
    max-width: 600px;
    margin: 0 auto 2rem;
}

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

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

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    position: relative;
    padding-top: 80px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    padding-top: 225px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--neutral-color);
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    margin-right: 1rem;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: 10%;
    right: -150px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
    bottom: 20%;
    left: -100px;
}

/* Feature Cards */
.feature-card {
    padding: 2rem 1.5rem;
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-icon-large {
    font-size: 3rem;
    color: var(--primary-color);
    margin-right: 1.5rem;
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

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

.service-content {
    padding: 1.5rem;
}

.service-content h4 {
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.service-content p {
    color: var(--neutral-color);
    margin-bottom: 1rem;
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-content ul li {
    padding: 0.25rem 0;
    color: var(--neutral-color);
    position: relative;
    padding-left: 1.5rem;
}

.service-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
}

/* Feature Box */
.feature-box {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-3px);
}

.feature-content h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--neutral-color);
    margin: 0;
}

/* Pricing Cards */
.pricing-card {
    background: var(--white);
    border: 2px solid var(--neutral-light);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.15);
}

.pricing-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pricing-header h4 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--neutral-color);
    border-bottom: 1px solid var(--neutral-light);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Team Cards */
.team-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--primary-light);
}

.team-card h5 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.team-card p {
    color: var(--neutral-color);
    margin: 0;
}

/* Review Cards */
.review-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 3rem;
    color: var(--primary-light);
    font-family: serif;
}

.review-content p {
    color: var(--neutral-dark);
    font-style: italic;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.review-author {
    color: var(--primary-color);
    font-weight: 600;
}

/* Case Study Cards */
.case-study-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.case-study-card:hover {
    transform: translateY(-5px);
}

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

.case-study-content {
    padding: 1.5rem;
}

.case-study-content h4 {
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.case-study-content p {
    color: var(--neutral-color);
    margin: 0;
}

/* Process Steps */
.process-step {
    padding: 2rem 1rem;
}

.process-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h5 {
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--neutral-color);
    margin: 0;
}

/* Blog Cards */
.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
}

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

.blog-content {
    padding: 1.5rem;
}

.blog-content h4 {
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.blog-content p {
    color: var(--neutral-color);
    margin-bottom: 1rem;
}

/* FAQ Cards */
.faq-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.faq-card h5 {
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.faq-card p {
    color: var(--neutral-color);
    margin: 0;
}

/* Gallery */
.gallery-image {
    border-radius: 8px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-image:hover {
    transform: scale(1.05);
}

/* Contact Form */
.contact-form .form-control {
    border: 2px solid var(--neutral-light);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

.contact-info {
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-item i {
    color: var(--primary-color);
    margin-right: 1rem;
    width: 20px;
}

/* Breadcrumb */
.breadcrumb-nav {
    background: var(--light-gray);
    padding: 1rem 0;
}

.breadcrumb-icon {
    width: 24px;
    height: 24px;
}

/* Additional Page Cards */
.blog-post-card,
.technique-card,
.application-card,
.insight-card,
.guide-card,
.resource-card,
.download-card,
.training-card,
.community-card,
.support-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.blog-post-card:hover,
.technique-card:hover,
.application-card:hover,
.insight-card:hover,
.guide-card:hover,
.resource-card:hover,
.download-card:hover,
.training-card:hover,
.community-card:hover,
.support-card:hover {
    transform: translateY(-3px);
}

.blog-post-card h4,
.technique-card h4,
.application-card h4,
.insight-card h4,
.guide-card h4,
.resource-card h4,
.download-card h4,
.training-card h4,
.community-card h4,
.support-card h4 {
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.blog-post-card p,
.technique-card p,
.application-card p,
.insight-card p,
.guide-card p,
.resource-card p,
.download-card p,
.training-card p,
.community-card p,
.support-card p {
    color: var(--neutral-color);
    margin: 0;
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

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

.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);
    color: var(--white);
}

.btn-outline-secondary {
    color: var(--neutral-color);
    border-color: var(--neutral-color);
}

.btn-outline-secondary:hover {
    background-color: var(--neutral-color);
    border-color: var(--neutral-color);
    color: var(--white);
}

/* Footer */
#footer {
    background-color: var(--dark-gray);
    color: var(--neutral-light);
}

#footer h5,
#footer h6 {
    color: var(--white);
}

#footer a {
    color: var(--neutral-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

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

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

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

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

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

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

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

/* Animations */
.sal-animate {
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
} 


/* Team Social Links - Retro Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

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

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 0;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 3px solid;
    background: transparent;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}

.social-link:hover {
    transform: translateX(3px) translateY(-3px);
    box-shadow: -3px 3px 0px currentColor;
    color: white;
}

.facebook-link {
    border-color: #1877f2;
    background: #1877f2;
}

.facebook-link:hover {
    background: transparent;
    color: #1877f2;
}

.linkedin-link {
    border-color: #0a66c2;
    background: #0a66c2;
}

.linkedin-link:hover {
    background: transparent;
    color: #0a66c2;
}

.instagram-link {
    border-color: #e4405f;
    background: #e4405f;
}

.instagram-link:hover {
    background: transparent;
    color: #e4405f;
}

.x-link {
    border-color: #000000;
    background: #000000;
    position: relative;
}

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

.x-link:hover {
    background: transparent;
    color: #000000;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
