/* Map Section */
.map-section {
    position: relative;
    height: 60vh;
    min-height: 400px;
}

.map-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.map-container iframe:hover,
.map-container:hover iframe {
    filter: grayscale(0%);
}

.map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.marker-icon {
    width: 40px;
    height: 40px;
    background: #000;
    color: white;
    border-radius: 50% 50% 50% 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transform: rotate(-45deg);
}

.marker-icon::before {
    transform: rotate(45deg);
}

/* Contact Content Layout */
.contact-content {
    background: #f8f8f8;
    padding: 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 40vh;
}

.contact-info-left {
    background: white;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-info-left h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-description {
    color: #888;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 0;
}

.contact-detail-item {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-detail-item a {
    color: #333;
    text-decoration: none;
}

.contact-detail-item a:hover {
    text-decoration: underline;
}

.company-registration {
    margin: 0;
    margin-top: 10px;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.company-registration h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.registration-details p {
    margin-bottom: 0.8rem;
    line-height: 1.4;
    color: #666;
}

.registration-details strong {
    color: #333;
}

.social-links {
    margin-top: auto;
}

.social-links span {
    display: block;
    margin-bottom: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #333;
    color: white;
}

/* Contact Form Right */
.contact-form-right {
    background: #1a1a1a;
    color: white;
    padding: 60px;
    display: flex;
    flex-direction: column;
}

.contact-form-right h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.contact-form-new {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.contact-form-new input,
.contact-form-new textarea {
    background: transparent;
    border: 1px solid #444;
    border-radius: 4px;
    padding: 15px;
    color: white;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form-new input::placeholder,
.contact-form-new textarea::placeholder {
    color: #888;
}

.contact-form-new input:focus,
.contact-form-new textarea:focus {
    outline: none;
    border-color: #666;
}

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

.form-note {
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.4;
    margin: 1rem 0;
}

.form-submit-btn {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 15px 30px;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 1rem;
}

.form-submit-btn:hover {
    background: white;
    color: #1a1a1a;
}

.form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-loading::after {
    content: '';
    width: 12px;
    height: 12px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Form Message Styles */
.form-message {
    padding: 12px 16px;
    border-radius: 4px;
    margin: 16px 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

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

.form-message-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Field Error Styles */
.contact-form-new input.error,
.contact-form-new textarea.error {
    border-color: #dc3545;
    background-color: rgba(220, 53, 69, 0.1);
}

.field-error {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 4px;
    display: block;
}

.privacy-link {
    color: white !important;
    text-decoration: underline;
}

.privacy-link:hover {
    color: #ddd !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-info-left,
    .contact-form-right {
        padding: 40px 20px;
    }
    
    .contact-info-left h2 {
        font-size: 2rem;
    }
    
    .contact-form-right h3 {
        font-size: 1.5rem;
    }
    
    .form-submit-btn {
        width: 100%;
        align-self: stretch;
    }
    
    .map-section {
        height: 50vh;
        min-height: 300px;
    }
}