/* ========================================
   INNER PAGES STYLES
   ======================================== */

/* Header Inner */
.header-inner {
    background: var(--secondary-color);
    position: relative;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a2e 100%);
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/slider/kusadasi-banner2-scaled.jpg') center/cover;
    opacity: 0.2;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--white);
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span:not(:last-child) {
    color: rgba(255, 255, 255, 0.5);
}

/* Page Content */
.page-content {
    padding: 80px 0;
    background: var(--gray-100);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.content-main {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.content-main h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.content-main h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin: 35px 0 20px;
}

.content-main h4 {
    font-size: 18px;
    color: var(--secondary-color);
    margin: 25px 0 10px;
}

.content-main p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-main ul, .content-main ol {
    margin: 0 0 20px 25px;
    color: var(--text-light);
    line-height: 1.8;
}

.content-main li {
    margin-bottom: 10px;
}

.content-main blockquote {
    background: linear-gradient(135deg, var(--primary-color) 0%, #d4af37 100%);
    color: var(--secondary-color);
    padding: 30px 40px;
    border-radius: 10px;
    margin: 30px 0;
    font-size: 20px;
    font-style: italic;
    font-weight: 500;
    position: relative;
}

.content-main blockquote i {
    font-size: 24px;
    margin-right: 10px;
    opacity: 0.5;
}

/* Features List */
.features-list {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--gray-100);
    border-radius: 10px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.feature-item > i {
    font-size: 24px;
    color: var(--success);
    flex-shrink: 0;
    margin-top: 3px;
}

.feature-item h4 {
    margin: 0 0 8px;
    font-size: 17px;
}

.feature-item p {
    margin: 0;
    font-size: 14px;
}

/* Sidebar */
.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.sidebar-widget h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-links li {
    margin-bottom: 10px;
}

.sidebar-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--gray-100);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
}

.sidebar-links a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.sidebar-links i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.contact-widget {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a2e 100%);
    color: var(--white);
    text-align: center;
}

.contact-widget h3 {
    color: var(--white);
    border-color: var(--primary-color);
}

.contact-widget p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.contact-widget .btn {
    margin-bottom: 10px;
}

/* Bank Details Table */
.bank-details {
    margin: 30px 0;
}

.bank-card {
    background: var(--gray-100);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
}

.bank-card h4 {
    margin: 0 0 15px;
    color: var(--primary-color);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bank-card .detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
}

.bank-card .detail-row:last-child {
    border-bottom: none;
}

.bank-card .detail-label {
    color: var(--text-light);
    font-size: 14px;
}

.bank-card .detail-value {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
    text-align: right;
}

.bank-info {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a2e 100%);
    color: var(--white);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.bank-info h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.bank-info p {
    color: rgba(255, 255, 255, 0.8);
}

/* Policy Sections */
.policy-section {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--gray-200);
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    font-size: 20px;
    margin-bottom: 15px;
}

/* Certifications Grid */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.cert-card {
    background: var(--gray-100);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.cert-card img {
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.cert-card h4 {
    margin: 0;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 992px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .content-sidebar {
        order: -1;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .sidebar-widget {
        flex: 1;
        min-width: 280px;
    }

    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 50px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .content-main {
        padding: 25px;
    }

    .content-main h2 {
        font-size: 26px;
    }

    .sidebar-widget {
        min-width: 100%;
    }

    .certifications-grid {
        grid-template-columns: 1fr;
    }

    .bank-card .detail-row {
        flex-direction: column;
        gap: 5px;
    }

    .bank-card .detail-value {
        text-align: left;
    }
}
