/* Let's Talk Page Styles */

/* Meeting Types Section */
.meeting-types-section {
    background-color: #ffffff;
}

.meeting-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.meeting-type-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.meeting-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #bdd653, #a3c93a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.meeting-type-card:hover::before {
    transform: scaleX(1);
}

.meeting-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.meeting-type-icon {
    margin-bottom: 1.5rem;
    font-size: 3rem;
    color: #bdd653;
    text-align: center;
}

.meeting-type-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #112739;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: center;
}

.meeting-type-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.meeting-type-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.meeting-type-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.meeting-type-details i {
    color: #bdd653;
}

.meeting-type-topics {
    margin-bottom: 2rem;
}

.meeting-type-topics h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #112739;
    margin-bottom: 1rem;
    text-align: center;
}

.meeting-type-topics ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.meeting-type-topics li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.meeting-type-topics li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #bdd653;
    font-weight: bold;
}

.schedule-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.schedule-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(189, 214, 83, 0.3);
}

/* Scheduling Modal */
.scheduling-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.scheduling-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e9ecef;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #112739;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f8f9fa;
    color: #112739;
}

.modal-body {
    padding: 2rem;
}

.modal-step {
    display: none;
}

.modal-step.active {
    display: block;
}

.meeting-summary {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.meeting-type-display {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.meeting-type-display i {
    font-size: 2rem;
    color: #bdd653;
}

.meeting-type-display h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #112739;
    margin: 0 0 0.25rem 0;
}

.meeting-type-display p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.meeting-details {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.meeting-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.meeting-details i {
    color: #bdd653;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #112739;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #bdd653;
}

.calendar-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #112739;
    margin-bottom: 1.5rem;
}

.calendar-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.calendar-option {
    position: relative;
}

.calendar-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.calendar-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.calendar-option input[type="radio"]:checked + label {
    border-color: #bdd653;
    background: #f8fff0;
}

.calendar-option label i {
    font-size: 2rem;
    color: #bdd653;
    margin-bottom: 0.5rem;
}

.calendar-option label span {
    font-weight: 600;
    color: #112739;
    margin-bottom: 0.25rem;
}

.calendar-option label small {
    color: #666;
    font-size: 0.8rem;
}

.calendar-container {
    display: none;
    margin-bottom: 2rem;
}

.calendar-container.active {
    display: block;
}

.apple-calendar-form h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #112739;
    margin-bottom: 0.5rem;
}

.apple-calendar-form p {
    color: #666;
    margin-bottom: 1.5rem;
}

.time-slots {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.time-slot {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.time-slot label {
    min-width: 80px;
    font-weight: 600;
    color: #112739;
}

.time-slot input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
}

.manual-scheduling {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.manual-scheduling h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #112739;
    margin-bottom: 1rem;
}

.manual-scheduling p {
    color: #666;
    margin-bottom: 1.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-info p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-info i {
    color: #bdd653;
}

.contact-info a {
    color: #112739;
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    color: #bdd653;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 2rem;
}

.success-message {
    text-align: center;
    padding: 2rem;
}

.success-content i {
    font-size: 4rem;
    color: #bdd653;
    margin-bottom: 1rem;
}

.success-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #112739;
    margin-bottom: 1rem;
}

.success-content p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Contact Methods Section */
.contact-methods-section {
    background-color: #f8f9fa;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-method-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-method-icon {
    margin-bottom: 1.5rem;
    font-size: 3rem;
    color: #bdd653;
}

.contact-method-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #112739;
    margin-bottom: 1rem;
}

.contact-method-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    background-color: #ffffff;
}

.faq-grid {
    max-width: 800px;
    margin: 2rem auto 0;
}

.faq-item {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: #f8f9fa;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #112739;
    margin: 0;
}

.faq-question i {
    color: #bdd653;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.faq-answer p {
    padding: 1.5rem 0;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Let's Talk Page */
@media (max-width: 768px) {
    .meeting-types-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .meeting-type-card {
        padding: 2rem 1.5rem;
    }
    
    .meeting-type-title {
        font-size: 1.5rem;
    }
    
    .meeting-type-details {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .calendar-options {
        grid-template-columns: 1fr;
    }
    
    .time-slot {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .time-slot label {
        min-width: auto;
    }
    
    .modal-content {
        margin: 1rem;
        max-height: 95vh;
    }
    
    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-method-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .meeting-type-card {
        padding: 1.5rem 1rem;
    }
    
    .meeting-type-icon {
        font-size: 2.5rem;
    }
    
    .meeting-type-title {
        font-size: 1.3rem;
    }
    
    .modal-content {
        margin: 0.5rem;
    }
    
    .modal-header,
    .modal-body {
        padding: 1rem;
    }
}

/* Success Message Styles */
.success-message {
    text-align: center;
    padding: 2rem;
}

.success-content {
    max-width: 400px;
    margin: 0 auto;
}

.success-content i {
    font-size: 4rem;
    color: #bdd653;
    margin-bottom: 1rem;
}

.success-content h4 {
    color: #112739;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.success-content p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.success-close-btn {
    background: linear-gradient(135deg, #bdd653, #a3c93a);
    color: #273039;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.success-close-btn:hover {
    background: linear-gradient(135deg, #a8c242, #8eb32f);
    transform: translateY(-2px);
}

/* Custom Calendar Widget Styles */
.custom-calendar-form {
    max-width: 600px;
    margin: 0 auto;
}

.calendar-widget {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.calendar-month-year {
    font-size: 1.25rem;
    font-weight: 600;
    color: #112739;
    margin: 0;
}

.calendar-nav {
    width: 40px;
    height: 40px;
    border: none;
    background: linear-gradient(135deg, #bdd653, #a3c93a);
    color: #273039;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.calendar-nav:hover {
    background: linear-gradient(135deg, #a8c242, #8eb32f);
    transform: scale(1.1);
}

.calendar-grid {
    width: 100%;
}

.calendar-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.calendar-day-header {
    text-align: center;
    font-weight: 600;
    color: #666;
    font-size: 0.875rem;
    padding: 0.5rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.calendar-day:hover {
    background: rgba(189, 214, 83, 0.1);
    border-color: rgba(189, 214, 83, 0.3);
}

.calendar-day.available {
    background: white;
    color: #112739;
    border-color: #e9ecef;
}

.calendar-day.available:hover {
    background: rgba(189, 214, 83, 0.1);
    border-color: #bdd653;
}

.calendar-day.unavailable {
    background: #f8f9fa;
    color: #999;
    cursor: not-allowed;
}

.calendar-day.selected {
    background: linear-gradient(135deg, #bdd653, #a3c93a);
    color: #273039;
    border-color: #bdd653;
}

.calendar-day.other-month {
    color: #ccc;
    background: transparent;
}

.calendar-day.today {
    font-weight: 700;
    background: rgba(17, 39, 57, 0.1);
    border-color: #112739;
}

.calendar-day.today.selected {
    background: linear-gradient(135deg, #bdd653, #a3c93a);
    color: #273039;
}

/* Time Selection Styles */
.time-selection {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.time-selection h6 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #112739;
    margin-bottom: 1rem;
    text-align: center;
}

.selected-date-display {
    color: #bdd653;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.time-slot-btn {
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 500;
    color: #112739;
}

.time-slot-btn:hover {
    background: rgba(189, 214, 83, 0.1);
    border-color: #bdd653;
}

.time-slot-btn.selected {
    background: linear-gradient(135deg, #bdd653, #a3c93a);
    color: #273039;
    border-color: #bdd653;
}

.time-slot-btn.unavailable {
    background: #f8f9fa;
    color: #999;
    cursor: not-allowed;
    opacity: 0.6;
}

/* No slots available message */
.no-slots-message {
    grid-column: 1 / -1;
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 0;
}

/* Loading and Error Message Styles */
.loading-message {
    grid-column: 1 / -1;
    text-align: center;
    color: #666;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 0;
    font-style: italic;
}

.error-message {
    grid-column: 1 / -1;
    text-align: center;
    color: #dc3545;
    padding: 2rem;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    margin: 0;
    font-weight: 500;
}

/* Responsive Calendar */
@media (max-width: 768px) {
    .calendar-widget,
    .time-selection {
        padding: 1rem;
    }
    
    .calendar-header {
        margin-bottom: 1rem;
    }
    
    .calendar-month-year {
        font-size: 1.1rem;
    }
    
    .calendar-nav {
        width: 35px;
        height: 35px;
    }
    
    .time-slots-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.5rem;
    }
    
    .time-slot-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
}