/* Contact Container */
.contact-container {
    background: var(--color-white);
}

/* Hero Section */
.contact-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #18082B 0%, #2a1548 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 50%, rgba(246, 155, 9, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-hero h1 .highlight {
    color: var(--color-orange);
}

.contact-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Contact Content */
.contact-content {
    padding: 80px 0;
}

.contact-subtitle {
    font-size: 1.0625rem;
    color: #666;
    margin-bottom: 30px;
}

/* Contact Information Section */
.contact-info-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-purple);
    margin-bottom: 15px;
}

.contact-info-list {
    margin-top: 40px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #e9ecef;
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-orange) 0%, #e08900 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.25rem;
    color: var(--color-white);
}

.contact-details h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-purple);
    margin-bottom: 8px;
}

.contact-details p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 5px;
    line-height: 1.6;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.contact-details a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-details a:hover {
    color: var(--color-orange);
}

/* Social Media */
.contact-social {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

.contact-social h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-purple);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    text-decoration: none;
    background: var(--color-white);
    border: 2px solid var(--color-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-purple);
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--color-orange);
    border-color: var(--color-orange);
    color: var(--color-white);
    
}

/* Contact Form Section */
.contact-form-section {
    background: #f8f9fa;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-form-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-purple);
    margin-bottom: 15px;
}

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-purple);
    margin-bottom: 10px;
    display: block;
}

.contact-form .required {
    color: var(--color-orange);
}

.contact-form .form-control {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    color: #333;
    background: var(--color-white);
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--color-orange);
    box-shadow: 0 0 0 3px rgba(246, 155, 9, 0.1);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--color-orange) 0%, #e08900 100%);
    color: var(--color-white);
    font-size: 1.0625rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(246, 155, 9, 0.3);
}

.btn-submit i {
    font-size: 1.125rem;
}

/* Map Section */
.contact-map {
    margin-top: 80px;
}

.map-container {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-hero { padding: 80px 0 50px; }
    .contact-hero h1 { font-size: 2.5rem; }
    .contact-content { padding: 60px 0; }
    .contact-form-section { padding: 40px 30px; }
    .contact-map { margin-top: 60px; }
}

@media (max-width: 768px) {
    .contact-hero { padding: 70px 0 40px; }
    .contact-hero h1 { font-size: 2rem; }
    .contact-hero p { font-size: 1.125rem; }
    .contact-content { padding: 50px 0; }
    .contact-info-section h2 { font-size: 1.75rem; }
    .contact-form-section h2 { font-size: 1.75rem; }
    .contact-form-section { padding: 35px 25px; }
    .map-container { height: 400px; }
}

@media (max-width: 576px) {
    .contact-hero { padding: 60px 0 30px; }
    .contact-hero h1 { font-size: 1.75rem; }
    .contact-hero p { font-size: 1rem; }
    .contact-content { padding: 40px 0; }
    .contact-info-item { flex-direction: column; gap: 15px; }
    .contact-icon { margin: 0 auto; }
    .contact-details { text-align: center; }
    .social-links { justify-content: center; }
    .contact-form-section { padding: 30px 20px; }
    .btn-submit { width: 100%; justify-content: center; }
    .contact-map { margin-top: 50px; }
    .map-container { height: 350px; }
}