/* ===== MODERN CONTACT PAGE STYLES ===== */

/* Page Header */
.page-header {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-dark);
    overflow: hidden;
}

.header-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="pulse" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:%23FFD700;stop-opacity:0.2" /><stop offset="100%" style="stop-color:%23FFD700;stop-opacity:0" /></radialGradient></defs><circle cx="20" cy="30" r="2" fill="url(%23pulse)"><animate attributeName="r" values="2;6;2" dur="3s" repeatCount="indefinite"/></circle><circle cx="80" cy="20" r="3" fill="url(%23pulse)"><animate attributeName="r" values="3;8;3" dur="4s" repeatCount="indefinite"/></circle><circle cx="60" cy="80" r="2.5" fill="url(%23pulse)"><animate attributeName="r" values="2.5;7;2.5" dur="3.5s" repeatCount="indefinite"/></circle></svg>') repeat;
    animation: pulseMove 15s linear infinite;
}

@keyframes pulseMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-50px, -30px); }
}

.header-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.page-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    margin-bottom: 20px;
    font-family: var(--font-tech);
}

.page-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 100px 0;
    background: var(--secondary-black);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* ===== MODERN CONTACT FORM ===== */
.contact-form-container {
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    position: relative;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 215, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-form-container:hover {
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 215, 0, 0.1);
}

/* Form Header */
.form-header {
    margin-bottom: 35px;
    text-align: center;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    position: relative;
}

.form-header h2::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 1px;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-top: 15px;
}

/* Form Layout */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

/* Form Groups */
.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Input Fields */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: #ffffff;
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

/* Select Dropdown */
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FFD700"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;
    padding-right: 35px;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 5px;
    padding: 12px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.checkbox-group:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 1px;
}

.checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--gold);
    border-color: var(--gold);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    transform: rotate(45deg) scale(1);
}

/* Submit Button */
.submit-btn {
    margin-top: 15px;
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 600;
    background: var(--gradient-gold);
    border: none;
    border-radius: 6px;
    color: var(--primary-black);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn i {
    margin-right: 6px;
    font-size: 0.9rem;
}

/* ===== CONTACT INFORMATION ===== */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.info-header h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
}

.info-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--dark-gray);
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.05), transparent);
    transition: all 0.6s ease;
}

.contact-method:hover::before {
    left: 100%;
}

.contact-method:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.1);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-method:hover .method-icon {
    transform: scale(1.05) rotate(3deg);
}

.method-icon i {
    font-size: 1.3rem;
    color: var(--primary-black);
}

.method-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--white);
}

.method-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.contact-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.contact-link:hover {
    color: var(--gold);
}

.contact-address {
    font-style: normal;
    line-height: 1.5;
    color: var(--white);
    opacity: 0.9;
}

.business-hours {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.hours-item span:first-child {
    color: rgba(255, 255, 255, 0.7);
}

.hours-item span:last-child {
    font-weight: 500;
    color: var(--white);
}

/* Emergency Contact */
.emergency-contact {
    background: var(--primary-black);
    padding: 25px;
    border-radius: 10px;
    border: 2px solid var(--gold);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.emergency-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
    animation: emergencyPulse 3s ease-in-out infinite;
}

@keyframes emergencyPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.emergency-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.emergency-header i {
    color: var(--gold);
    font-size: 1.3rem;
    animation: emergencyBlink 2s ease-in-out infinite;
}

@keyframes emergencyBlink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.5; }
}

.emergency-header h3 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
}

.emergency-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 0.9rem;
}

.emergency-btn {
    position: relative;
    z-index: 2;
}
/* ===== MAP SECTION ===== */
.map-section {
    padding: 80px 0;
    background: var(--primary-black);
}

.map-container {
    margin-top: 40px;
}

.map-placeholder {
    height: 400px;
    background: var(--dark-gray);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="mapGrid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23FFD700" stroke-width="0.2" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23mapGrid)"/></svg>');
}

.map-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.map-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: mapPulse 2s ease-in-out infinite;
}

@keyframes mapPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.map-icon i {
    font-size: 1.8rem;
    color: var(--primary-black);
}

.map-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--white);
}

.map-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.5;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 100px 0;
    background: var(--secondary-black);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-gray);
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    flex: 1;
    padding-right: 15px;
}

.faq-question i {
    color: var(--gold);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 25px 20px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .page-header {
        height: 50vh;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-container {
        padding: 30px 25px;
        border-radius: 10px;
    }
    
    .form-header h2 {
        font-size: 1.7rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 0.9rem;
    }
    
    .form-group select {
        background-position: right 10px center;
        padding-right: 30px;
    }
    
    .submit-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
        width: 100%;
    }
    
    .info-header h2 {
        font-size: 1.7rem;
    }
    
    .contact-method {
        padding: 20px;
        gap: 15px;
    }
    
    .method-icon {
        width: 45px;
        height: 45px;
    }
    
    .method-icon i {
        font-size: 1.1rem;
    }
    
    .emergency-contact {
        padding: 20px;
    }
    
    .map-placeholder {
        height: 300px;
    }
    
    .business-hours {
        gap: 4px;
    }
    
    .hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }
}

@media (max-width: 480px) {
    .page-header {
        height: 40vh;
    }
    
    .contact-form-container {
        padding: 25px 20px;
        border-radius: 8px;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
    
    .form-group label {
        font-size: 0.8rem;
        margin-bottom: 5px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 11px 12px;
        font-size: 0.85rem;
        border-radius: 5px;
    }
    
    .form-group select {
        background-position: right 8px center;
        padding-right: 28px;
    }
    
    .checkbox-group {
        padding: 10px;
        margin-top: 4px;
    }
    
    .checkbox-label {
        font-size: 0.85rem;
    }
    
    .checkmark {
        width: 16px;
        height: 16px;
    }
    
    .submit-btn {
        padding: 11px 25px;
        font-size: 0.9rem;
        border-radius: 5px;
    }
    
    .info-header h2 {
        font-size: 1.5rem;
    }
    
    .contact-method {
        padding: 15px;
        gap: 12px;
        border-radius: 8px;
    }
    
    .method-content h3 {
        font-size: 1.1rem;
    }
    
    .emergency-contact {
        padding: 18px;
    }
    
    .emergency-header {
        flex-direction: column;
        gap: 8px;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 20px 18px;
    }
    
    .map-placeholder {
        height: 250px;
    }
    
    .map-content h3 {
        font-size: 1.4rem;
    }
}