﻿/* ========================================
   HOME PAGE STYLES - Marketing Site
   ======================================== */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--bs3-primary-base) 0%, var(--bs3-primary-base-linear-color2) 100%);
    padding: 60px 40px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo {
    height: 120px;
    width: auto;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
}

.hero-title {
    color: #fff;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 20px;
    line-height: 1.6;
    margin: 0;
}

/* Home Sections Container */
.home-sections {
    margin-top: 30px;
}

/* Individual Section Styles */
.home-section {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

    .home-section:hover {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
        transform: translateY(-2px);
    }

.section-icon {
    text-align: center;
    margin-bottom: 25px;
}

    .section-icon i {
        color: var(--bs3-primary-base);
    }

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: var(--bs3-text-primary);
    margin-bottom: 20px;
}

.section-description {
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-actions {
    text-align: center;
    margin-bottom: 20px;
}

    .section-actions .btn {
        margin: 8px;
        padding: 12px 30px;
        font-size: 16px;
        font-weight: 500;
    }

.section-note {
    text-align: center;
    font-size: 14px;
    color: #777;
    font-style: italic;
    margin: 0;
}

    .section-note i {
        margin-right: 5px;
    }

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature-item {
    text-align: center;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .feature-item:hover {
        background: #fff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: translateY(-4px);
    }

    .feature-item i {
        font-size: 36px;
        color: var(--bs3-primary-base);
        margin-bottom: 15px;
    }

    .feature-item h4 {
        font-size: 18px;
        font-weight: 600;
        color: var(--bs3-text-primary);
        margin-bottom: 10px;
    }

    .feature-item p {
        font-size: 14px;
        color: #666;
        margin: 0;
        line-height: 1.5;
    }

/* Section-Specific Styles */
.existing-users {
    border-top: 4px solid var(--bs3-primary-base);
}

.what-we-offer {
    border-top: 4px solid var(--bs3-success-base);
}

.new-users {
    border-top: 4px solid var(--bs3-info-base);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-section {
        padding: 50px 30px;
    }

    .hero-logo {
        height: 100px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 40px 20px;
    }

    .hero-logo {
        height: 80px;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .home-section {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-description {
        font-size: 15px;
    }

    .section-actions .btn {
        display: block;
        width: 100%;
        margin: 8px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Button Enhancements for Home Page */
.home-section .btn-lg {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

    .home-section .btn-lg:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

.home-section .btn-primary:hover {
    background-color: var(--bs3-primary-hover);
    border-color: var(--bs3-primary-active);
}

.home-section .btn-default:hover {
    background-color: #f8f9fa;
    border-color: var(--bs3-primary-base);
    color: var(--bs3-primary-base);
}

.home-section .btn-info:hover {
    background-color: var(--bs3-info-hover);
    border-color: var(--bs3-info-active);
}

.home-section .btn-success:hover {
    background-color: var(--bs3-success-hover);
    border-color: var(--bs3-success-active);
}

/* ========================================
   ABOUT US PAGE STYLES
   ======================================== */

/* Page Header */
.page-header-section {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 40px;
    background: linear-gradient(135deg, var(--bs3-primary-base) 0%, var(--bs3-primary-base-linear-color2) 100%);
    border-radius: 8px;
}

.page-main-title {
    color: #fff;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.page-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    margin: 0;
    font-style: italic;
}

/* About Sections */
.about-sections {
    margin-top: 30px;
}

.about-section {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

    .about-section:hover {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    }

.highlight-section {
    background: linear-gradient(to bottom right, #fff 0%, #f8f9fa 100%);
    border-left: 4px solid var(--bs3-primary-base);
}

.about-icon {
    text-align: center;
    margin-bottom: 25px;
}

    .about-icon i {
        color: var(--bs3-primary-base);
    }

.about-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: var(--bs3-text-primary);
    margin-bottom: 30px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

    .about-content p {
        font-size: 16px;
        line-height: 1.8;
        color: #555;
        margin-bottom: 20px;
    }

/* Services List */
.services-list {
    margin-top: 30px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

    .service-item:hover {
        background: #f8f9fa;
        transform: translateX(10px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .service-item > i {
        color: var(--bs3-success-base);
        font-size: 24px;
        flex-shrink: 0;
        margin-top: 5px;
    }

    .service-item h4 {
        font-size: 18px;
        font-weight: 600;
        color: var(--bs3-text-primary);
        margin: 0 0 8px 0;
    }

    .service-item p {
        font-size: 14px;
        color: #666;
        margin: 0;
        line-height: 1.6;
    }

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

    .benefit-card:hover {
        border-color: var(--bs3-primary-base);
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .benefit-card i {
        font-size: 40px;
        color: var(--bs3-primary-base);
        margin-bottom: 15px;
    }

    .benefit-card h4 {
        font-size: 18px;
        font-weight: 600;
        color: var(--bs3-text-primary);
        margin-bottom: 10px;
    }

    .benefit-card p {
        font-size: 14px;
        color: #666;
        margin: 0;
        line-height: 1.6;
    }

/* CTA Section */
.cta-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #e9ecef;
    text-align: center;
}

.cta-text {
    font-size: 20px;
    font-weight: 500;
    color: var(--bs3-text-primary);
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

    .cta-buttons .btn {
        padding: 12px 30px;
        font-size: 16px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
    }

        .cta-buttons .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

/* About Page Responsive */
@media (max-width: 991px) {
    .page-main-title {
        font-size: 36px;
    }

    .page-subtitle {
        font-size: 18px;
    }

    .about-title {
        font-size: 28px;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .page-header-section {
        padding: 30px 15px;
    }

    .page-main-title {
        font-size: 28px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .about-section {
        padding: 30px 20px;
    }

    .about-title {
        font-size: 24px;
    }

    .about-content p {
        font-size: 15px;
    }

    .service-item {
        flex-direction: column;
        gap: 10px;
    }

        .service-item > i {
            align-self: center;
        }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .cta-buttons {
        flex-direction: column;
    }

        .cta-buttons .btn {
            width: 100%;
        }
}

/* ========================================
   SERVICES PAGE STYLES
   ======================================== */

.services-page-sections {
    margin-top: 30px;
}

.services-intro {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--bs3-primary-base);
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin: 0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.services-categories {
    margin-bottom: 40px;
}

.service-category {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.category-header {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid #e9ecef;
}

    .category-header i {
        color: var(--bs3-primary-base);
        margin-bottom: 15px;
    }

    .category-header h2 {
        font-size: 28px;
        font-weight: 600;
        color: var(--bs3-text-primary);
        margin: 0;
    }

.category-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.service-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .service-card:hover {
        background: #fff;
        border-color: var(--bs3-primary-base);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: translateY(-5px);
    }

.service-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

    .service-card-header i {
        font-size: 28px;
        color: var(--bs3-primary-base);
    }

    .service-card-header h3 {
        font-size: 20px;
        font-weight: 600;
        color: var(--bs3-text-primary);
        margin: 0;
    }

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .service-features li {
        font-size: 14px;
        color: #555;
        padding: 8px 0;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .service-features li i {
            color: var(--bs3-success-base);
            font-size: 16px;
        }

.services-cta {
    background: linear-gradient(135deg, var(--bs3-primary-base) 0%, var(--bs3-primary-base-linear-color2) 100%);
    padding: 50px 40px;
    border-radius: 8px;
    text-align: center;
    color: #fff;
}

    .services-cta h2 {
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 15px;
        color: #fff;
    }

    .services-cta p {
        font-size: 18px;
        margin-bottom: 30px;
        color: rgba(255, 255, 255, 0.95);
    }

    .services-cta .cta-buttons .btn {
        background: #fff;
        color: var(--bs3-primary-base);
        border: 2px solid #fff;
    }

        .services-cta .cta-buttons .btn:hover {
            background: transparent;
            color: #fff;
            border-color: #fff;
        }

/* Services Page Responsive */
@media (max-width: 991px) {
    .category-services {
        grid-template-columns: 1fr;
    }

    .category-header h2 {
        font-size: 24px;
    }

    .services-cta h2 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .services-intro {
        padding: 20px;
    }

    .intro-text {
        font-size: 16px;
    }

    .service-category {
        padding: 25px 20px;
    }

    .service-card {
        padding: 20px;
    }

    .services-cta {
        padding: 30px 20px;
    }

        .services-cta h2 {
            font-size: 24px;
        }

        .services-cta p {
            font-size: 16px;
        }
}

/* ========================================
   CONTACT US PAGE STYLES
   ======================================== */

.contact-page-sections {
    margin-top: 30px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-method-card {
    background: #fff;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
}

    .contact-method-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        border-color: var(--bs3-primary-base);
    }

.primary-card {
    background: linear-gradient(135deg, var(--bs3-primary-base) 0%, var(--bs3-primary-base-linear-color2) 100%);
    color: #fff;
    border-color: var(--bs3-primary-base);
}

    .primary-card:hover {
        border-color: var(--bs3-primary-hover);
    }

    .primary-card h3,
    .primary-card .contact-detail,
    .primary-card .contact-description,
    .primary-card .contact-hours {
        color: #fff;
    }

    .primary-card .contact-icon i {
        color: #fff;
    }

.contact-icon {
    margin-bottom: 20px;
}

    .contact-icon i {
        color: var(--bs3-primary-base);
    }

.contact-method-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--bs3-text-primary);
}

.contact-detail {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--bs3-primary-base);
}

    .contact-detail a {
        color: inherit;
        text-decoration: none;
        border-bottom: 2px solid transparent;
        transition: all 0.3s ease;
    }

        .contact-detail a:hover {
            border-bottom-color: currentColor;
        }

.contact-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.contact-hours {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

    .contact-hours i {
        margin-right: 5px;
    }

.support-section {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.support-title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: var(--bs3-text-primary);
    margin-bottom: 35px;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.support-card {
    text-align: center;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .support-card:hover {
        background: #fff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: translateY(-3px);
    }

    .support-card i {
        color: var(--bs3-primary-base);
        margin-bottom: 15px;
    }

    .support-card h4 {
        font-size: 18px;
        font-weight: 600;
        color: var(--bs3-text-primary);
        margin-bottom: 10px;
    }

    .support-card p {
        font-size: 14px;
        color: #666;
        margin: 0;
        line-height: 1.6;
    }

.quick-actions-section {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 40px;
}

    .quick-actions-section h2 {
        text-align: center;
        font-size: 28px;
        font-weight: 600;
        color: var(--bs3-text-primary);
        margin-bottom: 35px;
    }

.action-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.action-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

    .action-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    }

    .action-card i {
        font-size: 36px;
        color: var(--bs3-primary-base);
        margin-bottom: 15px;
    }

    .action-card h4 {
        font-size: 18px;
        font-weight: 600;
        color: var(--bs3-text-primary);
        margin-bottom: 10px;
    }

    .action-card p {
        font-size: 14px;
        color: #666;
        margin-bottom: 20px;
    }

    .action-card .btn {
        width: 100%;
        padding: 10px;
    }

.company-info-section {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-top: 3px solid var(--bs3-primary-base);
}

    .company-info-section h3 {
        font-size: 22px;
        font-weight: 600;
        color: var(--bs3-text-primary);
        margin-bottom: 15px;
    }

    .company-info-section p {
        font-size: 15px;
        line-height: 1.8;
        color: #666;
        margin: 0;
        max-width: 800px;
        margin: 0 auto;
    }

/* Contact Page Responsive */
@media (max-width: 991px) {
    .contact-methods {
        grid-template-columns: 1fr;
    }

    .support-options {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .action-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .contact-method-card {
        padding: 30px 20px;
    }

    .support-section {
        padding: 30px 20px;
    }

    .support-options {
        grid-template-columns: 1fr;
    }

    .quick-actions-section {
        padding: 30px 20px;
    }

    .company-info-section {
        padding: 25px 20px;
    }
}
