/* Rental Management Page Styles */
/* Using website color scheme: Black, White, Gold */

/* Service Intro Section */
.service-intro {
    background: linear-gradient(135deg, #F8F6F0 0%, #FFFFFF 100%);
    padding: 80px 0;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content .section-header {
    margin-bottom: 30px;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #666;
}

/* Our Services Grid */
.our-services {
    background: white;
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-item {
    text-align: center;
    padding: 40px 25px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    border-color: #C9A961;
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F8F6F0, #FFFFFF);
    border: 3px solid #C9A961;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    background: linear-gradient(135deg, #C9A961, #9F7E3C);
    transform: scale(1.1);
}

.service-icon i {
    font-size: 2.2rem;
    color: #C9A961;
    transition: color 0.3s ease;
}

.service-item:hover .service-icon i {
    color: white;
}

.service-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1C1C1C;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
}

/* Workflow Section */
.workflow-section {
    background: linear-gradient(135deg, #F8F6F0 0%, #FFFFFF 100%);
    padding: 80px 0;
}

.workflow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    gap: 20px;
}

.workflow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 0 180px;
}

.step-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #C9A961, #9F7E3C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.3);
    transition: all 0.3s ease;
}

.workflow-step:hover .step-circle {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(201, 169, 97, 0.4);
}

.step-icon {
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 2.5rem;
    color: #C9A961;
}

.step-number {
    font-size: 1rem;
    font-weight: 700;
    color: #000000 !important;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
    opacity: 1;
    text-shadow: none !important;
    box-shadow: none !important;
}

.workflow-step h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1C1C1C;
    margin-bottom: 10px;
}

.workflow-step p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
}

.workflow-arrow {
    flex: 0 0 auto;
    font-size: 1.5rem;
    color: #C9A961;
    margin: 0 10px;
    margin-bottom: 80px;
}

/* Benefits Section */
.benefits-section {
    background: white;
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    text-align: center;
    padding: 40px 25px;
    background: linear-gradient(135deg, #F8F6F0, #FFFFFF);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #C9A961, #9F7E3C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: rotate(360deg);
}

.benefit-icon i {
    font-size: 1.8rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1C1C1C;
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1C1C1C 0%, #0A0A0A 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="2"/></svg>');
    opacity: 0.5;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(1.75rem, 2.5vw + 1rem, 2.75rem);
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    font-family: var(--font-display);
    line-height: 1.25;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #C9A961;
    color: white;
    border-color: #C9A961;
}

.btn-primary:hover {
    background: transparent;
    color: #C9A961;
    border-color: #C9A961;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #1C1C1C;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Breadcrumb */
.breadcrumb {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    justify-content: center;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .workflow-steps {
        flex-wrap: wrap;
        gap: 40px;
    }

    .workflow-arrow {
        display: none;
    }

    .workflow-step {
        flex: 0 0 calc(50% - 20px);
    }
}

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

    .service-intro,
    .our-services,
    .workflow-section,
    .benefits-section,
    .cta-section {
        padding: 60px 0;
    }

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

    .workflow-steps {
        flex-direction: column;
        gap: 30px;
    }

    .workflow-step {
        flex: 1;
        width: 100%;
        align-items: center;
    }

    .step-number {
        text-align: center;
        width: 100%;
    }

    .step-circle {
        width: 100px;
        height: 100px;
    }

    .step-icon {
        width: 75px;
        height: 75px;
    }

    .step-icon i {
        font-size: 2rem;
    }

    .workflow-arrow {
        display: block;
        transform: rotate(90deg);
        margin: 0;
    }

    .intro-text {
        font-size: 1.05rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .service-icon {
        width: 70px;
        height: 70px;
    }

    .service-icon i {
        font-size: 1.8rem;
    }

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

    .benefit-icon i {
        font-size: 1.5rem;
    }
}
