/* İletişim kartları özel stilleri */
.contact-card-items {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.contact-card-items:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(27, 56, 116, 0.15);
    border-color: #1b3874;
}

.contact-card-items .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1b3874 0%, #2a5298 100%);
    border-radius: 50%;
    margin: 0 auto;
}

.contact-card-items .icon i {
    color: #ffffff !important;
}

.contact-card-items h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1b3874;
    margin-bottom: 15px;
}

.contact-card-items a {
    color: #1b3874;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    display: inline-block;
}

.contact-card-items a:hover {
    color: #0f264f;
    text-decoration: underline;
}

.contact-card-items p {
    color: #666;
    font-size: 14px;
    margin-top: 5px;
}

/* Modal Stilleri */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
    overflow-y: auto;
}

.modal.show {
    display: block;
}

.modal-dialog {
    position: relative;
    width: auto;
    max-width: 800px;
    margin: 50px auto;
    pointer-events: none;
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 100px);
}

.modal-lg {
    max-width: 800px;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    outline: 0;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid #f0f0f0;
}

.modal-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #1b3874;
}

.btn-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.btn-close:hover {
    background-color: #f0f0f0;
    color: #1b3874;
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 25px;
    max-height: 70vh;
    overflow-y: auto;
}

/* Yarış detayları içeriği */
.race-detail-content {
    line-height: 1.8;
    color: #333;
}

.race-detail-content p {
    margin-bottom: 15px;
    font-size: 16px;
}

.race-detail-content strong {
    color: #1b3874;
    font-weight: 600;
}

.race-detail-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.race-detail-content ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

.race-detail-content a {
    color: #1b3874;
    text-decoration: underline;
    font-weight: 500;
}

.race-detail-content a:hover {
    color: #0f264f;
}

/* Modal scrollbar */
.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #1b3874;
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: #0f264f;
}

/* Festival kartları stilleri */
.festival-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    cursor: pointer;
}

.festival-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(27, 56, 116, 0.15);
    border-color: #1b3874;
}

.festival-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1b3874 0%, #2a5298 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.festival-icon i {
    color: #ffffff !important;
    font-size: 24px;
}

.festival-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1b3874;
    margin-bottom: 15px;
}

.festival-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 10px;
}

.festival-card strong {
    color: #1b3874;
    font-weight: 600;
}

/* İletişim Section Stilleri */
.contact-section {
    background: #ffffff;
    padding: 80px 0;
}

.contact-info-box {
    padding: 40px;
    background: #ffffff;
    border-radius: 15px;
}

.contact-info-box h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1b3874;
    margin-bottom: 30px;
}

.contact-email {
    display: inline-block;
    font-size: 28px;
    font-weight: 600;
    color: #1b3874;
    text-decoration: none;
    padding: 15px 30px;
    background: #f9f9f9;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid #1b3874;
}

.contact-email:hover {
    background: #1b3874;
    color: #ffffff;
    transform: scale(1.05);
}

/* Hero slider gradient'i kaldır */
.hero-slider .hero-image::before {
    display: none !important;
}