/* OMAS - TAFT Index Page Styles */

/* Hero Section */
#hero {
    position: relative;
    min-height: 95vh;
    background: url('../img/index_bg.jpg') center center / cover no-repeat;
    padding: 40px 20px;
    box-sizing: border-box;
}

/* Welcome Panel Carousel */
.welcome-panel {
    background-color: rgba(0, 60, 0, 0.75);
    padding: 30px;
    border-radius: 20px;
    color: white;
    overflow: hidden;
}

/* Inquires Section */
#inquires {
    background-color: #f7fff5;
    padding: 60px 20px;
}

.inquires-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #ffffff;
    border: 2px solid #cde0c8;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.inquires-header {
    margin-bottom: 30px;
}

.farmer-icon {
    width: 60px;
    height: auto;
    margin-bottom: 15px;
}

.section-subtitle {
    letter-spacing: 2px;
    color: #111111;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.section-title .highlight {
    color: #88b04b;
}

.section-description {
    font-size: 1.2rem;
    color: #555;
}

/* Contact Cards */
.contact-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.contact-card {
    flex: 1 1 250px;
    padding: 20px;
    border-radius: 20px;
}

.contact-card.phone {
    background-color: #f0f9f0;
    border: 1px solid #c0e2b3;
}

.contact-card.phone .icon {
    font-size: 2rem;
    color: #4d8143;
}

.contact-card.phone .title {
    margin-top: 10px;
    color: #4d8143;
}

.contact-card.email {
    background-color: #fefae0;
    border: 1px solid #e8d88d;
}

.contact-card.email .icon {
    font-size: 2rem;
    color: #b39c26;
}

.contact-card.email .title {
    margin-top: 10px;
    color: #b39c26;
}

.contact-card.location {
    background-color: #f0f4ff;
    border: 1px solid #b6d4f7;
}

.contact-card.location .icon {
    font-size: 2rem;
    color: #4b6cb7;
}

.contact-card.location .title {
    margin-top: 10px;
    color: #4b6cb7;
}

/* Contact Form */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 15px;
}

.form-label {
    font-weight: 600;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-top: 5px;
}

.btn-submit {
    background-color: #4d8143;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
}

/* Farmer Registration Section */
#farmer-registration {
    background-color: #f7fff5;
    padding: 60px 20px;
}

.registration-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    border: 2px solid #cde0c8;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.registration-header {
    margin-bottom: 30px;
    text-align: center;
}

.registration-form-container {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #e9ecef;
}

.form-section-title {
    color: #4d8143;
    margin-bottom: 20px;
}

.required-fields {
    margin-bottom: 0;
}

.registration-form-label {
    font-weight: 600;
    color: #333;
}

.registration-form-input, .registration-form-textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 5px;
}

.btn-registration-submit {
    background-color: #4d8143;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
}

/* Confirmed Appointments */
.appointments-container {
    background-color: #e8f5e8;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #c0e2b3;
}

.appointments-title {
    color: #4d8143;
    margin-bottom: 20px;
}

.appointments-list {
    max-height: 400px;
    overflow-y: auto;
}

.appointment-item {
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 4px solid #4d8143;
}

.appointment-name {
    color: #4d8143;
    margin-bottom: 5px;
    font-weight: 600;
}

.appointment-info {
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #666;
}

.appointment-info:last-child {
    margin-bottom: 0;
}

.no-appointments {
    text-align: center;
    padding: 20px;
}

.no-appointments .icon {
    font-size: 2rem;
    color: #ccc;
}

.no-appointments .text {
    color: #666;
    margin-top: 10px;
}