/* FIRST MEETING PAGE COMPONENTS */

/* Meeting hero section */
.meeting-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.meeting-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="meeting" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="3" fill="rgba(255,255,255,0.1)"/><path d="M5,10 L15,10 M10,5 L10,15" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23meeting)"/></svg>');
}

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

.meeting-hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.meeting-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-3px);
}

.benefit-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.benefit-text strong {
    color: white;
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.benefit-text span {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* Meeting types */
.meeting-types {
    padding: 5rem 0;
    background: #f8fafc;
}

.meeting-types h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.type-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

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

.type-card.recommended {
    border-color: #10b981;
    box-shadow: 0 8px 30px rgba(16,185,129,0.2);
}

.recommended-badge {
    position: absolute;
    top: -2px;
    right: 20px;
    background: #10b981;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 0 0 8px 8px;
    z-index: 1;
}

.type-header {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
}

.type-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.type-header h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.type-price {
    background: #10b981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
}

.type-content {
    padding: 2rem;
}

.type-content > p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.type-includes {
    margin-bottom: 2rem;
}

.type-includes h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.type-includes ul {
    list-style: none;
    padding: 0;
}

.type-includes li {
    color: #374151;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
}

.type-includes li:before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.type-includes li:last-child {
    border-bottom: none;
}

.type-details {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.detail-label {
    color: #64748b;
    font-weight: 500;
}

.detail-value {
    color: var(--primary-color);
    font-weight: 600;
}

.type-actions {
    padding: 2rem;
    background: #fafbfc;
    border-top: 1px solid #e5e7eb;
}

.type-btn {
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.type-btn.primary {
    background: var(--accent-color);
    color: white;
}

.type-btn.primary:hover {
    background: #0369a1;
    transform: translateY(-2px);
}

.type-btn.secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--accent-color);
}

.type-btn.secondary:hover {
    background: var(--accent-color);
    color: white;
}

/* Meeting process */
.meeting-process {
    padding: 5rem 0;
}

.meeting-process h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-color), #e2e8f0);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.timeline-step {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(59,130,246,0.3);
}

.timeline-content {
    flex: 1;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 4px solid var(--accent-color);
    position: relative;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.timeline-duration {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: #fef3c7;
    color: #92400e;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Booking section */
.booking-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: flex-start;
}

.booking-info h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.booking-info p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.booking-features {
    display: grid;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    color: #10b981;
    font-size: 1.2rem;
}

.feature-text {
    color: #374151;
    font-weight: 500;
}

.booking-form {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    padding: 2rem;
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f1f5f9;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section h3:before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 2px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

.form-group input:invalid,
.form-group select:invalid {
    border-color: #ef4444;
}

.form-group input:valid,
.form-group select:valid {
    border-color: #10b981;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.meeting-type-selector {
    display: grid;
    gap: 1rem;
}

.type-option {
    position: relative;
}

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

.type-option label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.type-option input[type="radio"]:checked + label {
    border-color: var(--accent-color);
    background: #f0f9ff;
}

.type-option-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.type-option-text strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.25rem;
}

.type-option-text span {
    color: #64748b;
    font-size: 0.9rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.checkbox-group label {
    margin: 0;
    line-height: 1.4;
    cursor: pointer;
}

.form-actions {
    margin-top: 2rem;
    text-align: center;
}

.submit-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: #0369a1;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59,130,246,0.3);
}

.submit-btn:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.form-note {
    margin-top: 1.5rem;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.4;
}

.form-note a {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Meeting team */
.meeting-team {
    padding: 5rem 0;
}

.meeting-team h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.team-member {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.member-photo {
    margin-bottom: 1.5rem;
}

.photo-placeholder {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.member-initials {
    color: white;
}

.member-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.member-role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.member-experience {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.member-specialization {
    color: #374151;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-size: 0.9rem;
    text-align: left;
}

.member-specialization strong {
    color: var(--primary-color);
}

.member-certifications {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cert-badge {
    background: #e2e8f0;
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Meeting testimonials */
.meeting-testimonials {
    padding: 5rem 0;
    background: #f8fafc;
}

.meeting-testimonials h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.testimonial-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.testimonial-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
}

.rating-date {
    color: #64748b;
    font-size: 0.9rem;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    color: #374151;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.author-info strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #64748b;
    font-size: 0.9rem;
}

.author-project {
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Meeting FAQ */
.meeting-faq {
    padding: 5rem 0;
}

.meeting-faq h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

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

.faq-question h4 {
    color: var(--primary-color);
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: #dc2626;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

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

/* Location section (conditional) */
.location-section {
    display: none;
}

.location-section.show {
    display: block;
}

.office-section {
    display: none;
}

.office-section.show {
    display: block;
}

/* Form validation states */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #ef4444;
    background: #fef2f2;
}

.form-group.success input,
.form-group.success select,
.form-group.success textarea {
    border-color: #10b981;
    background: #f0fdf4;
}

.error-message {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

/* Success message */
.success-message {
    background: #f0fdf4;
    border: 1px solid #10b981;
    color: #065f46;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    display: none;
}

.success-message.show {
    display: block;
}

/* Loading state */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid #e5e7eb;
    border-top: 2px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Responsive design */
@media (max-width: 968px) {
    .booking-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .types-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .meeting-hero h1 {
        font-size: 2rem;
    }
    
    .meeting-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .process-timeline::before {
        left: 15px;
    }
    
    .timeline-step {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .timeline-item {
        gap: 1rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-duration {
        position: static;
        display: inline-block;
        margin-top: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .type-option label {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h4 {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .meeting-hero {
        padding: 3rem 0;
    }
    
    .meeting-hero h1 {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .benefit-icon {
        font-size: 2rem;
    }
    
    .type-card,
    .booking-form,
    .team-member,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .timeline-content {
        padding: 1rem;
    }
    
    .form-section h3 {
        font-size: 1.1rem;
    }
    
    .submit-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* Print styles */
@media print {
    .meeting-hero,
    .hero-actions,
    .type-actions,
    .form-actions {
        display: none;
    }
    
    .booking-form {
        box-shadow: none;
        border: 1px solid #e5e7eb;
    }
    
    .type-card {
        break-inside: avoid;
        margin-bottom: 2rem;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .type-card,
    .booking-form,
    .team-member,
    .testimonial-card {
        border: 2px solid #000;
    }
    
    .benefit-item {
        border: 1px solid rgba(255,255,255,0.5);
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .meeting-types,
    .booking-section,
    .meeting-testimonials {
        background: #1e293b;
    }
    
    .type-card,
    .booking-form,
    .team-member,
    .testimonial-card,
    .timeline-content,
    .faq-item {
        background: #334155;
        color: #e2e8f0;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        background: #475569;
        color: #e2e8f0;
        border-color: #64748b;
    }
}

/* Animation classes */
.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.6s ease forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.scale-in {
    animation: scaleIn 0.4s ease forwards;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
