/* Contact Page Styles */

/* Hero Section */
.contact-hero {
    background: #0f1b2e;
    padding: 140px 5% 80px;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 48px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.contact-hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Info Section */
.contact-info-section {
    background: #0f1b2e;
    padding: 0 5% 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.info-block {
    text-align: center;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
}

.info-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff6b35;
    margin-bottom: 10px;
    font-weight: 600;
}

.info-block a,
.info-block span {
    color: white;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-block a:hover {
    color: #ff6b35;
}

/* Form Section */
.form-section {
    background: #0a0a0a;
    padding: 80px 5%;
    min-height: 100vh;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Progress Bar */
.form-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    gap: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.progress-step.active {
    opacity: 1;
}

.progress-step.completed {
    opacity: 0.7;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ff6b35;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #ff6b35;
}

.progress-step.active .step-number {
    background: #ff6b35;
    color: white;
}

.step-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    white-space: nowrap;
}

.progress-line {
    width: 80px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 20px;
    position: relative;
    top: -10px;
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.step-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.step-header h2 {
    font-size: 28px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.step-header p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
}

/* Form Grid */
.form-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}

.form-grid.two-col {
    grid-template-columns: 1fr 1fr;
}

.form-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
}

/* Form Groups */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.required {
    color: #ff6b35;
}

.optional {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Input Group (Weight + Unit) */
.input-group {
    display: flex;
    gap: 10px;
}

.input-group input {
    flex: 1;
}

.unit-select {
    width: 80px !important;
    padding: 14px !important;
}

/* Select Styling */
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 4.5L6 8L9.5 4.5' stroke='white' stroke-opacity='0.5' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: #0a0a0a;
    color: white;
}

/* Toggle Switches */
.toggle-group {
    display: flex;
    align-items: center;
}

.toggle-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.toggle-label input {
    display: none;
}

.toggle-switch {
    width: 44px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: all 0.3s ease;
}

.toggle-label input:checked + .toggle-switch {
    background: #ff6b35;
}

.toggle-label input:checked + .toggle-switch::after {
    left: 22px;
}

.toggle-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Location Section */
.location-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.location-section h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff6b35;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Conditional Field */
.conditional-field {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Step Actions */
.step-actions {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-prev,
.btn-next,
.btn-submit {
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-prev {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-prev:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

.btn-next {
    background: #ff6b35;
    color: white;
    margin-left: auto;
}

.btn-next:hover {
    background: #ff5722;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-submit {
    background: #ff6b35;
    color: white;
    margin-left: auto;
}

.btn-submit:hover {
    background: #ff5722;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

/* File Notice */
.file-notice {
    display: flex;
    gap: 20px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
}

.notice-icon {
    color: #ff6b35;
    flex-shrink: 0;
}

.notice-content strong {
    display: block;
    color: white;
    font-size: 16px;
    margin-bottom: 8px;
}

.notice-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.notice-content a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
}

.notice-content a:hover {
    text-decoration: underline;
}

/* Coverage Section */
.coverage-section {
    background: #0f1b2e;
    padding: 80px 5%;
    text-align: center;
}

.coverage-container h2 {
    font-size: 32px;
    font-weight: 600;
    color: white;
    margin-bottom: 50px;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.coverage-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.coverage-number {
    font-size: 48px;
    font-weight: 700;
    color: #ff6b35;
}

.coverage-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Reinforcement CTA */
.reinforcement-cta {
    background: #0a0a0a;
    padding: 100px 5%;
    text-align: center;
}

.reinforcement-content h2 {
    font-size: 36px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.reinforcement-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-phone:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
}

/* Footer */
.contact-footer {
    background: #0a0a0a;
    padding: 30px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-bottom a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-hero-content h1 {
        font-size: 36px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-grid.two-col,
    .form-grid.three-col {
        grid-template-columns: 1fr;
    }

    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .progress-line {
        width: 40px;
        margin: 0 10px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 120px 20px 60px;
    }

    .contact-hero-content h1 {
        font-size: 28px;
    }

    .form-section {
        padding: 60px 20px;
    }

    .step-header h2 {
        font-size: 24px;
    }

    .location-section {
        padding: 20px;
    }

    .coverage-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .coverage-number {
        font-size: 36px;
    }

    .reinforcement-content h2 {
        font-size: 28px;
    }

    .step-actions {
        flex-direction: column;
    }

    .btn-next,
    .btn-submit {
        margin-left: 0;
        width: 100%;
    }

    .file-notice {
        flex-direction: column;
        padding: 20px;
    }
}