/* Contact Page Styles */
.contact-form-section {

    background: linear-gradient(135deg, #111111 0%, #1a1a1a 50%, #222222 100%);
    width: 100%;
    max-width: 100%;
}

.contact-container {
    max-width: 95%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
}

/* Contact Info Styles */
.contact-info {
    padding: 30px;
    background: rgba(255, 111, 0, 0.1);
    border-radius: 10px;
    border-left: 4px solid #ff6f00;
    height: fit-content;
}

.contact-info h2 {
    color: #ff6f00;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 20px;
    position: relative;
    line-height: 1.2;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #ff6f00;
}

.contact-info p {
    color: #fff;
    margin-bottom: 30px;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    line-height: 1.6;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #fff;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
}

.contact-list i {
    color: #ff6f00;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    width: 30px;
    margin-top: 3px;
}

.contact-list a {
    color: #ff9d45;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list a:hover {
    color: #ff6f00;
    text-decoration: underline;
}

/* Form Styles */
.form-container {
    padding: 20px;
    max-width: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    color: #fff;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 500;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 111, 0, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: clamp(0.9rem, 2vw, 1rem);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #ff6f00;
    background: rgba(255, 111, 0, 0.1);
    box-shadow: 0 0 0 2px rgba(255, 111, 0, 0.2);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #ff6f00;
    margin-top: 3px;
}

.form-checkbox label {
    color: #fff;
    font-size: clamp(0.85rem, 2vw, 1rem);
    line-height: 1.4;
}

.form-submit-button {
    background: linear-gradient(135deg, #ff6f00, #ff9d45);
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    width: fit-content;
}

.form-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 111, 0, 0.3);
    background: linear-gradient(135deg, #ff7d1a, #ffae5e);
}

/* Banner Section */
.ban_sec {
    height: clamp(200px, 40vh, 300px);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.ban_img {
    position: relative;
    height: 100%;
    width: 100%;
}

.ban_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ban_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 1;
}

.ban_text strong {
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 4px 4px 6px #ff6f00;
}

.ban_img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        padding: 20px;
        margin: 0 15px;
    }
    
    .contact-info {
        padding: 25px;
    }
    
    .form-container {
        padding: 15px;
    }
}

@media (max-width: 768px) {

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-container {
        gap: 30px;
    }
    
    .contact-list li {
        gap: 12px;
    }
    
    .form-submit-button {
        padding: 12px 25px;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    
    .contact-container {
        padding: 15px;
        margin: 0 10px;
    }
    
    .contact-info {
        padding: 20px;
    }
    
    .contact-list li {
        flex-direction: column;
        gap: 5px;
    }
    
    .contact-list i {
        margin-bottom: 5px;
    }
    
    .form-checkbox {
        align-items: flex-start;
    }
    
    .form-checkbox input[type="checkbox"] {
        margin-top: 4px;
    }
    
    .form-input,
    .form-textarea {
        padding: 10px 12px;
    }
}

/* Animation Enhancements */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-info, .form-container {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Input Focus States */
.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #ff6f00;
    background: rgba(255, 111, 0, 0.1);
    box-shadow: 0 0 0 2px rgba(255, 111, 0, 0.2);
}

/* Hover States */
.form-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 111, 0, 0.3);
    background: linear-gradient(135deg, #ff7d1a, #ffae5e);
}

.contact-list a:hover {
    color: #ff6f00;
    text-decoration: underline;
} 