/* Contracts Page Styles - Clean & Modern */

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-card {
    transition: all 0.2s ease;
}

.step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(41, 75, 106, 0.1);
}

.step-number {
    background: linear-gradient(135deg, #294b6a 0%, #1a365d 100%);
    transition: all 0.2s ease;
}

.step-number:hover {
    transform: scale(1.05);
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
    margin: 2rem 0;
}

.highlight-card {
    border-left: 4px solid #294b6a;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

/* Clean list styling */
.feature-list li {
    transition: all 0.2s ease;
}

.feature-list li:hover {
    transform: translateX(4px);
}

.icon-highlight {
    color: #294b6a;
    transition: color 0.2s ease;
}

.icon-highlight:hover {
    color: #1ce1ff;
}

/* Button styling */
.cta-button {
    background: linear-gradient(135deg, #294b6a 0%, #1a365d 100%);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: linear-gradient(135deg, #1a365d 0%, #294b6a 100%);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(41, 75, 106, 0.3);
}

/* WhatsApp CTA Button */
.whatsapp-cta {
    background: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.whatsapp-cta:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    color: white;
}

.contract-note {
    font-size: 14px;
    color: #6B7280;
    font-style: italic;
    margin-top: 16px;
    margin-bottom: 8px;
}

/* industry Section Styles */
.industry-section {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 30, 80, 0.08);
    max-width: 1800px;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    margin: 0 auto;
}

.text-content {
    padding: 60px;
    width: 55%;
    box-sizing: border-box;
}

.image-placeholder {
    width: 45%;
    background-color: #e9eff3;
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.industry-headline {
    font-size: 36px;
    color: #1d2c4e;
    margin-top: 0;
    margin-bottom: 24px;
    font-weight: 700;
}

.industry-subheading {
    font-size: 16px;
    color: #0052cc;
    margin-top: 32px;
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.industry-body-text {
    font-size: 18px;
    line-height: 1.6;
    color: #5a6987;
    margin-top: 0;
    margin-bottom: 16px;
}

.contract-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 32px;
}

.contract-list li {
    font-size: 16px;
    color: #4a5a78;
    padding: 8px 0;
    border-bottom: 1px solid #e9eff3;
    display: flex;
    align-items: center;
}

.contract-list li:last-child {
    border-bottom: none;
}

.contract-list li::before {
    content: '✓';
    color: #0052cc;
    font-weight: bold;
    margin-right: 12px;
}

/* Side-by-side layout for pain point and solution */
.pain-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 32px 0;
}

.pain-point-card {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-left: 4px solid #ef4444;
    padding: 24px;
    border-radius: 8px;
}

.solution-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-left: 4px solid #3b82f6;
    padding: 24px;
    border-radius: 8px;
}

.pain-point-label {
    font-size: 14px;
    color: #dc2626;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.solution-label {
    font-size: 14px;
    color: #2563eb;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.pain-point-text {
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
    margin: 0;
}

.solution-text {
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .industry-section {
        flex-direction: column;
    }

    .text-content, .image-placeholder {
        width: 100%;
    }

    .text-content {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .pain-solution-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero-section h1 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-section p {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1.5rem !important;
    }
    
    .hero-section .cta-button {
        padding: 0.75rem 1.5rem !important;
        font-size: 1rem !important;
        width: 100% !important;
        max-width: 280px !important;
    }

    /* Industry Section Mobile */
    .industry-section {
        flex-direction: column !important;
        margin: 0 !important;
        border-radius: 8px !important;
        overflow: hidden !important;
    }

    .text-content {
        width: 100% !important;
        padding: 2rem 1.5rem !important;
        order: 1 !important;
    }

    .image-placeholder {
        width: 100% !important;
        min-height: 200px !important;
        order: 2 !important;
    }

    .industry-headline {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1.5rem !important;
    }

    .industry-subheading {
        font-size: 0.875rem !important;
        margin-top: 1.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .industry-body-text {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1rem !important;
    }

    /* Pain Solution Grid Mobile */
    .pain-solution-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin: 1.5rem 0 !important;
    }

    .pain-point-card,
    .solution-card {
        padding: 1.25rem !important;
        border-radius: 6px !important;
    }

    .pain-point-label,
    .solution-label {
        font-size: 0.75rem !important;
        margin-bottom: 0.5rem !important;
    }

    .pain-point-text,
    .solution-text {
        font-size: 0.875rem !important;
        line-height: 1.5 !important;
    }

    /* Contract List Mobile */
    .contract-list {
        margin-top: 1.5rem !important;
    }

    .contract-list li {
        font-size: 0.875rem !important;
        padding: 0.5rem 0 !important;
        line-height: 1.4 !important;
    }

    .contract-list li::before {
        margin-right: 0.5rem !important;
        font-size: 0.75rem !important;
    }

    /* Contract Note Mobile */
    .contract-note {
        font-size: 0.75rem !important;
        margin-top: 1rem !important;
        margin-bottom: 0.5rem !important;
    }

    /* WhatsApp CTA Mobile */
    .whatsapp-cta {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.875rem !important;
        margin-top: 1rem !important;
        width: 100% !important;
        max-width: 280px !important;
        justify-content: center !important;
    }

    .whatsapp-cta i {
        font-size: 1rem !important;
    }

    /* Custom Contracts Section Mobile */
    .custom-contracts-section h2 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
    }

    .custom-contracts-section p {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1.5rem !important;
    }

    .custom-contracts-section .grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin-bottom: 1.5rem !important;
    }

    .custom-contracts-section .bg-white\/10 {
        padding: 1.25rem !important;
        border-radius: 8px !important;
    }

    .custom-contracts-section .w-16 {
        width: 3rem !important;
        height: 3rem !important;
    }

    .custom-contracts-section .text-2xl {
        font-size: 1.25rem !important;
    }

    .custom-contracts-section h3 {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
    }

    .custom-contracts-section p {
        font-size: 0.875rem !important;
        line-height: 1.5 !important;
    }

    .custom-contracts-section a {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.875rem !important;
        width: 100% !important;
        max-width: 280px !important;
    }

    /* Container and Section Spacing Mobile */
    .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    section {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    /* Step Cards Mobile */
    .step-card {
        padding: 1.5rem !important;
        border-radius: 8px !important;
    }

    .step-number {
        width: 3rem !important;
        height: 3rem !important;
        font-size: 1rem !important;
    }

    /* General Mobile Typography */
    .text-3xl {
        font-size: 1.5rem !important;
    }

    .text-4xl {
        font-size: 1.75rem !important;
    }

    .text-5xl {
        font-size: 2rem !important;
    }

    .text-lg {
        font-size: 1rem !important;
    }

    .text-xl {
        font-size: 1.125rem !important;
    }

    .text-2xl {
        font-size: 1.25rem !important;
    }

    /* Mobile Touch Targets */
    a, button {
        min-height: 44px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Mobile Spacing Adjustments */
    .mb-6 {
        margin-bottom: 1rem !important;
    }

    .mb-8 {
        margin-bottom: 1.5rem !important;
    }

    .mb-10 {
        margin-bottom: 2rem !important;
    }

    .mb-12 {
        margin-bottom: 2.5rem !important;
    }

    .py-16 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .py-24 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .text-content {
        padding: 1.5rem 1rem !important;
    }

    .industry-headline {
        font-size: 1.5rem !important;
    }

    .hero-section h1 {
        font-size: 1.75rem !important;
    }

    .custom-contracts-section h2 {
        font-size: 1.25rem !important;
    }

    .container {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }

    .whatsapp-cta,
    .cta-button {
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .industry-section {
        flex-direction: row !important;
    }

    .text-content {
        width: 60% !important;
        padding: 1.5rem !important;
    }

    .image-placeholder {
        width: 40% !important;
        min-height: 150px !important;
    }
}
