.page-header {
    margin-top: 10px;
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #ffffff, var(--pink-light));
    position: relative;
    overflow: hidden;
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.header-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--crimson);
    margin-bottom: 15px;
    position: relative;
    padding: 0 15px;
}

.header-subtitle::before,
.header-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--crimson);
    opacity: 0.3;
}

.header-subtitle::before {
    left: -30px;
}

.header-subtitle::after {
    right: -30px;
}

.header-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark-main);
}

.header-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
}

.header-divider span {
    height: 2px;
    background: var(--crimson);
}

.header-divider span:nth-child(1),
.header-divider span:nth-child(3) {
    width: 60px;
    opacity: 0.2;
}

.header-divider span:nth-child(2) {
    width: 30px;
    opacity: 0.5;
}

.header-description {
    font-size: 1.1rem;
    color: var(--dark-soft);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Info Cards */
.contact-info-section {
    padding: 60px 0;
    background: white;
    position: relative;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.info-card {
    background: white;
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(223, 34, 41, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    border-color: var(--crimson);
    box-shadow: 0 25px 50px rgba(223, 34, 41, 0.1);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--pink-light), white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 2px solid rgba(223, 34, 41, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    border-color: var(--crimson);
    transform: scale(1.1);
}

.info-icon i {
    font-size: 2rem;
    color: var(--crimson);
    transition: all 0.3s ease;
}

.info-card:hover .info-icon i {
    transform: scale(1.1);
}

.info-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-main);
    margin-bottom: 10px;
}

.info-card p {
    color: var(--dark-soft);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.info-link {
    display: block;
    color: var(--crimson);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.info-link:hover {
    color: var(--orchid);
}

.info-address {
    color: var(--dark-soft);
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: normal;
}

.info-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
}

.info-social .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--pink-light);
    color: var(--dark-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(223, 34, 41, 0.1);
    text-decoration: none;
}

.info-social .social-link:hover {
    background: var(--crimson);
    color: white;
    transform: translateY(-3px);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--pink-light), #ffffff);
    position: relative;
}

/* Form Wrapper */
.form-wrapper {
    background: white;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(223, 34, 41, 0.1);
}

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

.form-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--crimson);
    margin-bottom: 10px;
    background: rgba(223, 34, 41, 0.05);
    padding: 5px 18px;
    border-radius: 50px;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-main);
    margin-bottom: 15px;
}

.form-description {
    color: var(--dark-soft);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* Form Fields */
.contact-form .form-group {
    position: relative;
    margin-bottom: 5px;
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-main);
    margin-bottom: 8px;
}

.contact-form .required {
    color: var(--crimson);
    margin-left: 3px;
}

.contact-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 0.95rem;
    color: var(--dark-main);
    background: #fafafa;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--crimson);
    background: white;
    box-shadow: 0 5px 15px rgba(223, 34, 41, 0.05);
}

.contact-form select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232e2d2c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Focus Border Animation */
.focus-border {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--crimson), var(--orchid));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.form-control:focus ~ .focus-border {
    width: 100%;
}

/* Checkbox */
.form-check {
    margin: 20px 0;
}

.form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--crimson);
    border-color: var(--crimson);
}

.form-check-label {
    font-size: 0.9rem;
    color: var(--dark-soft);
    margin-left: 5px;
    cursor: pointer;
}

.privacy-link {
    color: var(--crimson);
    text-decoration: none;
    font-weight: 500;
}

.privacy-link:hover {
    text-decoration: underline;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, var(--crimson), var(--orchid));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(223, 34, 41, 0.2);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Map Wrapper */
.map-wrapper {
    background: white;
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(223, 34, 41, 0.1);
    height: 100%;
}

.map-container {
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid rgba(223, 34, 41, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Business Hours */
.business-hours {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px dashed rgba(223, 34, 41, 0.2);
}

.business-hours h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-main);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.business-hours h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--crimson), var(--orchid));
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.hours-list .day {
    font-weight: 500;
    color: var(--dark-main);
}

.hours-list .time {
    color: var(--dark-soft);
    font-weight: 400;
}

.hours-list .closed {
    color: var(--crimson);
    font-weight: 600;
}

/* Emergency Contact */
.emergency-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, var(--pink-light), white);
    border-radius: 20px;
    border: 1px solid rgba(223, 34, 41, 0.1);
}

.emergency-icon {
    width: 60px;
    height: 60px;
    background: var(--crimson);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emergency-icon i {
    font-size: 1.8rem;
    color: white;
}

.emergency-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-main);
    margin-bottom: 5px;
}

.emergency-content p {
    font-size: 0.85rem;
    color: var(--dark-soft);
    margin-bottom: 8px;
}

.emergency-phone {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--crimson);
    text-decoration: none;
    transition: color 0.3s ease;
}

.emergency-phone:hover {
    color: var(--orchid);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
    position: relative;
}

.faq-grid {
    max-width: 900px;
    margin: 50px auto 0;
    display: grid;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 20px;
    padding: 25px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(223, 34, 41, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    border-color: var(--crimson);
    box-shadow: 0 20px 40px rgba(223, 34, 41, 0.05);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-main);
    margin: 0;
}

.faq-question i {
    color: var(--crimson);
    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;
    margin-top: 0;
}

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

.faq-answer p {
    color: var(--dark-soft);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .page-header {
        padding: 60px 0 40px;
    }
    
    .form-wrapper {
        padding: 40px 30px;
    }
    
    .map-wrapper {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-card {
        padding: 30px 20px;
    }
    
    .form-wrapper {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .emergency-contact {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .page-header {
        margin-top: 65px;
        padding: 40px 0;
    }
    
    .header-subtitle::before,
    .header-subtitle::after {
        display: none;
    }
    
    .header-title {
        font-size: 2rem;
    }
    
    .header-divider span:nth-child(1),
    .header-divider span:nth-child(3) {
        width: 30px;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}

/* Form Success Message */
.form-success {
    text-align: center;
    padding: 50px 30px;
}

.form-success i {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 1.8rem;
    color: var(--dark-main);
    margin-bottom: 15px;
}

.form-success p {
    color: var(--dark-soft);
    font-size: 1rem;
    margin-bottom: 25px;
}

.form-success .btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--crimson);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.form-success .btn:hover {
    background: var(--orchid);
    transform: translateY(-2px);
}

/* ========== ALERT WARNING ========== */
.alert-warning {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.alert-warning i {
    color: #856404;
    font-size: 1.2rem;
}

.alert-warning a {
    color: #533f03;
    font-weight: 600;
    text-decoration: underline;
}