/* ========================================
   CONTACT PAGE COMPLETE STYLES
   ======================================== */

/* Hero/Breadcrumb Section */
.contact-hero-section {
    position: relative;
    padding: 120px 0 80px;
    min-height: 400px;
    display: flex;
    align-items: center;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-content {
    max-width: 800px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumb-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #4CAF50;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-current {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

/* Contact Section */
.contact-section-new {
    padding: 90px 0;
    background-color: #fff;
}

.contact-container-new {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-grid-new {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    align-items: start;
}

/* Left Column - Info Boxes */
.contact-info-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-box {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.info-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    stroke: #9b309b;
}

.info-content {
    flex: 1;
}

.info-title {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.info-text {
    font-size: 15px;
    color: #333;
    margin: 0;
    line-height: 1.5;
}

.info-text a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: #9b309b;
}

/* Right Column - Form */
.contact-form-right {
    background-color: #fff;
}

.form-heading-new {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.form-underline {
    width: 50px;
    height: 3px;
    background-color: #9b3d9b;
    margin-bottom: 30px;
}

.alert-success-new {
    background-color: #d4edda;
    color: #155724;
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 4px solid #28a745;
}

.alert-success-new svg {
    flex-shrink: 0;
}

.alert-error-new {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 25px;
    border-left: 4px solid #dc3545;
}

.alert-error-new p {
    margin: 0 0 5px 0;
}

.alert-error-new p:last-child {
    margin-bottom: 0;
}

.discussion-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group-new {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label-new {
    font-size: 15px;
    font-weight: 600;
    color: #000;
}

.required {
    color: #ff0000;
}

.form-input-new,
.form-textarea-new {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    background-color: #fff;
}

.form-input-new:focus,
.form-textarea-new:focus {
    outline: none;
    border-color: #9b309b;
    box-shadow: 0 0 0 3px rgba(155, 48, 155, 0.1);
}

.form-input-new::placeholder,
.form-textarea-new::placeholder {
    color: #999;
}

.form-textarea-new {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.btn-send-new {
    background-color: #64E923;
    color: #020202;
    border: none;
    padding: 16px 35px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
    margin-top: 10px;
    font-family: inherit;
    border-radius: 20px;
}

.btn-send-new:hover {
    background-color: #962D91;
    color: white;
    transform: translateY(-2px);
}

.btn-send-new:active {
    transform: translateY(0);
}

.btn-send-new:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Map Section */
.map-fullwidth-section {
    width: 100%;
    padding: 0;
    margin: 0;
}

.map-fullwidth-container {
    width: 100%;
    line-height: 0;
}

.map-fullwidth-container iframe {
    width: 100%;
    height: 500px;
    border: 0;
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-grid-new {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-left {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .info-box {
        flex: 1;
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        padding: 100px 0 60px;
        min-height: 350px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .contact-section-new {
        padding: 60px 0;
    }
    
    .contact-grid-new {
        gap: 30px;
    }
    
    .contact-info-left {
        flex-direction: column;
    }
    
    .info-box {
        min-width: 100%;
    }
    
    .form-heading-new {
        font-size: 24px;
    }
    
    .btn-send-new {
        width: 100%;
    }
    
    .map-fullwidth-container iframe {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .contact-hero-section {
        padding: 80px 0 50px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .breadcrumb-nav {
        font-size: 12px;
    }
    
    .contact-container-new {
        padding: 0 15px;
    }
    
    .info-box {
        padding: 20px;
    }
    
    .info-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .info-title {
        font-size: 15px;
    }
    
    .info-text {
        font-size: 14px;
    }
    
    .form-heading-new {
        font-size: 22px;
    }
    
    .form-input-new,
    .form-textarea-new {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .btn-send-new {
        padding: 14px 25px;
        font-size: 15px;
    }
    
    .map-fullwidth-container iframe {
        height: 350px;
    }
}

/* Animation for form elements */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group-new {
    animation: fadeIn 0.3s ease forwards;
}

.form-group-new:nth-child(1) { animation-delay: 0.1s; }
.form-group-new:nth-child(2) { animation-delay: 0.2s; }
.form-group-new:nth-child(3) { animation-delay: 0.3s; }
.form-group-new:nth-child(4) { animation-delay: 0.4s; }

/* Loading state */
.btn-send-new.loading {
    position: relative;
    color: transparent;
}

.btn-send-new.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}