/* Main CSS for Mustafa Cambaz Photography Competition Clone */

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #777;
    background-color: #fff;
}

/* Header Styles - Sticky position, transparent by default */
html #header,
html #header.header-transparent,
html #header.header-effect-shrink,
body #header,
body #header.header-transparent,
body #header.header-effect-shrink {
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    background: transparent !important;
    backdrop-filter: none !important;
    border-bottom: none !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
}

/* Scrolled state - white background */
html #header.scrolled,
html #header.header-transparent.scrolled,
html #header.header-effect-shrink.scrolled,
body #header.scrolled,
body #header.header-transparent.scrolled,
body #header.header-effect-shrink.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid #eee !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.header-logo img {
    max-height: 50px;
    width: auto;
}

.header-nav nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav nav ul li {
    margin: 0 15px;
}

.header-nav nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    margin-right: 15px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile menu animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Menu links when NOT scrolled - white color for transparent background */
#header:not(.scrolled) .header-nav nav ul li a {
    color: #575757 !important;
}

/* Active menu item when NOT scrolled - keep red color */
#header:not(.scrolled) .header-nav nav ul li a.active {
    color: #ed1c24 !important;
    border-bottom-color: #ed1c24 !important;
}

.header-nav nav ul li a:hover,
.header-nav nav ul li a.active {
    color: #ed1c24;
    border-bottom-color: #ed1c24;
}

/* Hero Section */
.hero-section {
    position: relative;
    display: block;
    padding: 0;
    margin: 0;
}

.hero-section img {
    display: block;
    width: 100%;
    height: auto;
}


/* Section Styles */
.section-padding {
    padding: 80px 0;
}

@media (max-width: 767px) {
    .section-padding {
        padding: 40px 0;
    }
    
    /* First section after hero - reduce top padding more */
    #about.section-padding {
        padding: 20px 0 40px 0;
    }
}

@media (max-width: 576px) {
    .section-padding {
        padding: 25px 0;
    }
    
    /* First section after hero - minimal top padding */
    #about.section-padding {
        padding: 10px 0 25px 0;
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ed1c24;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

/* Description Text with decorative elements */
.description-text {
    font-size: 17px;
    line-height: 30px;
    font-weight: 400;
    color: #333;
    text-align: center;
    max-width: 1040px;
    margin: 0 auto;
    position: relative;
    display: block;
    padding: 60px 210px;
}

.description-text:before {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    right: 0;
    top: 20px;
    box-shadow: 9px -9px 0 #ed1c24;
}

.description-text:after {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    left: 0;
    bottom: 20px;
    box-shadow: -9px 9px 0 #ed1c24;
}

@media (max-width: 767px) {
    .description-text:before {
        box-shadow: 3px -3px 0 #ed1c24;
    }
    
    .description-text:after {
        box-shadow: -3px 3px 0 #ed1c24;
    }
}

/* Category Cards */
.category-card {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.category-icon {
    margin-bottom: 20px;
}

.oduller-img {
    width: 80px;
    height: auto;
}

.category-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    min-height: 60px;
}

.prize-info {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.prize {
    font-size: 1rem;
    font-weight: 600;
    color: #ed1c24;
    margin-bottom: 5px;
}

/* Special Award */
.special-award {
    max-width: 400px;
    margin: 0 auto;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: #ed1c24;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 50px;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 50px;
}

.timeline-balloon {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

.timeline-balloon:before {
    content: '';
    position: absolute;
    top: 30px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-balloon:before {
    right: -20px;
    border-left-color: white;
}

.timeline-item:nth-child(even) .timeline-balloon:before {
    left: -20px;
    border-right-color: white;
}

.balloon-time {
    background: #ed1c24;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
    font-weight: 600;
}

.timeline-balloon h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    text-transform: inherit;
}

/* Speaker/Jury Cards */
.custom-speaker-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #ddd;
}

.custom-speaker-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.speaker-photo {
    position: relative;
    overflow: hidden;
}

.speaker-photo img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%);
}

.jury-title {
    text-align: center;
    font-size: 11px;
    line-height: 14px;
    display: block;
    background: #333333;
    padding: 10px 8px;
    color: white;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    font-weight: 400;
}

.speaker-info {
    padding: 15px 10px;
    border: none;
}

.speaker-info h3 {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.custom-font-size-2 {
    font-size: 14px !important;
}

.line-height-3 {
    line-height: 1.2 !important;
}

.text-color-dark {
    color: #333 !important;
}

.custom-font-size-4 {
    font-size: 16px !important;
}

.lightbox {
    display: block;
    text-decoration: none;
}

.lightbox:hover {
    text-decoration: none;
}

.bg-color-light {
    background-color: #fff !important;
}

/* Winner Cards */
.winner-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.winner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.winner-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.winner-info {
    padding: 20px;
    text-align: center;
}

.winner-info h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.winner-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Press Section */
.press-custom a {
    display: block;
    width: 100%;
    border: 1px solid #e6e6e6;
    padding: 6px;
    background: #f5f5f5;
    margin-bottom: 24px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.press-custom a:hover {
    box-shadow: 0px 23px 32px 0px #e5e8eb;
    border-color: #ddd;
    text-decoration: none;
    transform: translateY(-2px);
}

.press-custom a img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 3px;
}

.press-custom .text {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #555;
    padding: 6px 2px 4px;
    text-transform: uppercase;
    text-decoration: none;
}

/* Contact Section */
.contact-section {
    background: #f5f5f5;
    padding: 80px 0;
    position: relative;
}

.contact-content {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.contact-content .container {
    display: flex;
    justify-content: center;
    max-width: 1200px;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    letter-spacing: 2px;
    margin: 0;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

/* Left Side - Logo Section */
.contact-logo-section {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-container {
    text-align: center;
    color: #333;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.contact-main-logo {
    max-height: 80px;
    width: auto;
    position: relative;
    z-index: 3;
}

/* Right Side - Contact Info Section */
.contact-info-section {
    background: #ed1c24;
    min-height: 400px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
}

/* Add the arrow pointing from red to gray */
.contact-info-section:after {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-right: 20px solid #ed1c24;
    z-index: 4;
}

.yeni-safak-header {
    margin-bottom: 30px;
}

.yeni-safak-logo-img {
    width: auto;
    height: 25px;
    opacity: 1;
    filter: brightness(0) invert(1);
}

.contact-details-content {
    color: white;
}

.contact-item {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-align: left;
}

.contact-label {
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 0.95rem;
    color: white;
    font-weight: 400;
    line-height: 1.4;
}

/* Contact Arrow - removed, using :after pseudo element instead */

/* Responsive Contact */
@media (max-width: 991px) {
    .contact-info-section:after {
        display: none;
    }
    
    .contact-main-logo {
        max-height: 120px;
    }
    
    .contact-info-section {
        padding: 30px;
        min-height: 350px;
    }
    
    .contact-logo-section {
        min-height: 350px;
    }
}

@media (max-width: 767px) {
    .contact-title {
        font-size: 1.5rem;
    }
    
    .contact-main-logo {
        max-height: 60px;
    }
    
    .contact-info-section {
        padding: 20px;
        min-height: 300px;
    }
    
    .yeni-safak-logo-img {
        height: 20px;
    }
    
    .contact-logo-section {
        min-height: 300px;
    }
}

/* Footer */
.footer {
    background: #f8f9fa;
    color: #333;
    padding: 40px 0 20px 0;
    border-top: 1px solid #e9ecef;
}

/* Footer Sponsors */
.footer-sponsors {
    padding: 30px 0;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 30px;
}

.sponsors-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.sponsor-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding: 10px;
}

.sponsor-item img {
    max-height: 60px;
    max-width: 150px;
    width: auto;
    height: auto;
    filter: grayscale(30%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.sponsor-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.footer-content {
    text-align: center;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links li {
    margin: 0;
}

.footer-links li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: #ed1c24;
    background: rgba(237, 28, 36, 0.05);
    text-decoration: none;
}

.footer-copyright {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
    margin-top: 20px;
}

.footer-copyright p {
    margin: 0;
    color: #666;
    font-size: 13px;
    font-weight: 400;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .sponsors-row {
        gap: 30px;
    }
    
    .sponsor-item {
        height: 70px;
    }
    
    .sponsor-item img {
        max-height: 50px;
        max-width: 120px;
    }
}

@media (max-width: 767px) {
    .footer-sponsors {
        padding: 20px 0;
    }
    
    .sponsors-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .sponsor-item {
        height: 60px;
        width: 100%;
    }
    
    .sponsor-item img {
        max-height: 40px;
        max-width: 100px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-links li a {
        display: block;
        padding: 10px;
    }
}

/* About Video Section */
#about-video {
    position: relative;
    overflow: hidden;
}

#about-video .row {
    margin-left: 0;
    margin-right: 0;
}

#about-video .col-lg-4 {
    padding-left: 0;
    padding-right: 0;
}

.about-video {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    height: 500px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.play-video-custom {
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.play-video-custom:hover {
    transform: scale(1.1);
}

.play-video-custom img {
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.3));
    cursor: pointer;
}

.bg-color-primary {
    background-color: #ed1c24 !important;
    height: 500px;
    display: flex;
    align-items: center;
}

.custom-about-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

.about-custom-height {
    max-height: 100%;
    overflow-y: auto;
    padding: 30px;
    border: 2px dotted rgba(255,255,255,0.5);
    border-radius: 5px;
}

.about-custom-height::-webkit-scrollbar {
    width: 5px;
}

.about-custom-height::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
}

.about-custom-height::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 5px;
}

.about-custom-height::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.5);
}

.text-color-light {
    color: #fff !important;
}

.text-color-light p {
    color: #fff;
    line-height: 1.8;
    font-size: 13px;
    margin-bottom: 20px;
}

.about-title h3 {
    font-size: 1.6em !important;
    line-height: 1.2em !important;
    letter-spacing: 1px;
}

.btn-tertiary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff !important;
    padding: 10px 25px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-tertiary:hover {
    background: #fff;
    color: #ed1c24 !important;
    text-decoration: none;
}

.custom-about-carousel {
    position: relative;
    overflow: hidden;
}

.carousel-container {
    height: 500px;
}

.carousel-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.video-modal-content {
    position: relative;
    margin: 5% auto;
    width: 80%;
    max-width: 900px;
    height: 70%;
}

.video-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.video-modal-close:hover {
    color: #ed1c24;
}

@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
        margin: 10% auto;
        height: 60%;
    }
    
    .video-modal-close {
        top: -35px;
        font-size: 25px;
    }
}

/* Image Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.image-modal-content {
    position: relative;
    margin: 2% auto;
    width: 90%;
    max-width: 1200px;
    height: 96%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10001;
}

.image-modal-close:hover {
    color: #ed1c24;
}

.image-modal-info {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 25px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.image-modal-info h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: bold;
}

.image-modal-info span {
    font-size: 14px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .image-modal-content {
        width: 95%;
        margin: 5% auto;
        height: 90%;
    }
    
    .image-modal-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }
    
    .image-modal-info {
        bottom: 10px;
        padding: 10px 15px;
    }
    
    .image-modal-info h4 {
        font-size: 16px;
    }
    
    .image-modal-info span {
        font-size: 12px;
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .slide-title {
        font-size: 2.5rem;
    }
    
    .description-text {
        padding: 40px 16px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding: 0 20px !important;
        margin-bottom: 30px;
    }
    
    .timeline:before {
        left: 20px;
    }
    
    .timeline-balloon:before {
        left: -20px !important;
        border-right-color: white !important;
        border-left-color: transparent !important;
    }
}

@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .header-nav nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        display: none;
        z-index: 1000;
    }
    
    .header-nav nav.show {
        display: block;
    }
    
    .header-nav nav ul {
        flex-direction: column;
        padding: 20px 0;
    }
    
    .header-nav nav ul li {
        margin: 0;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    
    .header-nav nav ul li:last-child {
        border-bottom: none;
    }
    
    .header-nav nav ul li a {
        padding: 15px 30px;
        display: block;
        color: #333 !important;
        border-bottom: none !important;
    }
    
    .header-nav nav ul li a:hover,
    .header-nav nav ul li a.active {
        background: rgba(237, 28, 36, 0.1);
        color: #ed1c24 !important;
    }
}

@media (max-width: 767px) {
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .slide-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .timeline-balloon .balloon-time .time-text {
        opacity: 1;
    }
}

@media (max-width: 575px) {
    .hero-section {
        background-attachment: scroll;
    }
    
    .slide-content {
        padding: 0 15px;
    }
    
    .slide-title {
        font-size: 1.8rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .category-card {
        margin-bottom: 30px;
    }
    
    .custom-speaker-card img {
        height: 200px;
    }
    
    /* Mobile header - white to transparent transition */
    html #header,
    html #header.header-transparent,
    html #header.header-effect-shrink {
        position: sticky !important;
        background: rgba(255, 255, 255, 0.95) !important;
        border-bottom: 1px solid #eee !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    }
    
    html #header.scrolled,
    html #header.header-transparent.scrolled,
    html #header.header-effect-shrink.scrolled {
        background: transparent !important;
        border-bottom: none !important;
        box-shadow: none !important;
    }
}

/* KVKK Modal Styles */
.kvkk-content {
    max-height: 70vh;
    overflow-y: auto;
    padding: 20px;
    font-size: 14px;
    line-height: 1.8;
    color: #333;
}

.kvkk-subtitle {
    color: #222;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.kvkk-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.kvkk-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.kvkk-content ul li {
    margin-bottom: 8px;
    list-style-type: disc;
}

.kvkk-contact {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
}

.kvkk-contact p {
    margin-bottom: 8px;
    text-align: left;
}

.kvkk-contact strong {
    color: #222;
    display: inline-block;
    min-width: 150px;
}

#kvkkModal .modal-dialog {
    max-width: 900px;
}

#kvkkModal .modal-header {
    background: #f5f5f5;
    border-bottom: 2px solid #e0e0e0;
}

#kvkkModal .modal-title {
    color: #222;
    font-weight: 600;
    font-size: 20px;
}

#kvkkModal .modal-footer {
    background: #f5f5f5;
    border-top: 2px solid #e0e0e0;
}

#kvkkModal .btn-secondary {
    background: #6c757d;
    border: none;
    padding: 8px 20px;
    font-weight: 500;
}

#kvkkModal .btn-secondary:hover {
    background: #5a6268;
}

/* Scrollbar styles for KVKK content */
.kvkk-content::-webkit-scrollbar {
    width: 8px;
}

.kvkk-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.kvkk-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.kvkk-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Gizlilik Politikası Modal Styles */
.gizlilik-content {
    max-height: 70vh;
    overflow-y: auto;
    padding: 20px;
    font-size: 14px;
    line-height: 1.8;
    color: #333;
}

.gizlilik-subtitle {
    color: #222;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e0e0e0;
}

.gizlilik-content p {
    margin-bottom: 15px;
    text-align: justify;
}

#gizlilikModal .modal-dialog {
    max-width: 900px;
}

#gizlilikModal .modal-header {
    background: #f5f5f5;
    border-bottom: 2px solid #e0e0e0;
}

#gizlilikModal .modal-title {
    color: #222;
    font-weight: 600;
    font-size: 20px;
}

#gizlilikModal .modal-footer {
    background: #f5f5f5;
    border-top: 2px solid #e0e0e0;
}

#gizlilikModal .btn-secondary {
    background: #6c757d;
    border: none;
    padding: 8px 20px;
    font-weight: 500;
}

#gizlilikModal .btn-secondary:hover {
    background: #5a6268;
}

/* Scrollbar styles for Gizlilik content */
.gizlilik-content::-webkit-scrollbar {
    width: 8px;
}

.gizlilik-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.gizlilik-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.gizlilik-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}