/* Grid Layout */
.wpp-faculty-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 40px 20px;
}

@media (max-width: 1200px) {
    .wpp-faculty-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .wpp-faculty-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .wpp-faculty-grid {
        grid-template-columns: 1fr;
    }
}

/* Teacher Card */
.wpp-teacher-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px 20px 30px 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease;
}

.wpp-teacher-card:hover {
    transform: translateY(-5px);
}

.wpp-teacher-name {
    color: #750609;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 5px 0;
    text-transform: none;
    font-family: 'Inter', sans-serif;
}

.wpp-teacher-dept {
    color: #6B0000;
    font-size: 16px;
    margin: 0 0 20px 0;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.wpp-teacher-info {
    font-family: 'Inter', sans-serif;
    color: #8D7C7C;
    font-size: 15px;
}

.wpp-info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.wpp-info-item .dashicons {
    color: #8D7C7C;
    font-size: 18px;
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.wpp-info-item a {
    color: #8D7C7C;
    text-decoration: none;
}

.wpp-info-item a:hover {
    color: #750609;
}

.wpp-days-list {
    list-style: none;
    padding: 0;
    margin: 5px 0 0 0;
}

.wpp-days-list li {
    font-size: 14px;
    margin-bottom: 3px;
}

/* Profile Form Styles */
.wpp-profile-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin: 0 auto;
}

.wpp-form-row {
    margin-bottom: 15px;
}

.wpp-form-row label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.wpp-form-row input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.wpp-schedule-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.wpp-schedule-day label {
    display: block;
    text-align: center;
    font-weight: bold;
}

.wpp-schedule-day input {
    width: 100%;
    padding: 5px;
    font-size: 12px;
    border: 1px solid #ccc;
}

/* Contact Form Styles (Modern Redesign) */
.wpp-modern-form-wrapper {
    background: #ffffff;
    max-width: 500px;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    font-family: 'Inter', sans-serif;
    margin: 0 auto;
}

.wpp-modern-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wpp-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wpp-form-group label {
    font-size: 13px;
    font-weight: 500;
    color: #666;
    margin: 0;
}

.wpp-modern-form input[type="text"],
.wpp-modern-form input[type="email"],
.wpp-modern-form textarea,
.wpp-modern-select {
    width: 100%;
    background-color: #f4f5f7;
    border: none;
    border-radius: 8px;
    padding: 15px;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: background-color 0.2s ease;
    box-shadow: none;
}

.wpp-modern-form input[type="text"]:focus,
.wpp-modern-form input[type="email"]:focus,
.wpp-modern-form textarea:focus,
.wpp-modern-select:focus {
    background-color: #e9ecef;
}

.wpp-modern-form textarea {
    resize: vertical;
}

.wpp-modern-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px;
    padding-right: 40px;
}

.wpp-form-check {
    margin-top: 10px;
}

.wpp-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
}

.wpp-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid #ccc;
    cursor: pointer;
}

.wpp-checkbox-label a {
    color: #b51f22;
    text-decoration: none;
}

.wpp-checkbox-label a:hover {
    text-decoration: underline;
}

.wpp-recaptcha-wrapper {
    margin: 10px 0;
}

.wpp-form-submit {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.wpp-btn-pill {
    display: inline-flex;
    align-items: center;
    background-color: #b51f22;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 6px 20px 6px 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.wpp-btn-pill:hover {
    background-color: #92181b;
}

.wpp-btn-pill:active {
    transform: scale(0.98);
}

.wpp-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #fff;
    color: #b51f22;
    border-radius: 50%;
    margin-right: 12px;
}

.wpp-btn-icon .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.wpp-contact-status {
    font-size: 14px;
    flex: 1;
}