/* ===================================== */
/* CONTACT SECTION STYLES */
/* ===================================== */

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fdf2f8, #fce7f3);
    position: relative;
    overflow: hidden;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

/* Contact Form Styles */
.contact-form-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.1);
    border: 1px solid rgba(233, 30, 99, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-title {
    color: #e91e63;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-subtitle {
    color: #666;
    font-size: 0.9rem;
}

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

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #e91e63;
    background: white;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

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

.character-count {
    text-align: right;
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.25rem;
}

.form-helper {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.25rem;
}

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

/* Checkbox Styles */
.form-checkbox-group {
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.form-checkbox {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.form-checkbox:checked + .checkmark {
    background: #e91e63;
    border-color: #e91e63;
}

.form-checkbox:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-text a {
    color: #e91e63;
    text-decoration: none;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

/* Submit Button */
.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.btn-submit {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form-response {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
}

.response-content.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.response-content h4 {
    margin-bottom: 0.5rem;
}

.form-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f0;
    font-size: 0.8rem;
    color: #666;
}

.response-time,
.security-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Contact Info Styles */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-methods,
.business-hours,
.locations-info {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.08);
    border: 1px solid rgba(233, 30, 99, 0.1);
}

.methods-title,
.hours-title,
.locations-title {
    color: #e91e63;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Contact Method Items */
.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.contact-method:hover {
    background: #fef7f0;
    transform: translateY(-2px);
}

.method-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.hotline-method .method-icon {
    background: linear-gradient(135deg, #e91e63, #c2185b);
}

.email-method .method-icon {
    background: linear-gradient(135deg, #2196f3, #1976d2);
}

.zalo-method .method-icon {
    background: linear-gradient(135deg, #0084ff, #0066cc);
}

.method-content {
    flex: 1;
}

.method-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #333;
}

.method-link {
    color: #e91e63;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

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

.method-note {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.25rem;
}

.method-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e91e63;
    color: white;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 600;
}

.zalo-badge {
    background: #00d4ff;
}

/* Social Contact */
.social-contact {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f0;
}

.social-title {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #333;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.social-link:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.social-name {
    font-weight: 600;
}

.social-followers {
    font-size: 0.8rem;
    color: #666;
}

/* Business Hours */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.day {
    font-weight: 600;
    color: #333;
}

.time {
    color: #e91e63;
    font-weight: 600;
}

.hours-special {
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #fef7f0, #fff3e0);
    border-radius: 12px;
    border: 1px solid #ffc107;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #e65100;
}

/* Locations */
.location-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    background: #fafafa;
}

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.location-name {
    color: #e91e63;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.main-badge {
    background: #e91e63;
    color: white;
}

.branch-badge {
    background: #2196f3;
    color: white;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.location-address {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #666;
}

.location-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-tag {
    background: #e8f5e8;
    color: #2e7d32;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.location-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #e91e63;
    text-decoration: none;
    font-weight: 600;
}

.location-phone:hover {
    text-decoration: underline;
}

.service-area-note {
    margin-top: 1rem;
    padding: 1rem;
    background: #e3f2fd;
    border-radius: 12px;
    border-left: 4px solid #2196f3;
    display: flex;
    gap: 0.75rem;
}

.note-icon {
    color: #2196f3;
    margin-top: 0.25rem;
}

.note-content h5 {
    color: #1976d2;
    margin-bottom: 0.5rem;
}

.note-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Maps Section */
.maps-section {
    margin-top: 4rem;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.08);
}

.maps-title {
    color: #e91e63;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.maps-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.map-item {
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    background: #fafafa;
}

.map-title {
    padding: 1rem;
    background: #f8f9fa;
    margin: 0;
    color: #333;
    font-size: 1rem;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.map-embed {
    position: relative;
    height: 300px;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
}

.map-info {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.map-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Contact CTA */
.contact-cta {
    margin-top: 4rem;
    text-align: center;
    background: linear-gradient(135deg, #e91e63, #c2185b);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.quick-contact-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.quick-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.quick-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.quick-btn i,
.quick-btn img {
    font-size: 1.5rem;
}

.quick-btn span {
    font-weight: 600;
    font-size: 1rem;
}

.btn-subtitle {
    font-size: 0.8rem;
    opacity: 0.8;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.trust-item i {
    font-size: 1.2rem;
}

/* Background Elements */
.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-contact-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-phone {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(233, 30, 99, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e91e63;
    animation: floatUpDown 6s ease-in-out infinite;
}

.phone-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.phone-2 {
    top: 20%;
    right: 8%;
    animation-delay: 2s;
}

.phone-3 {
    bottom: 15%;
    left: 10%;
    animation-delay: 4s;
}

.floating-hearts-contact {
    position: absolute;
    width: 100%;
    height: 100%;
}

.heart-contact-1,
.heart-contact-2,
.sparkle-contact-1,
.sparkle-contact-2 {
    position: absolute;
    color: rgba(233, 30, 99, 0.2);
    animation: floatUpDown 8s ease-in-out infinite;
}

.heart-contact-1 {
    top: 30%;
    right: 15%;
    font-size: 1.5rem;
    animation-delay: 1s;
}

.heart-contact-2 {
    bottom: 25%;
    right: 5%;
    font-size: 1.2rem;
    animation-delay: 3s;
}

.sparkle-contact-1 {
    top: 50%;
    left: 3%;
    font-size: 1rem;
    animation-delay: 2s;
}

.sparkle-contact-2 {
    bottom: 35%;
    right: 20%;
    font-size: 0.8rem;
    animation-delay: 4s;
}

/* Animations */
@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .maps-container {
        grid-template-columns: 1fr;
    }
    
    .quick-contact-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-form-section,
    .maps-section {
        padding: 2rem;
    }
    
    .contact-methods,
    .business-hours,
    .locations-info {
        padding: 1.5rem;
    }
    
    .contact-cta {
        padding: 2rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .quick-contact-buttons {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .form-footer {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-form-section,
    .maps-section {
        padding: 1.5rem;
    }
    
    .contact-methods,
    .business-hours,
    .locations-info {
        padding: 1rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .method-badge {
        position: static;
        align-self: center;
        margin-top: 0.5rem;
    }
    
    .location-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .contact-cta {
        padding: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.2rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .contact-background,
    .floating-contact-elements,
    .btn,
    .quick-contact-buttons {
        display: none !important;
    }
    
    .contact-section {
        background: white !important;
        box-shadow: none !important;
    }
    
    .contact-form-section,
    .contact-methods,
    .business-hours,
    .locations-info {
        background: white !important;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}