/* Services Page Styles */

/* Ensure clean start after header */
body {
    margin: 0;
    padding: 0;
}

/* Consultation Service Section */
.consultation-service {
    background-color: white;
    padding: 4rem 0;
    margin-top: 0;
    clear: both;
}

.consultation-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.consultation-header {
    text-align: center;
    margin-bottom: 3rem;
}

.consultation-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.consultation-subtitle {
    font-size: 1.1rem;
    color: #2d5a2d;
    font-family: Georgia, serif;
    font-weight: 300;
}

.consultation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.consultation-image {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

.consultation-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.consultation-info {
    padding: 2rem 0;
}

.consultation-heading {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.consultation-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 2rem;
    font-style: italic;
}

.booking-form {
    margin-top: 2rem;
}

/* Calendar Widget Styles */
.date-time-input {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 0.75rem;
    background-color: white;
}

.calendar-icon {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.datetime-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    cursor: pointer;
    outline: none;
    color: #4a5568;
}

.datetime-input::placeholder {
    color: #a0aec0;
}

.datetime-input:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

.calendar-widget {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
    margin-top: 5px;
    padding: 15px;
    min-width: 300px;
}

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

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.calendar-nav {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 5px 8px;
    border-radius: 4px;
    color: #666;
    transition: all 0.2s;
}

.calendar-nav:hover {
    background: #f5f5f5;
    color: #333;
}

.calendar-title {
    font-weight: 600;
    font-size: 16px;
    color: #333;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 10px;
}

.calendar-weekdays span {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    padding: 8px 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 15px;
}

.calendar-day {
    text-align: center;
    padding: 8px 0;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s;
    color: #333;
}

.calendar-day:hover {
    background: #f0f8f0;
}

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

.calendar-day.today {
    background: #e8f5e8;
    color: #4CAF50;
    font-weight: 600;
}

.calendar-day.selected {
    background: #4CAF50;
    color: white;
    font-weight: 600;
}

.time-selector {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.time-input-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.time-input-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.time-input-group select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background: white;
}

.time-input-group span {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.confirm-datetime-btn {
    width: 100%;
    padding: 10px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.confirm-datetime-btn:hover {
    background: #45a049;
}

.timezone-info {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 1rem;
}

.book-now-btn {
    background-color: #2d5a2d;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.book-now-btn:hover {
    background-color: #1a3d1a;
}

/* Punctuality Commitment Section */
.punctuality-commitment {
    background-color: #f8f9fa;
    padding: 4rem 0;
    clear: both;
}

.punctuality-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.punctuality-header {
    text-align: center;
    margin-bottom: 3rem;
}

.punctuality-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.punctuality-subtitle {
    font-size: 1.1rem;
    color: #2d5a2d;
    font-family: Georgia, serif;
    font-weight: 300;
}

.punctuality-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.punctuality-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.punctuality-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.card-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
}

/* Client Testimonials Section */
.client-testimonials {
    background-color: white;
    padding: 4rem 0;
    clear: both;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: #2d5a2d;
    font-family: Georgia, serif;
    font-weight: 300;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.testimonial-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    padding: 1.5rem;
}

.testimonial-heading {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a5568;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .consultation-title,
    .punctuality-title,
    .testimonials-title {
        font-size: 2.2rem;
    }
    
    .consultation-content {
        gap: 2rem;
    }
    
    .consultation-image {
        height: 350px;
    }
    
    .punctuality-grid {
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .consultation-service {
        padding: 3rem 0;
    }
    
    .consultation-title,
    .punctuality-title,
    .testimonials-title {
        font-size: 2rem;
    }
    
    .consultation-subtitle,
    .punctuality-subtitle,
    .testimonials-subtitle {
        font-size: 1rem;
    }
    
    .consultation-container,
    .punctuality-container,
    .testimonials-container {
        padding: 0 1.5rem;
    }
    
    .consultation-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .consultation-image {
        height: 300px;
    }
    
    .consultation-info {
        padding: 1rem 0;
    }
    
    .consultation-heading {
        font-size: 1.6rem;
    }
    
    .consultation-text {
        font-size: 1rem;
    }
    
    .punctuality-commitment {
        padding: 3rem 0;
    }
    
    .punctuality-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .punctuality-card {
        padding: 1.5rem;
    }
    
    .client-testimonials {
        padding: 3rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-image {
        height: 180px;
    }
    
    .testimonial-content {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .consultation-service {
        padding: 2.5rem 0;
    }
    
    .consultation-title,
    .punctuality-title,
    .testimonials-title {
        font-size: 1.75rem;
    }
    
    .consultation-subtitle,
    .punctuality-subtitle,
    .testimonials-subtitle {
        font-size: 0.9rem;
    }
    
    .consultation-container,
    .punctuality-container,
    .testimonials-container {
        padding: 0 1rem;
    }
    
    .consultation-header,
    .punctuality-header,
    .testimonials-header {
        margin-bottom: 2rem;
    }
    
    .consultation-content {
        gap: 1.5rem;
    }
    
    .consultation-image {
        height: 250px;
    }
    
    .consultation-heading {
        font-size: 1.4rem;
    }
    
    .consultation-text {
        font-size: 0.9rem;
    }
    
    .date-time-input {
        padding: 0.5rem;
    }
    
    .datetime-input {
        font-size: 0.9rem;
    }
    
    .timezone-info {
        font-size: 0.8rem;
    }
    
    .book-now-btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .punctuality-commitment {
        padding: 2.5rem 0;
    }
    
    .punctuality-grid {
        gap: 1rem;
    }
    
    .punctuality-card {
        padding: 1.25rem;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .card-text {
        font-size: 0.9rem;
    }
    
    .client-testimonials {
        padding: 2.5rem 0;
    }
    
    .testimonials-grid {
        gap: 1rem;
    }
    
    .testimonial-image {
        height: 160px;
    }
    
    .testimonial-content {
        padding: 1rem;
    }
    
    .testimonial-heading {
        font-size: 1.1rem;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
    }

    /* Responsive adjustments for calendar */
    .calendar-widget {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 350px;
        margin-top: 0;
    }
    
    .calendar-day {
        padding: 12px 0;
        font-size: 16px;
    }
    
    .calendar-weekdays span {
        font-size: 14px;
        padding: 10px 0;
    }
} 

/* Booking Form Styles */
.booking-details {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.booking-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    background: white;
    transition: border-color 0.2s;
}

.booking-input:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

.book-now-btn {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.book-now-btn:hover {
    background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

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

.modal-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.modal-body {
    padding: 25px;
}

.confirmation-message {
    color: #333;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.email-address {
    color: #2196F3;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
    word-break: break-all;
}

.event-details {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

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

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

.detail-label {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.detail-value {
    color: #333;
    font-size: 14px;
    font-weight: 600;
}

.modal-footer {
    padding: 20px 25px;
    border-top: 1px solid #eee;
}

.modal-btn {
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.modal-btn:hover {
    background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

/* Responsive adjustments for modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-footer {
        padding: 15px 20px;
    }
    
    .modal-title {
        font-size: 16px;
    }
    
    .confirmation-message {
        font-size: 14px;
    }
    
    .email-address {
        font-size: 14px;
    }
} 