.hero-section {
    position: relative;
    min-height: 650px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 650px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 650px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-slide .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    z-index: 2;
}

.hero-slide .hero-content {
    position: relative;
    width: 100%;
    color: var(--white);
    z-index: 3;
    padding: 3rem 0;
}

.hero-logo {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.hero-text-content {
    padding: 1rem 0;
}

.hero-org-name {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.hero-contact-info {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.hero-contact-info span {
    display: inline-block;
}

.hero-main-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.hero-subtitle-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.hero-description-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 1rem 0 0;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
}

.hero-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
    pointer-events: none;
}

.hero-prev,
.hero-next {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.hero-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-indicator.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

.about-section {
    padding: 4rem 0;
    background: var(--white);
}

.about-section .section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--dark-color);
}

.about-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.about-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.bank-accounts-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

.bank-accounts-section .section-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--dark-color);
}

.bank-accounts-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.bank-accounts-section .section-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.bank-account-card {
    transition: all 0.3s ease;
    border-radius: 8px;
    background: var(--white);
    overflow: hidden;
    height: 100%;
}

.bank-account-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md) !important;
}

.bank-icon-wrapper {
    width: 110px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 10px;
}

.bank-account-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
}

.bank-account-details {
    margin-top: 1rem;
}

.bank-account-details p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.bank-account-details strong {
    color: var(--dark-color);
    font-weight: 600;
}

.account-number {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.iban-section {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.iban-section .input-group {
    display: flex;
    align-items: flex-start;
}

.iban-input {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-color);
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: pre-wrap;
    resize: none;
    min-height: calc(1.5em + 0.75rem + 2px);
    height: auto;
    line-height: 1.5;
    overflow: hidden;
}

.iban-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
    outline: 0;
}

.iban-section .input-group .btn {
    flex-shrink: 0;
    align-self: flex-start;
    margin-left: 0.5rem;
}

.martyrs-section {
    padding: 4rem 0;
    background: var(--light-color);
}

.martyrs-section .section-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--dark-color);
}

.martyrs-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.martyrs-section .section-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.martyr-card {
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    border-radius: 8px;
    background: var(--white);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.martyr-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md) !important;
    border-color: var(--primary-color);
}

.martyr-image-wrapper {
    width: 120px;
    height: 120px;
    margin: 1.5rem auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

.martyr-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.martyr-image-placeholder {
    font-size: 4rem;
    color: var(--text-muted);
}

.martyr-name {
    font-size: 1.15rem;
    color: var(--dark-color);
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.martyr-info {
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .about-section,
    .bank-accounts-section,
    .martyrs-section {
        padding: 2.5rem 0;
    }
}


.news-section {
    padding: 2rem 0;
}

.section-header {
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    display: inline-block;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.news-item {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.news-item:hover {
    background: var(--light-color);
    padding-left: 2rem;
}

.news-item:last-child {
    border-bottom: none;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.news-icon {
    color: var(--primary-color);
    font-size: 1rem;
}

.news-date {
    color: var(--text-muted);
}

.news-views {
    color: var(--text-muted);
    margin-left: auto;
}

.news-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.news-title a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-title a:hover {
    color: var(--primary-color);
}

.news-title a.flash-news-title {
    color: var(--primary-color) !important;
    font-weight: 700 !important;
}

.news-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.news-read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.news-read-more:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.news-item-with-image {
    padding: 0;
}

.news-item-with-image .row {
    padding: 1.5rem;
}

.news-item-with-image:hover {
    padding-left: 0;
}

.news-item-with-image:hover .row {
    padding-left: 2rem;
}

.news-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-item-with-image:hover .news-image {
    transform: scale(1.05);
}

.news-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.sidebar {
    padding-left: 2rem;
}

.sidebar-widget {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.widget-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 1.5rem;
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: var(--white);
}

.widget-content {
    padding: 1.5rem;
}

.donation-widget {
    background: var(--primary-color);
    border: none;
}

.donation-widget .widget-header {
    background: transparent;
    padding-bottom: 0.5rem;
}

.donation-widget .widget-content {
    text-align: center;
    padding: 2rem 1.5rem;
}

.donation-icon {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.donation-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.weather-widget .widget-content {
    padding: 1.5rem;
}

.current-weather {
    margin-bottom: 1.5rem;
}

.weather-location {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.weather-main {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.weather-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

.weather-temp {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.weather-temp span {
    font-size: 1.5rem;
    font-weight: 400;
}

.weather-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.weather-detail-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.weather-detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--text-muted);
}

.detail-value {
    color: var(--dark-color);
    font-weight: 600;
}

.weather-forecast {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.forecast-item {
    flex: 1;
    text-align: center;
    padding: 0.5rem;
    background: var(--light-color);
    border-radius: 6px;
}

.forecast-day {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.forecast-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.forecast-temp {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-color);
}

@media (max-width: 992px) {
    .sidebar {
        padding-left: 0;
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 350px;
    }

    .hero-content {
        padding: 2rem 0;
    }

    .hero-logo {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .hero-org-name {
        font-size: 0.75rem;
    }

    .hero-main-title {
        font-size: 1.8rem;
    }

    .hero-subtitle-text {
        font-size: 0.95rem;
    }

    .hero-contact-info {
        font-size: 0.75rem;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-contact-info span {
        margin-left: 0 !important;
    }

    .hero-slider .carousel-control-prev {
        left: 10px;
    }

    .hero-slider .carousel-control-next {
        right: 10px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .news-item {
        padding: 1rem;
    }

    .news-item:hover {
        padding-left: 1rem;
    }

    .news-item-with-image:hover .row {
        padding-left: 1rem;
    }

    .news-title {
        font-size: 1.1rem;
    }

    .weather-forecast {
        flex-wrap: wrap;
    }

    .forecast-item {
        flex: 0 0 calc(33.333% - 0.5rem);
    }
}
