.logo_custom {
    width: 100px;
    height: 50px !important;
    margin: 5px 145% 5px 0%;
    /* padding: 10px 0; */
}

@media(min-width:768px) {
    .logo_custom {
        width: 150px;
        height: 100px !important;
        margin: 0 -110% 0 0%;
    }

    .header-curve.ext-header .middle-bar .logo-header {
        height: 130px;
    }
}

.text-white {
    font-weight: bold;
    font-size: 33px;
}

@media (max-width: 768px) {
    .text-white {
        font-size: 10px;
    }
}

/* مدل 3: لوکس و شیک */
.media-section {
    background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
    border: 2px solid #e5e5e5;
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.media-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(70, 52, 40, 0.03) 0%, transparent 70%);
    border-radius: 0 16px 0 0;
}

.media-section .section-header {
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
}

.media-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #463428;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.25rem;
}

.media-section .title-separator {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #463428 50%, transparent 100%);
    margin: 1rem auto;
    position: relative;
}

.media-section .title-separator::before {
    content: '◆';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #463428;
    font-size: 0.5rem;
    background: #ffffff;
    padding: 0 0.5rem;
}

/* ویدیو */
.video-section .video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(70, 52, 40, 0.15);
    border: 3px solid #ffffff;
}

.video-section .media-player {
    width: 100%;
    height: auto;
    display: block;
}

/* صدا */
.audio-section {
    background: linear-gradient(135deg, #463428 0%, #5a4332 100%);
    border-color: #463428;
}

.audio-section .section-title {
    color: #ffffff;
}

.audio-section .title-separator::before {
    color: #ffffff;
}

.audio-section .audio-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: rgb(88 65 49);
    border-radius: 60px;
    padding: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.audio-section .media-player {
    width: 100%;
    height: 50px;
    outline: none;
    filter: brightness(1.1) contrast(1.1);
}

/* گالری */
.gallery-section .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-section .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #ffffff;
    border: 2px solid #f0f0f0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-section .gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 32px rgba(70, 52, 40, 0.18);
    border-color: #463428;
}

.gallery-section .gallery-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
}

.gallery-section .gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.gallery-section .gallery-item:hover .gallery-image {
    transform: scale(1.1);
    filter: brightness(0.9);
}

.gallery-section .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(70, 52, 40, 0.85) 0%, rgba(70, 52, 40, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-section .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-section .gallery-overlay i {
    font-size: 3rem;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* ریسپانسیو */
@media (max-width: 991px) {
    .media-section {
        padding: 2rem;
    }

    .gallery-section .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .media-section {
        padding: 1.5rem;
    }

    .media-section .section-title {
        font-size: 1rem;
    }

    .gallery-section .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .media-section {
        padding: 1.25rem;
    }

    .gallery-section .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-section a {
    display: block;
}


/* بخش FAQ - استایل مدرن */
.faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e9ecef;
    border-radius: 20px;
    padding: 3.5rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '?';
    position: absolute;
    top: -30px;
    left: -30px;
    font-size: 180px;
    font-weight: 900;
    color: rgba(70, 52, 40, 0.03);
    font-family: 'Arial', sans-serif;
}

.faq-section .section-subtitle {
    color: #6c757d;
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Accordion Wrapper */
.faq-accordion-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* تک‌تک آیتم‌های Accordion */
.faq-accordion-item {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    margin-bottom: 1.25rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-accordion-item:hover {
    border-color: #463428;
    box-shadow: 0 6px 20px rgba(70, 52, 40, 0.12);
    transform: translateY(-3px);
}

/* دکمه سوال */
.faq-accordion-item .accordion-button {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #212529;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 1.5rem 2rem;
    border: none;
    border-radius: 15px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.faq-accordion-item .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #463428 0%, #5a4332 100%);
    color: #ffffff;
    box-shadow: none;
}

.faq-accordion-item .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-accordion-item .accordion-button::after {
    display: none;
}

/* شماره سوال */
.faq-number {
    background: linear-gradient(135deg, #463428 0%, #5a4332 100%);
    color: #ffffff;
    min-width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(70, 52, 40, 0.2);
    transition: all 0.3s ease;
}

.faq-accordion-item .accordion-button:not(.collapsed) .faq-number {
    background: #ffffff;
    color: #463428;
}

/* متن سوال */
.faq-question-text {
    flex: 1;
    text-align: right;
    line-height: 1.6;
}

/* آیکون */
.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: #463428;
}

.faq-accordion-item .accordion-button:not(.collapsed) .faq-icon {
    transform: rotate(180deg);
    color: #ffffff;
}

/* بدنه پاسخ */
.faq-accordion-item .accordion-body {
    padding: 0;
    background: #f8f9fa;
}

.faq-answer-content {
    padding: 2rem 2rem 2rem 6rem;
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.8;
    border-right: 4px solid #463428;
    background: linear-gradient(90deg, rgba(70, 52, 40, 0.03) 0%, transparent 100%);
}

/* انیمیشن باز شدن */
.accordion-collapse {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ریسپانسیو */
@media (max-width: 991px) {
    .faq-section {
        padding: 2.5rem 1.5rem;
    }

    .faq-accordion-item .accordion-button {
        padding: 1.25rem 1.5rem;
    }

    .faq-answer-content {
        padding: 1.5rem 1.5rem 1.5rem 4rem;
    }
}

@media (max-width: 767px) {
    .faq-section {
        padding: 2rem 1.25rem;
    }

    .faq-section .section-title {
        font-size: 1.5rem;
    }

    .faq-accordion-item .accordion-button {
        font-size: 0.95rem;
        padding: 1rem 1.25rem;
        gap: 0.75rem;
    }

    .faq-number {
        min-width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }

    .faq-answer-content {
        padding: 1.25rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .faq-section::before {
        display: none;
    }

    .faq-accordion-item .accordion-button {
        font-size: 0.9rem;
    }
}