/* ==========================================
   ATALIWeb Custom CSS
   ========================================== */

/* --- Modern Page Header --- */
.modern-page-header {
    background: linear-gradient(135deg, #dc3545 0%, #975057 100%) !important;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.modern-page-header .animated-bg-1 {
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.modern-page-header .animated-bg-2 {
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite reverse;
}

.modern-page-header .breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.modern-page-header .breadcrumb-list li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.modern-page-header .breadcrumb-list li.separator {
    color: rgba(255, 255, 255, 0.6);
}

.modern-page-header .breadcrumb-list li.active {
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.modern-page-header h1 {
    color: white;
    font-size: 42px;
    font-weight: 900;
    margin: 0;
    letter-spacing: -1px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 900px;
    margin: 0 auto;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* --- ATALIWeb Modal Styles --- */
.atali-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.2s ease-out;
    align-items: center;
    justify-content: center;
	overflow-y: auto !important;
}

.atali-modal-content {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 380px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: scaleUp 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    margin: auto;
}

.close-atali-modal {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 30px;
    height: 30px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s;
    line-height: 1;
    z-index: 10;
}

.close-atali-modal:hover {
    background: #ff6b00;
    color: white;
}

.atali-modal-header {
    margin-bottom: 20px;
}

.atali-logo-minimal {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d4ff 0%, #ff6b00 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: white;
    font-size: 20px;
    box-shadow: 0 8px 16px rgba(255, 107, 0, 0.15);
}

.atali-title {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.5px;
}

.atali-subtitle {
    font-size: 12px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 2px 0 0;
}

.atali-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 25px;
    padding: 0 10px;
}

.atali-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.atali-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

.website-btn {
    background: #f8f9fa;
    color: #333;
    border: 1px solid #eee;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.phone-btn {
    background: white;
    color: #333;
    border: 1px solid #eee;
}

.atali-btn:hover {
    transform: translateY(-2px);
    filter: brightness(0.98);
}

.website-btn:hover {
    background: #e9ecef;
    color: #1a1a1a;
}

.whatsapp-btn:hover {
    background: #128C7E;
    color: white;
}

.phone-btn:hover {
    border-color: #ddd;
    color: #000;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleUp {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* --- News & Blog Styles --- */
.news-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1) !important;
}

.news-img {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-img img {
    transform: scale(1.1);
}

.news-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.news-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-content h3 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-content h3 a:hover {
    color: #dc3545 !important;
}

.news-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    color: #dc3545;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

/* --- Pagination --- */
.pagination-box {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    color: #1a1a1a;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.pagination-link.active {
    background: linear-gradient(135deg, #dc3545 0%, #975057 100%);
    color: white;
}

.pagination-link:hover:not(.active) {
    background: #f0f0f0;
    transform: translateY(-3px);
}

/* --- Blog Details --- */
.blog-details {
    background: #f8f9fa;
    padding: 100px 0;
}

.blog-details__left {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.blog-details__img {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.blog-details__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-details__content {
    padding: 40px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    font-weight: 600;
}

.blog-meta-item i {
    color: #dc3545;
}

.blog-text {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
}

.blog-text p {
    margin-bottom: 20px;
}

/* --- Share Buttons --- */
.share-area {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.share-title {
    font-weight: 700;
    color: #1a1a1a;
}

.share-links {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    text-decoration: none;
}

.share-btn:hover {
    transform: translateY(-3px);
    color: white;
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.whatsapp {
    background: #25d366;
}

/* --- Sidebar --- */
.sidebar-sticky {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.sidebar-title {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #dc3545 0%, #975057 100%);
}

.sidebar-post-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f9f9f9;
}

.sidebar-post-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.sidebar-post-item:hover .sidebar-post-img img {
    transform: scale(1.1);
}

.sidebar-post-date {
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
}

.sidebar-post-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.sidebar-post-title a {
    .pagination-link:hover:not(.active) {
        background: #f0f0f0;
        transform: translateY(-3px);
    }

    /* --- Blog Details --- */
    .blog-details {
        background: #f8f9fa;
        padding: 100px 0;
    }

    .blog-details__left {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    }

    .blog-details__img {
        position: relative;
        height: 450px;
        overflow: hidden;
    }

    .blog-details__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .blog-details__content {
        padding: 40px;
    }

    .blog-meta {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 25px;
        border-bottom: 1px solid #eee;
        padding-bottom: 20px;
    }

    .blog-meta-item {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #666;
        font-size: 14px;
        font-weight: 600;
    }

    .blog-meta-item i {
        color: #dc3545;
    }

    .blog-text {
        color: #555;
        font-size: 16px;
        line-height: 1.8;
    }

    .blog-text p {
        margin-bottom: 20px;
    }

    /* --- Share Buttons --- */
    .share-area {
        margin-top: 40px;
        padding-top: 30px;
        border-top: 1px solid #eee;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .share-title {
        font-weight: 700;
        color: #1a1a1a;
    }

    .share-links {
        display: flex;
        gap: 10px;
    }

    .share-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s;
        text-decoration: none;
    }

    .share-btn:hover {
        transform: translateY(-3px);
        color: white;
    }

    .share-btn.facebook {
        background: #3b5998;
    }

    .share-btn.twitter {
        background: #1da1f2;
    }

    .share-btn.linkedin {
        background: #0077b5;
    }

    .share-btn.whatsapp {
        background: #25d366;
    }

    /* --- Sidebar --- */
    .sidebar-sticky {
        position: sticky;
        top: 100px;
    }

    .sidebar-widget {
        background: white;
        padding: 30px;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    }

    .sidebar-title {
        font-size: 20px;
        font-weight: 800;
        color: #1a1a1a;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 2px solid #f0f0f0;
        position: relative;
    }

    .sidebar-title::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 50px;
        height: 2px;
        background: linear-gradient(90deg, #dc3545 0%, #975057 100%);
    }

    .sidebar-post-item {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid #f9f9f9;
    }

    .sidebar-post-img {
        width: 80px;
        height: 80px;
        border-radius: 12px;
        overflow: hidden;
        flex-shrink: 0;
    }

    .sidebar-post-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s;
    }

    .sidebar-post-item:hover .sidebar-post-img img {
        transform: scale(1.1);
    }

    .sidebar-post-date {
        font-size: 12px;
        color: #888;
        margin-bottom: 5px;
    }

    .sidebar-post-title {
        font-size: 15px;
        font-weight: 700;
        line-height: 1.4;
        margin: 0;
    }

    .sidebar-post-title a {
        color: #1a1a1a;
        text-decoration: none;
        transition: color 0.3s;
    }
}

/* --- Blog Details --- */
.blog-details {
    background: #f8f9fa;
    padding: 100px 0;
}

.blog-details__left {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.blog-details__img {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.blog-details__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-details__content {
    padding: 40px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    font-weight: 600;
}

.blog-meta-item i {
    color: #dc3545;
}

.blog-text {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
}

.blog-text p {
    margin-bottom: 20px;
}

/* --- Share Buttons --- */
.share-area {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.share-title {
    font-weight: 700;
    color: #1a1a1a;
}

.share-links {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    text-decoration: none;
}

.share-btn:hover {
    transform: translateY(-3px);
    color: white;
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.whatsapp {
    background: #25d366;
}

/* --- Sidebar --- */
.sidebar-sticky {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.sidebar-title {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #dc3545 0%, #975057 100%);
}

.sidebar-post-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f9f9f9;
}

.sidebar-post-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.sidebar-post-item:hover .sidebar-post-img img {
    transform: scale(1.1);
}

.sidebar-post-date {
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
}

.sidebar-post-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.sidebar-post-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s;
}

.sidebar-post-title a:hover {
    color: #dc3545 !important;
}

/* --- Online Islemler Styles --- */
.online-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 50px 35px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.online-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.05) 0%, rgba(151, 80, 87, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.online-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 70px rgba(220, 53, 69, 0.15);
    border-color: #dc3545;
}

.online-card:hover::after {
    opacity: 1;
}

.online-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #dc3545 0%, #975057 50%, #dc3545 100%);
    background-size: 200% 100%;
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
    animation: shimmer 3s infinite;
}

.online-card:hover::before {
    transform: scaleX(1);
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.online-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
    color: #dc3545;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.15);
    position: relative;
    z-index: 1;
}

.online-card:hover .online-icon {
    background: linear-gradient(135deg, #dc3545 0%, #975057 100%);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(220, 53, 69, 0.3);
}

.online-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 18px;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.online-desc {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Enhanced Modal Styles */
.atali-modal-content {
    background: #ffffff;
    padding: 0;
    border-radius: 25px;
    width: 90%;
    max-width: 550px;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
    animation: scaleUp 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin: auto;
    overflow: hidden;
}

.atali-modal-header {
    background: linear-gradient(135deg, #dc3545 0%, #975057 100%);
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.atali-modal-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.atali-modal-header .atali-title {
    color: white;
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.atali-modal-body {
    padding: 35px;
}

.close-atali-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s;
    line-height: 1;
    z-index: 10;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.close-atali-modal:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Modal Form Styles */
.modal-form-group {
    margin-bottom: 22px;
    text-align: left;
}

.modal-form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: #1a1a1a;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.modal-form-input,
.modal-form-input select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s;
    background: #fafafa;
    font-family: inherit;
}

.modal-form-input:focus {
    border-color: #dc3545;
    background: white;
    outline: none;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.08);
    transform: translateY(-2px);
}

.donation-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.donation-amount-btn {
    padding: 14px;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    background: white;
    color: #666;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
}

.donation-amount-btn:hover {
    border-color: #dc3545;
    color: #dc3545;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.15);
}

.donation-amount-btn.active {
    background: linear-gradient(135deg, #dc3545 0%, #975057 100%);
    color: white;
    border-color: #dc3545;
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
}

.modal-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #dc3545 0%, #975057 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.25);
    letter-spacing: 0.5px;
}

.modal-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(220, 53, 69, 0.35);
}

.modal-submit-btn:active {
    transform: translateY(-1px);
}

.result-message {
    margin-top: 20px;
    padding: 18px;
    border-radius: 12px;
    font-size: 14px;
    display: none;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.result-error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

/* Full Screen Modal for Registration */
.modal-fullscreen .atali-modal-content {
    max-width: 1100px;
    width: 95%;
    max-height: 92vh;
    overflow-y: auto;
    padding: 0;
}

.modal-fullscreen .atali-modal-body {
    padding: 40px 50px;
}

.reg-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

@media (max-width: 768px) {
    .reg-grid {
        grid-template-columns: 1fr;
    }

    .donation-options {
        grid-template-columns: 1fr;
    }

    .modal-fullscreen .atali-modal-body {
        padding: 30px 25px;
    }
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e9ecef;
}

.checkbox-wrapper input {
    width: 22px;
    height: 22px;
    top: 20px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s;
    line-height: 1;
    z-index: 10;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.close-atali-modal:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Modal Form Styles */
.modal-form-group {
    margin-bottom: 22px;
    text-align: left;
}

.modal-form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: #1a1a1a;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.modal-form-input,
.modal-form-input select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s;
    background: #fafafa;
    font-family: inherit;
}

.modal-form-input:focus {
    border-color: #dc3545;
    background: white;
    outline: none;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.08);
    transform: translateY(-2px);
}

.donation-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.donation-amount-btn {
    padding: 14px;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    background: white;
    color: #666;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
}

.donation-amount-btn:hover {
    border-color: #dc3545;
    color: #dc3545;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.15);
}

.donation-amount-btn.active {
    background: linear-gradient(135deg, #dc3545 0%, #975057 100%);
    color: white;
    border-color: #dc3545;
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
}

.modal-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #dc3545 0%, #975057 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.25);
    letter-spacing: 0.5px;
}

.modal-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(220, 53, 69, 0.35);
}

.modal-submit-btn:active {
    transform: translateY(-1px);
}

.result-message {
    margin-top: 20px;
    padding: 18px;
    border-radius: 12px;
    font-size: 14px;
    display: none;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.result-error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

/* Full Screen Modal for Registration */
.modal-fullscreen .atali-modal-content {
    max-width: 1100px;
    width: 95%;
    max-height: 92vh;
    overflow-y: auto;
    padding: 0;
}

.modal-fullscreen .atali-modal-body {
    padding: 40px 50px;
}

.reg-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

@media (max-width: 768px) {
    .reg-grid {
        grid-template-columns: 1fr;
    }

    .donation-options {
        grid-template-columns: 1fr;
    }

    .modal-fullscreen .atali-modal-body {
        padding: 30px 25px;
    }
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e9ecef;
}

.checkbox-wrapper input {
    width: 22px;
    height: 22px;
    accent-color: #dc3545;
    cursor: pointer;
    margin-top: 2px;
}

.checkbox-wrapper label {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    cursor: pointer;
}

/* Inline Alert Styles */
.inline-alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.inline-alert.show {
    opacity: 1;
    transform: translateY(0);
}

.inline-alert i {
    font-size: 22px;
    flex-shrink: 0;
}

.inline-alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 2px solid #b1dfbb;
}

.inline-alert-success i {
    color: #28a745;
}

.inline-alert-warning {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    color: #856404;
    border: 2px solid #ffd93d;
}

.inline-alert-warning i {
    color: #ffc107;
}

.inline-alert-error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border: 2px solid #f1aeb5;
}

.inline-alert-error i {
    color: #dc3545;
}

/* Loading Spinner */
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #dc3545;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}