/* Business Page Specific Styles */

/* Hero Section */
.business-hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #264653;
}

.business-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.business-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.business-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(38, 70, 83, 0.9), rgba(42, 157, 143, 0.85));
    z-index: 1;
}

.business-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 20px;
}

.business-hero-content h1 {
    font-size: 56px;
    font-family: 'Archivo Black', sans-serif;
    font-weight: 400;
    margin-top: 40px;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.business-hero-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* Why Business Section - Minimalist Carousel */
.why-business {
    padding: 80px 0;
    background-color: #fff;
}

.why-business h2 {
    text-align: center;
    font-size: 42px;
    font-family: 'Archivo Black', sans-serif;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 0.25px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 60px;
}

/* Carousel Container */
.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.carousel-wrapper {
    flex: 1;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

/* Minimalist Carousel Card */
.carousel-card {
    min-width: 100%;
    padding: 60px 40px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-card.active {
    opacity: 1;
}

.carousel-card .card-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-card .card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.carousel-card h3 {
    font-size: 28px;
    font-family: 'Archivo Black', sans-serif;
    font-weight: 400;
    margin-bottom: 20px;
    color: #000;
}

.carousel-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: 2px solid #ddd;
    color: #666;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-btn:hover {
    border-color: #2A9D8F;
    color: #2A9D8F;
}

.carousel-btn:active {
    transform: scale(0.95);
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.indicator {
    width: 12px;
    height: 12px;
    background-color: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator.active {
    background-color: #2A9D8F;
    width: 40px;
}

.indicator:hover {
    background-color: #999;
}

/* Solutions Section */
.business-solutions {
    padding: 80px 0;
    background-color: #fff;
}

.business-solutions h2 {
    text-align: center;
    font-size: 42px;
    font-family: 'Archivo Black', sans-serif;
    font-weight: 400;
    margin-bottom: 80px;
    letter-spacing: 0.25px;
}

.solution-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.solution-section:last-child {
    margin-bottom: 0;
}

.solution-section.reverse {
    direction: rtl;
}

.solution-section.reverse > * {
    direction: ltr;
}

.solution-image {
    width: 100%;
}

.solution-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 3px solid #264653;
}

.solution-section:nth-child(3) .solution-image img {
    border-color: #264653;
}

.solution-section:nth-child(4) .solution-image img {
    border-color: #264653;
}

.solution-content h3 {
    font-size: 32px;
    font-family: 'Archivo Black', sans-serif;
    font-weight: 400;
    margin-bottom: 20px;
    color: #000;
}

.solution-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.solution-content ul {
    list-style: none;
    padding: 0;
}

.solution-content ul li {
    font-size: 16px;
    line-height: 2;
    color: #333;
    padding-left: 0;
}

.solution-content ul li i {
    color: #2A9D8F;
    margin-right: 12px;
    font-size: 18px;
}

/* Success Story Section */
.business-success {
    padding: 80px 0;
    background-color: #264653;
    color: #fff;
}

.success-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.success-content h2 {
    font-size: 42px;
    font-family: 'Archivo Black', sans-serif;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 0.25px;
    color: #F4A259;
}

.success-content h3 {
    font-size: 28px;
    font-family: 'Archivo Black', sans-serif;
    font-weight: 400;
    margin-bottom: 25px;
    color: #fff;
}

.company-quote {
    font-size: 18px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.95);
    border-left: 4px solid #F4A259;
    padding-left: 25px;
}

.success-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 42px;
    font-family: 'Archivo Black', sans-serif;
    font-weight: 400;
    color: #F4A259;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.success-attribution {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
}

.success-image {
    width: 100%;
}

.success-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border: 4px solid #F4A259;
}

/* Contact Form Section */
.business-contact {
    padding: 80px 0;
    background-color: #fff;
}

.business-contact h2 {
    text-align: center;
    font-size: 42px;
    font-family: 'Archivo Black', sans-serif;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 0.25px;
}

.business-contact > .container > p {
    text-align: center;
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px;
}

.business-form {
    max-width: 900px;
    margin: 0 auto;
    background-color: #f8f8f8;
    padding: 50px;
    border: 3px solid #ddd;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px;
    border: 2px solid #ddd;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2A9D8F;
}

.form-group textarea {
    resize: vertical;
}

.business-form .btn {
    width: 100%;
    margin-top: 20px;
    padding: 15px;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .business-hero {
        height: 680px;
        padding-top: 80px;
    }

    .business-hero-content h1 {
        font-size: 42px;
    }

    .business-hero-content p {
        font-size: 18px;
    }

    .carousel-container {
        gap: 15px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .carousel-card {
        padding: 50px 30px;
    }

    .carousel-card .card-icon {
        width: 80px;
        height: 80px;
    }

    .carousel-card h3 {
        font-size: 24px;
    }

    .carousel-card p {
        font-size: 15px;
    }

    .solution-section,
    .solution-section.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .solution-image img {
        height: 300px;
    }

    .success-wrapper {
        grid-template-columns: 1fr;
    }

    .success-image img {
        height: 350px;
    }

    .success-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .business-form {
        padding: 35px 25px;
    }

    .why-business h2,
    .business-solutions h2,
    .business-contact h2 {
        font-size: 32px;
    }

    .solution-content h3 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .business-hero {
        height: 570px;
        padding-top: 70px;
    }

    .business-hero-content h1 {
        font-size: 32px;
    }

    .business-hero-content p {
        font-size: 16px;
    }

    .carousel-container {
        gap: 10px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .carousel-card {
        padding: 40px 20px;
    }

    .carousel-card .card-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .carousel-card h3 {
        font-size: 22px;
    }

    .carousel-card p {
        font-size: 14px;
    }

    .carousel-indicators {
        margin-top: 30px;
        gap: 10px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .indicator.active {
        width: 30px;
    }

    .success-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 36px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}


