
/* ============================================
   Contact Hero Section
   ============================================ */
.contact-hero {
    position: relative;
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.contact-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 1, 0.5) 0%, rgba(12, 39, 101, 0.5) 100%);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.contact-hero-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.3;
}

.contact-hero-subtitle {
    font-size: clamp(12px, 2vw, 18px);
    font-weight: 300;
    letter-spacing: 2px;
}

/* ============================================
   Contact Section
   ============================================ */


/* Background decoration */
.contact-section{
    padding: 80px 0;
    background-image: url(../images/product/uzumaki_bg.png);
    background-position: top right;
    background-repeat: no-repeat;
    background-size: 40%;
    position: relative;
}


/* Contact Header */
.contact-header {
    margin-bottom: 50px;
    padding-bottom: 20px;
    position: relative;
    z-index: 1;
}

.contact-header h2 {
    font-size: 28px;
    letter-spacing: 2px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.contact-header p {
    font-size: 14px;
    color: #666;
}

/* Contact Form */
.contact-form {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 4px;
    position: relative;
    z-index: 1;
}

/* Form Category Section */
.form-category-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.form-category-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.category-subtitle {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.radio-label input[type="radio"] {
    margin-right: 12px;
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #40419B;
}

.radio-label span {
    cursor: pointer;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.form-column-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-column-right {
    display: flex;
    flex-direction: column;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: inherit;
    font-size: 13px;
    color: #333;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #40419B;
    background-color: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Privacy Notice */
.privacy-notice {¥
    padding: 20px;
    border-radius: 3px;
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.privacy-notice p {
    margin-bottom: 12px;
}

.privacy-notice p:last-child {
    margin-bottom: 0;
}

.privacy-notice a {
    color: #40419B;
    text-decoration: underline;
    font-weight: 600;
}

.privacy-notice a:hover {
    color: #0099ff;
}

/* Form Submit */
.form-submit {
    display: flex;
    justify-content: center;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(90deg, #0099ff 0%, #40419B 100%);
    color: #fff;
    padding: 18px 80px;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.submit-btn .arrow {
    font-size: 18px;
}

/* ============================================
   Responsive Design (Tablet)
   ============================================ */
@media (max-width: 1024px) {
    .contact-section::before {
        display: none;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-column-right {
        grid-column: 1 / -1;
    }
}

/* ============================================
   Responsive Design (Smartphone)
   ============================================ */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .contact-hero {
        height: 180px;
    }

    .contact-hero-title {
        font-size: 28px;
    }

    .contact-hero-subtitle {
        font-size: 12px;
    }

    .contact-section {
        padding: 40px 0;
    }

    .contact-header {
        margin-bottom: 30px;
    }

    .contact-header h2 {
        font-size: 22px;
    }

    .contact-header p {
        font-size: 13px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .form-category-section {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .form-category-section h3 {
        font-size: 15px;
    }

    .category-subtitle {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .radio-group {
        gap: 12px;
    }

    .radio-label {
        font-size: 13px;
    }

    .form-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
    }

    .form-column-left {
        gap: 15px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
        padding: 12px;
    }

    .privacy-notice {
        padding: 15px;
        font-size: 11px;
        margin-bottom: 20px;
    }

    .submit-btn {
        padding: 15px 60px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        height: 150px;
    }

    .contact-hero-title {
        font-size: 22px;
    }

    .contact-form {
        padding: 20px 15px;
    }

    .contact-header h2 {
        font-size: 18px;
    }

    .form-category-section h3 {
        font-size: 14px;
    }

    .radio-label input[type="radio"] {
        width: 14px;
        height: 14px;
    }

    .form-group label {
        font-size: 12px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 13px;
    }

    .privacy-notice {
        padding: 12px;
        font-size: 10px;
    }

    .submit-btn {
        padding: 12px 40px;
        font-size: 13px;
        gap: 10px;
    }

    .submit-btn .arrow {
        font-size: 16px;
    }
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
}
