/* ==============================================
   LAFORET Contact Page CSS
   ============================================== */

/* Action Cards */
.action-card {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #E5E5E5;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem;
    background: white;
}
.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: #A3957D;
}
.action-card::after {
    content: '\2192';
    position: absolute;
    bottom: 1.5rem;
    right: 2rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #A3957D;
    font-size: 1.2rem;
}
.action-card:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Form Styles */
.form-group { margin-bottom: 2rem; }
.form-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}
.form-input, .form-textarea, .form-select {
    width: 100%;
    border: 1px solid #E5E5E5;
    background: #FAFAFA;
    padding: 1rem;
    font-family: 'Noto Serif JP', serif;
    font-size: 1rem;
    transition: all 0.3s;
    border-radius: 0;
    -webkit-appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none;
    border-color: #A3957D;
    background: #FFFFFF;
    box-shadow: 0 0 0 1px rgba(163, 149, 125, 0.2);
}
.required::after {
    content: '*';
    color: #A3957D;
    margin-left: 0.25rem;
}
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.form-checkbox input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    min-width: 1.25rem;
    margin-top: 0.125rem;
    border: 1px solid #E5E5E5;
    background: #FAFAFA;
    cursor: pointer;
    transition: all 0.3s;
    -webkit-appearance: none;
    appearance: none;
    position: relative;
}
.form-checkbox input[type="checkbox"]:checked {
    background: #A3957D;
    border-color: #A3957D;
}
.form-checkbox input[type="checkbox"]:checked::after {
    content: '\2713';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.875rem;
    font-weight: bold;
}
.form-checkbox input[type="checkbox"]:focus {
    outline: none;
    border-color: #A3957D;
    box-shadow: 0 0 0 1px rgba(163, 149, 125, 0.2);
}
.form-checkbox label {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.875rem;
    color: #333;
    line-height: 1.6;
    cursor: pointer;
}
.form-checkbox label a {
    color: #A3957D;
    text-decoration: underline;
    transition: color 0.3s;
}
.form-checkbox label a:hover {
    color: #8B7D6A;
}

/* Confirm page table */
.confirm-table-row {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #E5E5E5;
    padding: 1.5rem 0;
}
.confirm-table-th {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #A3957D;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    font-size: 0.8rem;
}
.confirm-table-td {
    font-family: 'Noto Serif JP', serif;
    color: #333333;
    line-height: 1.8;
}
@media (min-width: 768px) {
    .confirm-table-row { flex-direction: row; }
    .confirm-table-th { width: 30%; margin-bottom: 0; padding-right: 2rem; }
    .confirm-table-td { width: 70%; }
}

/* Confirm: last row no border */
.confirm-table-row-last {
    border-bottom: none;
}

/* Google Maps iframe */
.bg-map-area iframe {
    filter: inherit;
}
