/* Contact Page Styles */
.contact-page-wrapper {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact-page-wrapper .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contact Content Grid */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Form Section */
.contact-form-section {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.contact-form-section h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 700;
}

/* Royal Form Styles */
.royal-form .form-group {
    margin-bottom: 20px;
}

.royal-form .form-input,
.royal-form .form-textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fff;
}

.royal-form .form-input:focus,
.royal-form .form-textarea:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

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

.royal-form .form-button {
    width: 100%;
    padding: 15px 30px;
    background: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.royal-form .form-button:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

/* Contact Info Section */
.contact-info-section {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.contact-info-section h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 700;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-item:last-child {
    border-bottom: none;
    flex-grow: 1;
}

.info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.info-content h3 {
    font-size: 18px;
    color: #333;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.info-content p {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.info-content a {
    color: #4CAF50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: #45a049;
    text-decoration: underline;
}

/* Map Section */
.contact-map-section {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.contact-map-section h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.map-container iframe {
    display: block;
}

/* Contact Form 7 Validation */
.wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
}

.wpcf7-validation-errors,
.wpcf7-acceptance-missing {
    border: 2px solid #dc3545;
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.wpcf7-mail-sent-ok {
    border: 2px solid #4CAF50;
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .contact-page-wrapper {
        padding: 40px 0;
    }
    
    .contact-form-section,
    .contact-info-section,
    .contact-map-section {
        padding: 30px 20px;
    }
    
    .contact-form-section h2,
    .contact-info-section h2,
    .contact-map-section h2 {
        font-size: 24px;
    }
    
    .map-container iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .map-container iframe {
        height: 300px;
    }
}