/* InfluPay - Main CSS */

/* Color Variables */
:root {
    --primary-color: #4f68f6;
    --primary-light: #9da6fe;
    --primary-dark: #3f37ef;
    --secondary-color: #18b98b;
    --secondary-light: #51d092;
    --secondary-dark: #027f52;
    --accent-color: #f3991b;
    --accent-light: #e2aa13;
    --accent-dark: #ee7a0c;
    --neutral-color: #6b7b90;
    --neutral-light: #bcc5cc;
    --neutral-dark: #353d45;
    --error-color: #df4f3b;
    --error-light: #f09a9f;
    --error-dark: #e9152d;
    
    /* Bootstrap 5 integration */
    --bs-primary: var(--primary-color);
    --bs-secondary: var(--secondary-color);
    --bs-success: var(--secondary-color);
    --bs-warning: var(--accent-color);
    --bs-danger: var(--error-color);
}

/* Typography */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--neutral-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--neutral-dark);
}

/* Conservative font sizes - only affecting specific brand element */
.influpay-brand {
    font-size: 1.59rem;
}

h1, .display-4 {
    font-size: 2.63rem;
}

.lead {
    font-size: 1.17rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    pointer-events: none;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 500;
}

/* Custom Components - NOT Bootstrap overrides */
.feature-card {
    background: white;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 9px 6px rgba(0, 0, 0, 0.07);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.service-card .list-unstyled li {
    padding: 5px 0;
}

.feature-box {
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 6px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-6px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(96, 113, 222, 0.10);
    border-radius: 12px;
    flex-shrink: 0;
}

.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 19px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.border-primary {
    border-color: var(--primary-color);
}

.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.review-card {
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
}

.stars .fa-star {
    font-size: 0.92rem;
}

.process-step .step-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
}

.timeline-item .timeline-year {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.93rem;
}

.career-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 11px 25px rgba(0, 0, 0, 0.1);
}

.info-card {
    background: white;
    border-radius: 12px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 6px rgba(0, 0, 0, 0.07);
}

.info-card:hover {
    transform: translateY(-3px);
}

.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 17px 40px rgba(0, 0, 0, 0.1);
}

.blog-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .card-img-top {
    transform: scale(1.05);
}

.faq-card {
    transition: transform 0.3s ease;
    border-left: 6px solid var(--primary-color);
}

.faq-card:hover {
    transform: translateX(5px);
}

.case-study-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    transition: transform 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
}

.case-study-card .card-title {
    color: white;
}

.case-study-card .card-text {
    color: rgba(255, 255, 255, 0.9);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-info .contact-item i {
    width: 24px;
    font-size: 1.33rem;
    margin-top: 5px;
}

#gallery img {
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

#gallery img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.footer {
    background: linear-gradient(135deg, var(--neutral-dark), #171d25);
}

.footer a:hover {
    color: var(--primary-light);
}

/* Custom button styles using Bootstrap utilities */
.btn-influpay-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    box-shadow: 0 4px 15px rgba(120, 131, 245, 0.30);
    border-radius: 8px;
    font-weight: 500;
    padding: 10px 24px;
    transition: all 0.3s ease;
    color: white;
}

.btn-influpay-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 116, 255, 0.40);
    color: white;
}

/* Custom navbar styles */
.influpay-navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
}

.influpay-navbar-brand {
    font-weight: 700;
    color: var(--primary-color);
}

.influpay-nav-link {
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.influpay-nav-link:hover {
    background: rgba(99, 105, 217, 0.10);
    color: var(--primary-color);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
        transition-duration: 0.01ms;
    }
}

/* Focus styles for better accessibility */
.btn:focus,
.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 3px rgba(103, 93, 255, 0.20);
    border-color: var(--primary-color);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
} 

.hero-section h1 {
    padding-top: 125px;
}


/* 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);
}

.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;
    }
}
