/* ============================================
   Contact Page Styles
   ============================================ */

.page-title-section {
    margin-top: 65px;
    padding: 60px 0;
    background: var(--bg-gray);
    text-align: center;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-light);
}

.red-dot {
    color: var(--primary-red);
}

.contact-info-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-card {
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--white);
}

.contact-card h3 {
    font-size: 22px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.contact-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-link-btn {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link-btn:hover {
    background: #C4000F;
    transform: translateY(-2px);
}

/* Agent/Distributor Section */
.agent-distributor-section {
    padding: 80px 0;
    background: var(--white);
}

.agent-distributor-section .section-title-left {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 30px;
}

.agent-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.agent-content {
    flex: 1;
    width: 50%;
}

.agent-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.agent-content p:last-child {
    margin-bottom: 0;
}

.agent-image {
    flex: 1;
    width: 50%;
}

.agent-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.contact-form-section {
    padding: 80px 0;
}

.contact-form-section .section-title-left {
    font-size: 36px;
    font-weight: 500;
}

.contact-form {
    margin: 40px auto 0;
    border-top: 1px solid #E0E0E0;
    padding-top: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 10px;
    width: 100%;
}

.form-group label .required {
    color: var(--primary-red);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 30px 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f5f5f5;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: #eeeeee;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    text-align: center;
    margin-top: 40px;
}

.form-submit .btn-primary {
    padding: 15px 60px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 50px;
}

.map-section {
    padding: 80px 0;
    background: var(--white);
}

.map-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.map-placeholder {
    height: 500px;
    background: var(--bg-gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.map-placeholder i {
    font-size: 64px;
    margin-bottom: 20px;
    color: var(--primary-red);
}

.map-placeholder p {
    font-size: 18px;
    margin: 5px 0;
}

.map-address {
    font-size: 14px;
    color: var(--text-light);
}

/* Google Map Section */
.google-map-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}
.google-map-section .section-title-left {
    font-size: 36px;
    font-weight: 500;
}
.google-map-wrapper {
    margin-top: 30px;
}

.google-map-iframe {
    width: 100%;
    height: 500px;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: block;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-info-section {
        padding: 60px 0;
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .contact-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .contact-card h3 {
        font-size: 20px;
    }
    
    .contact-card p {
        font-size: 15px;
    }
    
    .agent-distributor-section {
        padding: 60px 0;
    }
    
    .agent-distributor-section .section-title-left {
        font-size: 28px;
    }
    
    .agent-wrapper {
        gap: 30px;
    }
    
    .agent-content {
        width: 50%;
    }
    
    .agent-image {
        width: 50%;
    }
    
    .agent-content p {
        font-size: 16px;
    }
    
    .contact-form-section {
        padding: 60px 0;
    }
    
    .contact-form-section .section-title-left {
        font-size: 28px;
    }
    
    .form-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .form-group {
        margin-bottom: 25px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 25px 15px;
        font-size: 15px;
    }
    
    .google-map-section {
        padding: 60px 0;
    }
    
    .google-map-iframe {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .contact-info-section {
        padding: 40px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .contact-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .contact-card p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .contact-link-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
    
    .agent-distributor-section {
        padding: 40px 0;
    }
    
    .agent-distributor-section .section-title-left {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .agent-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .agent-content {
        width: 100%;
    }
    
    .agent-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .agent-content p {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .contact-form-section {
        padding: 40px 0;
    }
    
    .contact-form {
        margin-top: 30px;
        padding-top: 30px;
    }
    
    .contact-form-section .section-title-left {
        font-size: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 20px 15px;
        font-size: 15px;
    }
    
    .form-group textarea {
        min-height: 120px;
    }
    
    .form-submit {
        margin-top: 30px;
    }
    
    .form-submit .btn-primary {
        padding: 12px 40px;
        font-size: 16px;
        width: 100%;
    }
    
    .google-map-section {
        padding: 40px 0;
    }
    
    .google-map-wrapper {
        margin-top: 20px;
    }
    
    .google-map-iframe {
        height: 400px;
        border-radius: 6px;
    }
}

@media (max-width: 480px) {
    .contact-info-section {
        padding: 30px 0;
    }
    
    .contact-card {
        padding: 25px 15px;
    }
    
    .contact-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .contact-card h3 {
        font-size: 16px;
    }
    
    .contact-card p {
        font-size: 13px;
    }
    
    .agent-distributor-section {
        padding: 30px 0;
    }
    
    .agent-distributor-section .section-title-left {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .agent-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .agent-content {
        width: 100%;
    }
    
    .agent-image {
        width: 100%;
    }
    
    .agent-content p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .contact-form-section {
        padding: 30px 0;
    }
    
    .contact-form-section .section-title-left {
        font-size: 22px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 18px 12px;
        font-size: 14px;
    }
    
    .google-map-section {
        padding: 30px 0;
    }
    
    .google-map-iframe {
        height: 350px;
    }
}

