/* Contact Page - Page-Specific Styles */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.4), rgba(221, 160, 221, 0.4)), #f8f9fa;
    padding: 140px 0 40px;
    position: relative;
    overflow: hidden;
}

.hero-banner {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-banner img {
    width: 100%;
    height: 60vh;
    object-fit: fill;
    object-position: center;
    display: block;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 5vh 0 0 0;
    gap: 60px;
    align-items: start;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-left {
    padding-right: 20px;
}

.contact-left h1 {
    font-size: 3rem;
    color: #ff69b4;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-left p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 650px;
}

.map-container {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff69b4;
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, #ff69b4, #dda0dd);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 105, 180, 0.4);
}

#map {
    width: 100%;
    height: 100%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Time Picker Modal */
.time-picker-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.time-picker-modal.active {
    display: flex;
}

.time-picker-container {
    background: linear-gradient(135deg, #ff69b4, #dda0dd);
    border-radius: 10px;
    padding: 24px;
    width: 340px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.time-picker-header {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.time-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 30px;
}

.time-digit {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 3.5rem;
    font-weight: 400;
    padding: 12px 18px;
    border-radius: 5px;
    cursor: pointer;
    min-width: 85px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.time-digit:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.02);
}

.time-separator {
    color: white;
    font-size: 2.5rem;
    font-weight: 300;
}

.ampm-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: 10px;
}

.ampm-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ampm-btn.active {
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid white;
}

.ampm-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.clock-face {
    margin: 30px auto;
    max-width: 260px;
}

.clock-svg {
    width: 100%;
    height: auto;
    cursor: pointer;
}

.time-picker-actions {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 25px;
}

.time-btn {
    background: transparent;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.time-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.ok-btn {
    background: rgba(255, 255, 255, 0.2);
}

.ok-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-banner img {
        height: 40vh;
    }

    .contact-section {
        padding: 60px 0 40px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px;
    }

    .contact-left h1 {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .map-wrapper {
        min-height: 400px;
    }

    .time-picker-container {
        width: 90%;
        max-width: 320px;
    }

    .time-digit {
        font-size: 2.5rem;
        min-width: 70px;
        padding: 8px 15px;
    }
}

/* ===============================================
   NOTIFICATION SYSTEM STYLES
   =============================================== */

#notification-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
}

.notification {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateX(450px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 5px solid;
    min-width: 320px;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-icon {
    font-size: 24px;
    font-weight: bold;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.notification-message {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
    color: #333;
}

.notification-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
    flex-shrink: 0;
}

.notification-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #666;
}

/* Success Notification */
.notification-success {
    border-left-color: #4CAF50;
    background: linear-gradient(135deg, #f1f8f4 0%, #ffffff 100%);
}

.notification-success .notification-icon {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
}

/* Error Notification */
.notification-error {
    border-left-color: #f44336;
    background: linear-gradient(135deg, #fef5f5 0%, #ffffff 100%);
}

.notification-error .notification-icon {
    background: linear-gradient(135deg, #f44336, #ef5350);
    color: white;
}

/* Warning Notification */
.notification-warning {
    border-left-color: #ff9800;
    background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
}

.notification-warning .notification-icon {
    background: linear-gradient(135deg, #ff9800, #ffa726);
    color: white;
}

/* Info Notification */
.notification-info {
    border-left-color: #2196F3;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
}

.notification-info .notification-icon {
    background: linear-gradient(135deg, #2196F3, #42A5F5);
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #notification-container {
        top: 80px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .notification {
        min-width: auto;
        transform: translateY(-150px);
    }

    .notification.show {
        transform: translateY(0);
    }

    .notification-message {
        font-size: 14px;
    }
}

/* ===============================================
   NEED MORE HELP SECTION
   =============================================== */

.need-more-help {
    padding: 20px 0;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.08), rgba(221, 160, 221, 0.08));
}

.need-more-help .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    font-family: 'Lobster Two', cursive;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.help-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    margin-bottom:50px;
}

.help-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 105, 180, 0.15);
    border-color: rgba(255, 105, 180, 0.2);
}

.help-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(221, 160, 221, 0.1));
    border-radius: 50%;
    color: #ff69b4;
    transition: all 0.3s ease;
}

.help-card:hover .help-icon {
    background: linear-gradient(135deg, #ff69b4, #dda0dd);
    color: white;
    transform: scale(1.1);
}

.help-icon svg {
    width: 40px;
    height: 40px;
}

.help-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.help-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
    min-height: 45px;
}

.help-link {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #ff69b4, #dda0dd);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.help-link:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.3);
    background: linear-gradient(135deg, #dda0dd, #ff69b4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .need-more-help {
        padding: 60px 20px;
    }

    .need-more-help .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .help-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .help-card {
        padding: 35px 25px;
    }

    .help-description {
        min-height: auto;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .help-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
