
:root {
    /*  Brand Colors - Industrial Blue Theme */
    --contact-primary: #1565C0;
    --contact-primary-dark: #0D47A1;
    --contact-primary-light: #1976D2;
    --contact-accent: #FF6F00;
    --contact-secondary: #546E7A;
    --contact-dark: #263238;
    --contact-light: #ECEFF1;
    --contact-white: #FFFFFF;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--contact-dark);
}
.contact-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),url('../images/s4.webp') bottom/cover;
    height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

.contact-hero-section h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-hero-section p {
    font-size: 20px;
    opacity: 0.9;
}
/* Main Content Area */
.contact-main {
    background-color: #FFFFFF;
    padding: 60px 0;
}

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

/* Section Headers */
.contact-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 8px;
}

.contact-section-subtitle {
    font-size: 14px;
    color: #999999;
    margin-bottom: 40px;
}

/* Form Section */
.contact-form-section {
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .contact-form-row {
        grid-template-columns: 1fr;
    }
}

.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-form-group.full-width {
    grid-column: 1 / -1;
}

.contact-label {
    font-size: 14px;
    font-weight: 500;
    color: #333333;
}

.contact-label-required::after {
    content: '*';
    color: #FF6600;
    margin-left: 4px;
}

.contact-input,
.contact-textarea {
    background-color: #F5F5F5;
    border: none;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 14px;
    color: #333333;
    transition: box-shadow 0.2s, background-color 0.2s;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
    color: #AAAAAA;
}

.contact-input:focus,
.contact-textarea:focus {
    outline: none;
    background-color: #FFFFFF;
    box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.2);
}

.contact-textarea {
    min-height: 150px;
    resize: vertical;
    font-family: inherit;
}

.contact-submit-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.contact-submit-btn {
    background-color: #E61E15;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    padding: 14px 60px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
}

.contact-submit-btn:hover {
    background-color: #E65C00;
}

.contact-submit-btn:active {
    transform: scale(0.98);
}

/* Contact Info Section */
.contact-info-section {
    border-left: 1px solid #E0E0E0;
    padding-left: 60px;
}

@media (max-width: 992px) {
    .contact-info-section {
        border-left: none;
        border-top: 1px solid #E0E0E0;
        padding-left: 0;
        padding-top: 40px;
        margin-top: 20px;
    }
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}

.contact-info-icon.orange {
    background-color: #333333;
}

.contact-info-icon.dark {
    background-color: #333333;
}

.contact-info-icon svg {
    width: 22px;
    height: 22px;
}

.contact-info-icon.orange svg {
    color: #000000;
}

.contact-info-icon.dark svg {
    color: #FFFFFF;
}

.contact-info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-info-label {
    font-size: 12px;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-value {
    font-size: 15px;
    color: #333333;
    line-height: 1.5;
}

.contact-info-value.address {
    max-width: 300px;
}
/* Map Section */
.contact-map {
    background-color: var(--contact-white);
}
.contact-map-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.contact-map-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--contact-dark);
    margin-bottom: 0.5rem;
}
.contact-map-header p {
    color: var(--contact-secondary);
    font-size: 1.1rem;
}
.contact-map-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--contact-primary), var(--contact-accent));
    margin: 1rem auto 0;
    border-radius: 2px;
}
.contact-map-container {
    overflow: hidden;
}
.contact-map iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

/* Footer */
.contact-footer {
    background: var(--contact-dark);
    color: white;
    padding: 2rem 0;
    text-align: center;
}
.contact-footer p {
    margin: 0;
    opacity: 0.8;
}
.contact-footer a {
    color: var(--contact-accent);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-banner {
        padding: 3.5rem 0;
    }
    .contact-banner h1 {
        font-size: 2rem;
    }
    .contact-banner .banner-logo {
        width: 100px;
    }
    .contact-hero-section{height:300px;}
    .contact-hero-section h1{font-size:24px;}
    .contact-section,
    .contact-message,
    .contact-map {
        padding: 2.5rem 0;
    }
    .contact-card-body,
    .contact-message-body {
        padding: 1.5rem;
    }
    .contact-map iframe {
        height: 320px;
    }
}
