/* Page Header Component */
.page-header-section {
    width: 100%;
}

.page-header-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    padding: 0 30px;
}

.page-header-image {
    width: 100%;
    height: 280px;
    border-radius: 20px;
    background-repeat: no-repeat;
    background-image: url(../images/use_hed.jpg);
    mix-blend-mode: multiply;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-position: center center;
    background-size: cover;
}

.page-header-image h1 {
    font-family: var(--font-zen-old-mincho);
    font-size: var(--text-6xl);
    font-weight: 500;
    color: var(--primary-brown);
    line-height: 1.4;
    text-align: center;
}

/* Breadcrumb Component */
.breadcrumb {
    max-width: 1170px;
    width: 100%;
}

.breadcrumb-container {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0;
    font-family: var(--font-zen-old-mincho);
    font-size: var(--text-xs);
    color: black;
    line-height: 1.8;
}
.breadcrumb-container a {
    color: black;
}
/* Main Content Layout */
.main-content {
    width: 100%;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    gap: 100px;
    align-items: center;
}

/* Button Components */
.btn-primary {
    background: var(--accent-orange);
    color: white;
    border: none;
    border-radius: 100px;
    padding: 5px 40px;
    font-family: var(--font-zen-old-mincho);
    font-size: var(--text-base);
    line-height: 1.8;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background: #e67d36;
}

.btn-gradient {
    background: linear-gradient(to right, var(--secondary-orange), var(--primary-brown) 98.558%);
    border-radius: 10px;
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btn-gradient:hover {
    opacity: 0.9;
}

.btn-gradient span {
    font-family: var(--font-zen-old-mincho);
    font-size: var(--text-xl);
    font-weight: 500;
    color: white;
    line-height: 1.4;
    white-space: nowrap;
}

/* Form Components */
.form-input {
    background: white;
    border: 1px solid var(--border-orange);
    border-radius: 5px;
    padding: 5px 10px;
    font-family: var(--font-zen-old-mincho);
    font-size: var(--text-base);
    color: var(--text-color);
    line-height: 1.8;
    height: 39px;
    width: 100%;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-orange);
}

.form-input::placeholder {
    opacity: 0.5;
}

.form-textarea {
    background: white;
    border: 1px solid var(--border-orange);
    border-radius: 5px;
    padding: 5px 10px;
    font-family: var(--font-zen-old-mincho);
    font-size: var(--text-base);
    color: var(--text-color);
    line-height: 1.8;
    height: 150px;
    resize: vertical;
    width: 100%;
    transition: border-color 0.3s ease;
}

.form-textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
}

.form-textarea::placeholder {
    opacity: 0.5;
}

.required-label {
    background: var(--required-orange);
    color: white;
    font-family: var(--font-zen-old-mincho);
    font-size: var(--text-sm);
    padding: 3px 8px;
    border-radius: 5px;
    line-height: 1;
}

/* Radio Button Component */
.radio-option input[type="radio"] {
    width: 18px;
    height: 18px;
    appearance: none;
    border: 1px solid #f8dac5;
    border-radius: 50%;
    background: white;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.radio-option input[type="radio"]:checked {
    background: var(--accent-orange);
}

.radio-option input[type="radio"]:checked::after {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-orange);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Phone Contact Component */
.phone-contact {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-icon {
    width: 40px;
    height: 40px;
}

.phone-icon img {
    width: 100%;
    height: 100%;
}

.phone-number {
    font-family: var(--font-alata);
    font-size: var(--text-8xl);
    color: var(--text-color);
    text-decoration: none;
    line-height: 1;
    transition: color 0.3s ease;
}

.phone-number:hover {
    color: var(--primary-brown);
}

.business-hours {
    font-family: var(--font-zen-old-mincho);
    font-size: var(--text-sm);
    color: var(--text-color);
    line-height: 1.8;
    text-align: center;
    margin: 0 0 20px 0;
}

/* FAQ Component */
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background-color 0.3s ease;
    padding: 10px 0;
}

.faq-question:hover {
}

.faq-question-label {
    display: flex;
    align-items: center;
    gap: 20px;
}

.faq-q-icon {
    width: 45px;
    height: 45px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-zen-old-mincho);
    font-size: var(--text-4xl);
    font-weight: 500;
    color: white;
	line-height: 1;
	padding-bottom: .2em;
}

.faq-a-icon {
    width: 45px;
    height: 45px;
    background: #868686;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-zen-old-mincho);
    font-size: var(--text-4xl);
    font-weight: 500;
    color: white;
    line-height: 1;
	padding-bottom: .2em;
}

.faq-toggle-icon {
    width: 14px;
    height: 19px;
    transition: transform 0.3s ease;
}

.faq-toggle-icon svg {
    width: 100%;
    height: 100%;
}

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

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




/* Section Backgrounds
.section-background-light {
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), 
                url('https://via.placeholder.com/1440x201/f5f3eb/f5f3eb') no-repeat center center;
    background-size: cover;
    mix-blend-mode: multiply;
    opacity: 0.1;
}

.section-background-nature {
    background: url('https://via.placeholder.com/1440x346/f5f3eb/f5f3eb') no-repeat center center;
    background-size: 100% 234.1%;
    background-position: 0% 52.59%;
    mix-blend-mode: multiply;
} */

/* Component Responsive Design */
@media (max-width: 768px) {
    .page-header-image {
        height: 200px;
    }
    
    .page-header-image h1 {
        font-size: var(--text-4xl);
    }
    
    .main-content {
        padding-top: 60px;
        gap: 60px;
    }
    
   
    
    .btn-gradient span {
        font-size: var(--text-base);
    }
    
    .faq-question-label {
        gap: 15px;
    }
    
    .faq-q-icon,
    .faq-a-icon {
        width: 35px;
        height: 35px;
        font-size: var(--text-xl);
    }
	 .phone-number {
        font-size: var(--text-5xl);
    }
}

.back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
            z-index: 1000;
	cursor: pointer;
        }
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
@media (max-width: 480px) {
    .page-header-image {
        height: 160px;
    }
    
    .page-header-image h1 {
        font-size: var(--text-xl);
    }
    
    .main-content {
        padding-top: 40px;
        gap: 40px;
    }
    .phone-number {
        font-size: 9.5vw;
    }
  
    
    .btn-gradient span {
        font-size: var(--text-sm);
        white-space: normal;
    }
    
    .faq-q-icon,
    .faq-a-icon {
        width: 30px;
        height: 30px;
        font-size: var(--text-lg);
    }
}