:root {
    --primary-blue: #0f2766;
    --primary-dark: #121e3d;
    --accent-red: #e11d48;
    --border-color: #e2e8f0;
}

body.business-page {
    font-family: 'Cairo', sans-serif;
    background: #fff;
    color: #1f2937;
    overflow-x: hidden;
}

/* Hero */
.business-hero {
    position: relative;
    margin-top: 88px;
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    line-height: 0;
}

.business-hero-img {
    width: 100%;
    height: 400px;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.business-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.32) 100%);
    pointer-events: none;
}

.business-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    line-height: normal;
}

.business-hero-title {
    font-size: clamp(26px, 3.2vw, 36px);
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1.35;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.business-hero-subtitle {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.95;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

/* Inquiry form card */
.business-form-section {
    margin-top: -100px;
    position: relative;
    z-index: 10;
    padding-bottom: 60px;
}

.business-form-card {
    max-width: 820px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(15, 39, 102, 0.08);
    padding: 36px 40px 32px;
}

.business-form-card h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 6px;
}

.business-form-card .form-lead {
    text-align: center;
    color: #64748b;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 28px;
}

.business-form-card label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #475569;
    margin-bottom: 8px;
    text-align: right;
}

.business-form-card .form-control,
.business-form-card .form-select {
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    text-align: right;
}

.business-form-card .form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(15, 39, 102, 0.08);
}

.phone-input-group {
    display: flex;
    direction: ltr;
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.phone-input-group .phone-prefix {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    background: #f8fafc;
    border-right: 1.5px solid var(--border-color);
    font-size: 13px;
    font-weight: 700;
    color: #475569;
    white-space: nowrap;
}

.phone-input-group input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    direction: ltr;
}

.business-captcha-box {
    border: 1.5px solid #d1d5db;
    border-radius: 6px;
    background: #f9fafb;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.business-captcha-box input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: var(--primary-blue);
}

.business-captcha-box span {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.btn-business-submit {
    width: 100%;
    background: var(--primary-blue);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-size: 16px;
    font-weight: 800;
    margin-top: 8px;
    transition: background 0.2s;
}

.btn-business-submit:hover:not(:disabled) {
    background: var(--primary-dark);
}

.btn-business-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* Services */
.business-services {
    padding: 20px 0 70px;
    text-align: center;
}

.business-services-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 36px;
}

.business-services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.business-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.business-service-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    font-size: 26px;
    background: #fff;
    transition: all 0.2s;
}

.business-service-item:hover .business-service-icon {
    background: #fff5f7;
    transform: translateY(-2px);
}

.business-service-label {
    font-size: 13px;
    font-weight: 700;
    color: #334155;
}

/* Testimonials */
.business-testimonials {
    position: relative;
    padding: 80px 0;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(15, 39, 102, 0.7) 0%, rgba(15, 39, 102, 0.85) 100%),
        url('../../images/modern_chalet_pool.png') center/cover no-repeat;
}

.business-testimonials-title {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 40px;
}

.business-testimonials-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 20px 10px;
    scrollbar-width: none;
}

.business-testimonials-track::-webkit-scrollbar {
    display: none;
}

.business-testimonial-card {
    flex: 0 0 min(320px, 85vw);
    scroll-snap-align: center;
    background: #fff;
    color: #1f2937;
    border-radius: 16px;
    padding: 24px;
    text-align: right;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.business-testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.business-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.business-testimonial-name {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.business-testimonial-role {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
    margin: 0;
}

.business-testimonial-stars {
    color: #fbbf24;
    font-size: 13px;
    margin-bottom: 10px;
}

.business-testimonial-text {
    font-size: 13px;
    line-height: 1.8;
    color: #475569;
    font-weight: 600;
    margin: 0;
}

.business-testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.business-testimonials-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s;
}

.business-testimonials-nav button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

/* Partners */
.business-partners {
    padding: 70px 0 80px;
    text-align: center;
}

.business-partners-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 36px;
}

.business-partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px 50px;
    max-width: 900px;
    margin: 0 auto;
}

.business-partner-logo {
    font-size: 22px;
    font-weight: 800;
    color: #94a3b8;
    letter-spacing: 0.5px;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.business-partner-logo:hover {
    opacity: 1;
    color: #64748b;
}

@media (max-width: 991.98px) {
    .business-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .business-form-card {
        padding: 28px 24px;
    }
}

@media (max-width: 575.98px) {
    .business-hero,
    .business-hero-img {
        max-height: 280px;
        height: 280px;
    }

    .business-form-section {
        margin-top: -60px;
    }

    .business-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
