/* business_support.css */

/* === RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === PAGE HEADER === */
.business-header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(42, 52, 62, 0.75) 100%),
                url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1600');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 50px 0 60px;
    position: relative;
    overflow: hidden;
}

.business-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.header-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 42px; /* Smaller font */
    font-weight: 700;
    margin-bottom: 18px;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease;
}

.page-subtitle {
    font-size: 18px; /* Smaller font */
    margin-bottom: 25px;
    opacity: 0.95;
    text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.breadcrumb-nav a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.breadcrumb-nav a:hover {
    color: #667eea;
}

.breadcrumb-nav span:last-child {
    color: rgba(255, 255, 255, 0.7);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === MAIN SECTION === */
.business-main-section {
    padding: 70px 0;
    background: #f5f7fa;
}

/* === INTRODUCTION SECTION === */
.intro-section {
    margin-bottom: 70px;
}

.intro-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    height: 450px;
}

.intro-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.25) 0%, rgba(102, 126, 234, 0.15) 100%);
}

.intro-content {
    padding-left: 30px;
}

.intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 25px;
    border: 2px solid #667eea;
    margin-bottom: 20px;
}

.intro-badge i {
    font-size: 18px;
    color: #667eea;
}

.intro-badge span {
    font-size: 13px; /* Smaller font */
    font-weight: 600;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.intro-title {
    font-size: 32px; /* Smaller font */
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 20px;
    line-height: 1.3;
}

.intro-text {
    font-size: 15px; /* Smaller font */
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

/* === SERVICES CATEGORIES SECTION === */
.services-categories-section {
    margin-bottom: 70px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-main-title {
    font-size: 36px; /* Smaller font */
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 16px; /* Smaller font */
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Category Card */
.service-category {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.service-category:hover {
    border-left-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.category-header {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
}

.category-icon {
    width: 70px; /* Smaller */
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.category-icon i {
    font-size: 32px; /* Smaller */
    color: white;
}

.category-title-wrapper {
    flex: 1;
}

.category-label {
    display: inline-block;
    padding: 5px 15px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: #667eea;
    border-radius: 15px;
    font-size: 12px; /* Smaller */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.category-title {
    font-size: 22px; /* Smaller font */
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 8px;
}

.category-description {
    font-size: 14px; /* Smaller font */
    color: #666;
    margin: 0;
}

/* Services List */
.services-list {
    display: grid;
    gap: 12px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    transform: translateX(5px);
}

.service-item i {
    color: #667eea;
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 16px;
}

.service-item span {
    font-size: 14px; /* Smaller font */
    line-height: 1.6;
    color: #555;
}

.service-item-header {
    font-size: 15px; /* Smaller font */
    font-weight: 600;
    color: #1e3c72;
    margin: 15px 0 10px 0;
    padding-left: 12px;
}

.service-item.indent {
    margin-left: 25px;
    background: transparent;
}

.service-item.indent:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.service-item.indent i {
    color: #999;
    font-size: 14px;
}

/* === BENEFITS SECTION === */
.benefits-section {
    margin-bottom: 70px;
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.section-title-center {
    font-size: 32px; /* Smaller font */
    font-weight: 700;
    color: #1e3c72;
    text-align: center;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    border-color: #667eea;
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.benefit-icon {
    width: 65px; /* Smaller */
    height: 65px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 28px; /* Smaller */
    color: white;
}

.benefit-card h4 {
    font-size: 18px; /* Smaller font */
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 14px; /* Smaller font */
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 36px; /* Smaller font */
    font-weight: 700;
    color: white;
    margin-bottom: 18px;
}

.cta-content p {
    font-size: 16px; /* Smaller font */
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 45px; /* Smaller padding */
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px; /* Smaller font */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: #667eea;
    text-decoration: none;
}

.cta-btn i {
    font-size: 16px;
}

/* === BOOTSTRAP GRID === */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.align-items-center {
    align-items: center;
}

.col-lg-6 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 992px) {
    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-lg-0 {
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .mb-lg-0 {
        margin-bottom: 0 !important;
    }
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .intro-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .intro-image-wrapper {
        height: 350px;
    }

    .page-title {
        font-size: 36px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .section-main-title {
        font-size: 30px;
    }

    .intro-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .business-main-section {
        padding: 50px 0;
    }

    .page-title {
        font-size: 30px;
    }

    .page-subtitle {
        font-size: 15px;
    }

    .intro-section {
        margin-bottom: 50px;
    }

    .intro-image-wrapper {
        height: 280px;
    }

    .intro-title {
        font-size: 24px;
    }

    .intro-text {
        font-size: 14px;
    }

    .section-main-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .service-category {
        padding: 30px 20px;
    }

    .category-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .category-icon {
        width: 60px;
        height: 60px;
    }

    .category-icon i {
        font-size: 28px;
    }

    .category-title {
        font-size: 20px;
    }

    .category-description {
        font-size: 13px;
    }

    .service-item {
        padding: 10px;
    }

    .service-item span {
        font-size: 13px;
    }

    .benefits-section {
        padding: 40px 20px;
    }

    .section-title-center {
        font-size: 26px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-icon {
        width: 55px;
        height: 55px;
    }

    .benefit-icon i {
        font-size: 24px;
    }

    .benefit-card h4 {
        font-size: 16px;
    }

    .benefit-card p {
        font-size: 13px;
    }

    .cta-section {
        padding: 50px 25px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 14px;
    }

    .cta-btn {
        padding: 14px 35px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 26px;
    }

    .intro-image-wrapper {
        height: 250px;
    }

    .category-title {
        font-size: 18px;
    }

    .service-category {
        padding: 25px 15px;
    }

    .service-item.indent {
        margin-left: 15px;
    }
}

/* === UTILITY CLASSES === */
.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}