/* --- Renters Page General Styling --- */
.renters-page {
    background-color: #fff;
    color: #333;
}

.renters-page .section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #212529;
    text-align: center;
    margin-bottom: 20px;
}

.renters-page .section-subtitle {
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

/* --- Hero Section --- */
.renters-hero {
    position: relative;
    padding: 120px 0;
    text-align: center;
    color: #fff;
    background: url('https://images.unsplash.com/photo-1570129477492-45c003edd2be?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
}

.renters-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.renters-hero .container {
    position: relative;
    z-index: 2;
}

.renters-hero .hero-title {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    font-weight: 800;
}

.renters-hero .hero-subtitle {
    font-size: 1.4rem;
    color: #eee;
}

/* --- Intro Section --- */
.renters-intro-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.renters-page .intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.renters-page .intro-card {
    text-align: center;
    padding: 40px;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.renters-page .intro-card .card-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.renters-page .intro-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #343a40;
    margin-bottom: 15px;
}

.renters-page .intro-card p {
    color: #555;
    line-height: 1.7;
}

/* --- Available Rentals Section --- */
.available-rentals-section {
    padding: 80px 0;
}

.available-rentals-section .properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.available-rentals-section .property-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.available-rentals-section .property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.07);
}

.available-rentals-section .card-image {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.available-rentals-section .card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.available-rentals-section .property-info,
.available-rentals-section .card-content {
    padding: 25px;
}

.available-rentals-section .property-card h3 {
    font-size: 1.4rem;
    color: #343a40;
    margin-bottom: 10px;
}

.available-rentals-section .property-card .location {
    color: #777;
    margin-bottom: 15px;
}

.available-rentals-section .property-card .price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
}

.available-rentals-section .property-card .description {
    color: #555;
    margin-bottom: 20px;
}

.available-rentals-section .section-cta {
    text-align: center;
}

/* --- Rental Process Section --- */
.rental-process-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.rental-process-section .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.rental-process-section .process-step .step-number {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: var(--gold);
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.rental-process-section .process-step h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #343a40;
    margin-bottom: 10px;
}

.rental-process-section .process-step p {
    color: #555;
    line-height: 1.6;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .renters-hero .hero-title {
        font-size: 3rem;
    }
    .renters-page .section-title {
        font-size: 2.2rem;
    }
}
