.contact-main {
    margin-top: 80px;
}

.contact-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('/images/contact_banner.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-info {
    background: var(--primary-color);
    color: white;
    padding: 4rem;
}

.info-header {
    text-align: center;
    margin-bottom: 4rem;
}

.info-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.info-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.info-item .icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.info-item .details {
    flex: 1;
}

.info-item .details h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.info-item .details p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

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

.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.contact-button i {
    font-size: 1.4rem;
}

.contact-button span {
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-form {
    padding: 3rem 2rem;
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-form > p {
    color: #666;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

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

.map-section {
    padding: 5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.map-section .container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.map-wrapper {
    position: relative;
    width: 60%;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    margin: 0 auto;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.address-confirmation {
    text-align: center;
    margin: 30px auto 0;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 1200px;
}

.address-confirmation p {
    font-size: 1.6rem;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 500;
}

.address-confirmation i {
    color: var(--primary-color);
    font-size: 2rem;
}

@media screen and (max-width: 1440px) {
    .map-wrapper {
        height: 750px;
    }
    .map-section .container {
        max-width: 1400px;
    }
}

@media screen and (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .info-item .icon {
        margin-bottom: 1rem;
    }
    
    .info-item .details {
        text-align: center;
    }
    
    .contact-buttons {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-info {
        padding: 3rem 2rem;
    }
    
    .info-header h2 {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 768px) {
    .map-wrapper {
        height: 500px;
        border-radius: 15px;
    }
    
    .address-confirmation {
        padding: 20px 15px;
        margin: 20px 15px 0;
    }
    
    .address-confirmation p {
        font-size: 1.2rem;
        text-align: center;
        flex-wrap: wrap;
    }
    .contact-info {
        padding: 2.5rem 1.5rem;
    }
    
    .info-header {
        margin-bottom: 2.5rem;
    }
    
    .info-header h2 {
        font-size: 2rem;
    }
    
    .info-items {
        gap: 2rem;
    }
    
    .info-item .icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.2rem;
    }
    
    .info-item .details h3 {
        font-size: 1.2rem;
    }
    
    .info-item .details p {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-section {
        padding: 3rem 1rem;
    }

    .info-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .info-item .icon {
        margin: 0 auto;
    }

    .address-confirmation p {
        font-size: 1rem;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-form,
    .contact-info {
        padding: 2rem 1rem;
    }
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-info {
        padding: 2rem 1rem;
    }
    
    .info-header h2 {
        font-size: 1.8rem;
    }
    
    .info-items {
        gap: 1.8rem;
    }
    
    .contact-button {
        padding: 1rem;
    }
    
    .contact-button i {
        font-size: 1.2rem;
    }
    
    .contact-button span {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}