/* Modern Contact Page Styles - Scoped to .new_design */

/* Hero Section */
.new_design .contact-hero {
    position: relative !important;
    min-height: 40vh !important;
    background-image: url('/images/new/Image_202512311344.jpeg') !important;
    background-size: cover !important;
    background-position: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

.new_design .contact-hero::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, rgba(0, 92, 187, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%) !important;
    z-index: 1 !important;
}

.new_design .contact-hero-content {
    position: relative !important;
    z-index: 2 !important;
    text-align: center !important;
    color: #ffffff !important;
    padding: 40px 20px !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
}

.new_design .contact-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3) !important;
    line-height: 1.2 !important;
    color: #ffffff !important;
}

.new_design .contact-hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.75rem) !important;
    font-weight: 400 !important;
    color: #ffd700 !important;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.4) !important;
    max-width: 800px !important;
    margin: 0 auto !important;
}

/* Content Section */
.new_design .contact-content-section {
    padding: 80px 0 100px !important;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%) !important;
}

/* Contact Grid Layout */
.new_design .contact-grid {
    display: grid !important;
    grid-template-columns: 1fr 400px !important;
    gap: 50px !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
}

/* Contact Form Card */
.new_design .contact-form-card {
    background: #ffffff !important;
    border-radius: 20px !important;
    padding: 50px !important;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08) !important;
}

.new_design .form-heading {
    font-size: clamp(2rem, 4vw, 2.5rem) !important;
    font-weight: 700 !important;
    color: #005cbb !important;
    margin-bottom: 35px !important;
    padding-bottom: 20px !important;
    border-bottom: 3px solid #005cbb !important;
    line-height: 1.3 !important;
}

/* Modern Form Styling */
.new_design .modern-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 25px !important;
}

.new_design .form-field {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

.new_design .form-label {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: #2c2c2c !important;
    margin: 0 !important;
}

.new_design .required {
    color: #dc3545 !important;
    font-weight: 700 !important;
}

.new_design .form-input,
.new_design .form-textarea {
    font-size: 1.2rem !important;
    padding: 15px 20px !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    color: #2c2c2c !important;
    transition: all 0.3s ease !important;
    font-family: inherit !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.new_design .form-input:focus,
.new_design .form-textarea:focus {
    outline: none !important;
    border-color: #005cbb !important;
    box-shadow: 0 0 0 4px rgba(0, 92, 187, 0.1) !important;
}

.new_design .form-input::placeholder,
.new_design .form-textarea::placeholder {
    color: #999 !important;
}

.new_design .form-textarea {
    resize: vertical !important;
    min-height: 150px !important;
}

.new_design .form-actions {
    margin-top: 15px !important;
}

.new_design .form-submit-button {
    display: inline-block !important;
    padding: 18px 45px !important;
    background: linear-gradient(135deg, #005cbb 0%, #00a8e8 100%) !important;
    color: #ffffff !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    border: none !important;
    border-radius: 50px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 92, 187, 0.3) !important;
    font-family: inherit !important;
}

.new_design .form-submit-button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0, 92, 187, 0.4) !important;
    background: linear-gradient(135deg, #0070dd 0%, #00c4ff 100%) !important;
}

.new_design .form-submit-button:active {
    transform: translateY(-1px) !important;
}

/* Contact Info Sidebar */
.new_design .contact-info-sidebar {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
}

.new_design .contact-info-card,
.new_design .hours-card {
    background: #ffffff !important;
    border-radius: 20px !important;
    padding: 40px !important;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08) !important;
}

.new_design .info-card-heading {
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    color: #005cbb !important;
    margin-bottom: 25px !important;
    text-align: center !important;
    line-height: 1.3 !important;
}

.new_design .info-section {
    margin-bottom: 30px !important;
}

.new_design .info-section:last-child {
    margin-bottom: 0 !important;
}

.new_design .info-section-title {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #2c2c2c !important;
    margin-bottom: 15px !important;
    line-height: 1.3 !important;
}

.new_design .info-item {
    margin-bottom: 12px !important;
    font-size: 1.2rem !important;
    line-height: 1.6 !important;
}

.new_design .info-label {
    font-weight: 600 !important;
    color: #2c2c2c !important;
    margin-right: 8px !important;
}

.new_design .info-link {
    color: #005cbb !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: color 0.3s ease !important;
}

.new_design .info-link:hover {
    color: #00a8e8 !important;
    text-decoration: underline !important;
}

.new_design .info-text {
    color: #2c2c2c !important;
}

.new_design .info-email {
    color: #005cbb !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 1.2rem !important;
    transition: color 0.3s ease !important;
    word-break: break-word !important;
}

.new_design .info-email:hover {
    color: #00a8e8 !important;
    text-decoration: underline !important;
}

.new_design .address-text {
    color: #2c2c2c !important;
    line-height: 1.6 !important;
    font-size: 1.2rem !important;
}

.new_design .directions-button {
    display: inline-block !important;
    margin-top: 15px !important;
    padding: 12px 25px !important;
    background: linear-gradient(135deg, #005cbb 0%, #00a8e8 100%) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 92, 187, 0.2) !important;
}

.new_design .directions-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 92, 187, 0.3) !important;
    text-decoration: none !important;
}

/* Hours Card */
.new_design .hours-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
}

.new_design .hours-item {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 15px !important;
    background: #f8f9fa !important;
    border-radius: 10px !important;
    font-size: 1.15rem !important;
}

.new_design .day {
    font-weight: 600 !important;
    color: #2c2c2c !important;
}

.new_design .time {
    color: #005cbb !important;
    font-weight: 600 !important;
}

.new_design .hours-note {
    text-align: center !important;
    margin-top: 20px !important;
    font-size: 1.1rem !important;
    color: #6c757d !important;
    font-style: italic !important;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .new_design .contact-grid {
        grid-template-columns: 1fr 350px !important;
        gap: 40px !important;
    }
}

@media (max-width: 992px) {
    .new_design .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .new_design .contact-hero {
        min-height: 35vh !important;
    }
}

@media (max-width: 768px) {
    .new_design .contact-content-section {
        padding: 50px 0 !important;
    }
    
    .new_design .contact-hero {
        min-height: 30vh !important;
    }
    
    .new_design .contact-hero-content {
        padding: 30px 20px !important;
    }
    
    .new_design .contact-form-card,
    .new_design .contact-info-card,
    .new_design .hours-card {
        padding: 30px 25px !important;
    }
    
    .new_design .form-input,
    .new_design .form-textarea {
        font-size: 1.1rem !important;
        padding: 12px 16px !important;
    }
    
    .new_design .form-label {
        font-size: 1.1rem !important;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.new_design .contact-form-card {
    animation: fadeInUp 0.6s ease-out backwards !important;
    animation-delay: 0.1s !important;
}

.new_design .contact-info-card {
    animation: fadeInUp 0.6s ease-out backwards !important;
    animation-delay: 0.2s !important;
}

.new_design .hours-card {
    animation: fadeInUp 0.6s ease-out backwards !important;
    animation-delay: 0.3s !important;
}

