/* ========================================
   CONTACT PAGE - THE GOOD SLEEP
   ======================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a5f7a 0%, #2d8ca8 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px;
    letter-spacing: -0.5px;
}

.page-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 30px;
    font-weight: 300;
}

.header-decoration {
    width: 80px;
    height: 4px;
    background: #ffffff;
    margin: 0 auto;
    border-radius: 2px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Contact Info Cards */
.contact-info-wrapper {
    margin-bottom: 60px;
}

.info-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-top: 4px solid #2d8ca8;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(45, 140, 168, 0.2);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2d8ca8 0%, #1a5f7a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
}

.info-icon i {
    font-size: 1.8rem;
    color: #ffffff;
}

.info-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: #1a5f7a;
    margin: 0 0 15px;
    font-weight: 600;
}

.info-card p {
    font-size: 1rem;
    color: #333;
    margin: 5px 0;
    font-weight: 500;
}

.info-subtitle {
    display: block;
    font-size: 0.9rem;
    color: #777;
    margin-top: 12px;
    font-style: italic;
}

/* Main Contact Area */
.main-contact-area {
    margin-bottom: 80px;
}

/* Contact Form */
.contact-form-wrapper {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a5f7a;
    margin: 0 0 15px;
    font-weight: 700;
}

.form-header p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #333;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d8ca8;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(45, 140, 168, 0.1);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%232d8ca8" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
    padding-right: 45px;
}

.submit-btn {
    background: linear-gradient(135deg, #2d8ca8 0%, #1a5f7a 100%);
    color: #ffffff;
    border: none;
    padding: 16px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 25px rgba(45, 140, 168, 0.35);
    font-family: 'Poppins', sans-serif;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(45, 140, 168, 0.45);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* Side Info */
.side-info-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.side-info-card {
    background: linear-gradient(135deg, #1a5f7a 0%, #2d8ca8 100%);
    padding: 40px 35px;
    border-radius: 20px;
    color: #ffffff;
    flex: 1;
}

.side-info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin: 0 0 20px;
    font-weight: 700;
}

.side-info-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.95;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
}

.feature-item i {
    font-size: 1.3rem;
    color: #ffffff;
    flex-shrink: 0;
}

.feature-item span {
    font-weight: 500;
}

.hours-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.hours-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #1a5f7a;
    margin: 0 0 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hours-card h4 i {
    color: #2d8ca8;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item span:first-child {
    font-weight: 600;
    color: #333;
}

.hours-item span:last-child {
    color: #2d8ca8;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: 60px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #1a5f7a;
    margin: 0 0 15px;
    font-weight: 700;
}

.faq-header p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.faq-card {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 16px;
    transition: all 0.3s ease;
    border-left: 4px solid #2d8ca8;
    height: 100%;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

.faq-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2d8ca8 0%, #1a5f7a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.faq-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.faq-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #1a5f7a;
    margin: 0 0 15px;
    font-weight: 600;
}

.faq-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Success Notification */
.notification {
    position: fixed;
    top: 30px;
    right: 30px;
    padding: 20px 30px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    animation: slideInRight 0.5s ease;
    font-family: 'Poppins', sans-serif;
}

.notification.success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #ffffff;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1199px) {
    .contact-form-wrapper {
        padding: 40px;
        margin-bottom: 30px;
    }
}

@media (max-width: 991px) {
    .page-header h1 {
        font-size: 2.8rem;
    }
    
    .contact-form-wrapper {
        padding: 35px;
    }
    
    .faq-section {
        padding: 50px 40px;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 100px 0 80px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info-wrapper {
        margin-bottom: 40px;
    }
    
    .main-contact-area {
        margin-bottom: 60px;
    }
    
    .contact-form-wrapper {
        padding: 30px 25px;
    }
    
    .form-header h2 {
        font-size: 2rem;
    }
    
    .side-info-card {
        padding: 30px 25px;
    }
    
    .side-info-card h3 {
        font-size: 1.6rem;
    }
    
    .faq-section {
        padding: 40px 25px;
    }
    
    .faq-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 575px) {
    .page-header h1 {
        font-size: 1.9rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .info-card {
        padding: 30px 20px;
    }
    
    .info-icon {
        width: 60px;
        height: 60px;
    }
    
    .info-icon i {
        font-size: 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    .form-header h2 {
        font-size: 1.8rem;
    }
    
    .submit-btn {
        width: 100%;
        justify-content: center;
    }
    
    .faq-section {
        padding: 30px 20px;
    }
    
    .faq-header h2 {
        font-size: 1.9rem;
    }
    
    .faq-card {
        padding: 25px 20px;
    }
}
