/* CSS kodları */
:root {
    --primary-color: #30296c;
    --secondary-color: #f68820;
    --text-color: #696687;
    --light-bg: #f9fbfe;
    --white: #ffffff;
    --gradient-orange: linear-gradient(to right, #ffa203, #ff5e29);
    --gradient-orange-hover: linear-gradient(to right, #ff5e29, #ffa203);
    --shadow: 0 0 20px 3px rgba(0, 0, 0, .05);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    color: var(--text-color);
    margin: 0;
    padding: 0;
    background-color: var(--light-bg);
    line-height: 1.6;
}

a {
    transition: var(--transition);
    text-decoration: none;
    color: var(--text-color);
}

a:hover {
    text-decoration: none;
    color: var(--secondary-color);
}

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

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-family: "Barlow", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--secondary-color);
    margin-left: 5px;
}

.logo i {
    margin-right: 10px;
    color: var(--secondary-color);
    font-size: 24px;
}

.language-switcher {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.language-switcher a {
    display: flex;
    align-items: center;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 4px;
    transition: var(--transition);
}

.language-switcher a:hover {
    background-color: rgba(246, 136, 32, 0.1);
}

.language-switcher a img {
    width: 20px;
    height: 15px;
    margin-right: 5px;
    border: 1px solid #eee;
}

.language-switcher a.active {
    color: var(--secondary-color);
    background-color: rgba(246, 136, 32, 0.1);
}

/* Main Content Styles */
.main-content {
    padding: 40px 0;
    text-align: center;
}

.page-title {
    font-family: "Barlow", sans-serif;
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.search-container {
    max-width: 800px;
    margin: 0 auto 40px;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    justify-content: center;
}

.search-box input {
    width: 100%;
    max-width: 320px;
    height: 40px;
    padding: 0 15px;
    border: 1px solid #d7d7d7;
    border-radius: var(--border-radius);
    font-size: 15px;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.search-box input:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 2px 15px rgba(246, 136, 32, 0.2);
}

.search-box button {
    height: 40px;
    padding: 0 18px;
    font-size: 15px;
    border-radius: var(--border-radius);
    position: static;
    right: unset;
    top: unset;
    margin-left: 0;
    display: flex;
    align-items: center;
    background: var(--gradient-orange);
    color: var(--white);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.search-box button:hover {
    background: var(--gradient-orange-hover);
    transform: translateY(-2px);
}

.search-box button i {
    margin-right: 6px;
}

.search-hints {
    text-align: center;
    font-size: 14px;
    color: #888;
    margin-top: 5px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.search-hints span {
    background-color: rgba(48, 41, 108, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.search-hints span:hover {
    background-color: rgba(246, 136, 32, 0.2);
    color: var(--secondary-color);
}

.forgot-code {
    display: inline-block;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.forgot-code:hover {
    color: var(--secondary-color);
    background-color: rgba(246, 136, 32, 0.1);
}

.info-section {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-top: 40px;
    text-align: left;
}

.info-section h3 {
    font-family: "Barlow", sans-serif;
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.info-section h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-orange);
    border-radius: 3px;
}

.info-section p {
    margin-bottom: 20px;
}

.info-section ul {
    padding-left: 20px;
}

.info-section ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.info-section ul li:before {
    content: '•';
    color: var(--secondary-color);
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

/* Footer Styles */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    font-family: "Barlow", sans-serif;
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-orange);
    border-radius: 3px;
}

.footer-section p, .footer-section a {
    color: #eae9f0;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.contact-info {
    margin-top: 20px;
}

.contact-info div {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 10px;
    color: var(--secondary-color);
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

/* Preloader styles */
.preloader {
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--white), #f5f5f5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.matrix-loader {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.matrix-letter {
    color: var(--secondary-color);
    font-family: 'Barlow', sans-serif;
    font-size: 3rem;
    font-weight: bold;
    opacity: 0;
    transform: translateY(20px);
    animation: appearLetter 0.4s forwards;
}

.loading-text {
    color: var(--primary-color);
    font-size: 1.2rem;
    opacity: 0;
    animation: fadeIn 0.5s forwards 1.5s;
}

@keyframes appearLetter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 24px;
    cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .page-title {
        font-size: 32px;
    }
    
    .info-section {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .logo {
        justify-content: center;
        width: 100%;
    }
    
    .language-switcher {
        justify-content: center;
        width: 100%;
    }
    
    .page-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .search-box input {
        height: 55px;
        padding-right: 110px;
    }
    
    .search-box button {
        height: 45px;
        padding: 0 20px;
        font-size: 14px;
    }
    
    .search-box button i {
        margin-right: 5px;
    }
    
    .info-section {
        padding: 25px;
        margin-top: 30px;
    }
    
    .footer-section {
        flex: 100%;
    }
}

@media (max-width: 576px) {
    .search-container {
        padding-left: 10px;
        padding-right: 10px;
    }
    .search-box {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        box-sizing: border-box;
        width: 100%;
    }
    .search-box input {
        max-width: 100%;
        width: 100%;
        height: 40px;
        font-size: 15px;
        box-sizing: border-box;
    }
    .search-box button {
        width: 100%;
        height: 40px;
        font-size: 15px;
        justify-content: center;
    }
    .preloader {
        padding: 0 10px;
        overflow: hidden;
        min-width: 0;
        min-height: 0;
        box-sizing: border-box;
    }
    .matrix-loader {
        flex-wrap: wrap;
        gap: 4px;
        justify-content: center;
    }
    .matrix-letter {
        font-size: 1.5rem;
        min-width: 1.5rem;
    }
    .loading-text {
        font-size: 1rem;
        word-break: break-word;
    }
}

@media (min-width: 577px) {
    .search-box input {
        max-width: 400px;
        height: 48px;
        font-size: 17px;
    }
    .search-box button {
        height: 48px;
        font-size: 17px;
        padding: 0 28px;
    }
    .search-hints {
        justify-content: flex-start;
        margin-left: 20px;
    }
}

@media (min-width: 601px) {
    .search-hints {
        transform: translateX(115px);
    }
}

@media (max-width: 600px) {
    .search-hints {
        transform: none;
    }
}

/* Animation for search button */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 94, 41, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 94, 41, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 94, 41, 0);
    }
}

.pulse-animation {
    animation: pulse 1.5s infinite;
}

/* Tooltip styles */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 14px;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: var(--primary-color) transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.faq-section {
    margin: 40px 0 0 0;
    max-width: 100%;
    width: 100%;
    background: #fff;
    border-radius: 0;
    box-shadow: none;
    padding: 32px 40px 24px 40px;
}

.faq-section h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--primary-color);
    text-align: center;
}

.faq-item {
    margin-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: left;
    padding: 16px 0;
    cursor: pointer;
    transition: color 0.2s;
    position: relative;
}

.faq-question:after {
    content: '\25BC';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s;
    font-size: 1rem;
    color: var(--secondary-color);
}

.faq-item.active .faq-question:after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    font-size: 1rem;
    color: #444;
    background: #f9fbfe;
    border-radius: 0 0 8px 8px;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
    padding: 0 0;
    margin-bottom: 0;
}

.faq-item.active .faq-answer {
    padding: 16px 0 16px 0;
    max-height: 300px;
    margin-bottom: 8px;
}

@media (min-width: 992px) {
    .faq-section {
        max-width: 100%;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
        border-radius: 0;
        box-shadow: none;
    }
}

@media (max-width: 600px) {
    .faq-section {
        max-width: 600px;
        width: 100%;
        margin: 40px auto 0 auto;
        padding: 32px 12px 24px 12px;
        border-radius: 10px;
        box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    }
} 