* {
    margin: 0;
    padding: 0;
}
body {
    font-family: Arial, sans-serif;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 60px;
    border-bottom: 1px solid black;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.logo-icon svg {
    width: 36px;
    height: 36px;
}
.logo-kiber {
    font-size: 30px;
    font-weight: 600;
    color: black;
}
.logo-kafedra {
    font-size: 15px;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 10px;
}
.nav-links a {
    text-decoration: none;
    font-size: 17px;
    padding: 16px;
    color: slategray;
}
.nav-links a:hover {
    background: lightgrey;
}
.nav-links a.active {
    background: royalblue;
    color: white;
    border-radius: 6px;
}

/* sehife bashligi */
.page-top {
    background: royalblue;
    padding: 70px 60px;
    color: white;
}
.page-top-text h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 12px;
}
.page-top-text p {
    font-size: 22px;
}

/* esas hisse - form ve elaqe melumati */
.elaqe-main {
    padding: 70px 60px;
    background: white;
}
.elaqe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1280px;
    margin: 0 auto;
}

/* form */
.form-box h2 {
    font-size: 36px;
    color: black;
    margin-bottom: 30px;
    font-weight: 700;
}
#elaqeForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group label {
    font-size: 15px;
    color: black;
    margin-bottom: 8px;
    font-weight: 600;
}
.form-group label span {
    color: red;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid lightgray;
    border-radius: 8px;
    font-size: 15px;
    font-family: Arial, sans-serif;
    color: black;
    background: white;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: darkgray;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: royalblue;
}
.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

/* gonder duymesi */
.btn-submit {
    background: royalblue;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    font-size: 17px;
    font-weight: 600;
    font-family: Arial, sans-serif;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}
.btn-submit:hover {
    background: midnightblue;
}
.send-icon {
    font-size: 18px;
}

/* uğur mesajı */
.success-msg {
    display: none;
    text-align: center;
    padding: 30px 20px;
    background: honeydew;
    border: 1px solid lightgreen;
    border-radius: 12px;
    margin-top: 20px;
}
.success-msg.show {
    display: block;
}
.success-msg span {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: mediumseagreen;
    color: white;
    border-radius: 50%;
    font-size: 32px;
    line-height: 60px;
    margin-bottom: 14px;
}
.success-msg h3 {
    color: darkgreen;
    margin-bottom: 8px;
    font-size: 22px;
}
.success-msg p {
    color: dimgray;
    font-size: 15px;
}

/* sag teref - elaqe melumati */
.contact-info h2 {
    font-size: 36px;
    color: black;
    margin-bottom: 30px;
    font-weight: 700;
}
.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: flex-start;
}
.info-icon-box {
    width: 48px;
    height: 48px;
    background: lavender;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.info-text h3 {
    font-size: 18px;
    color: black;
    margin-bottom: 6px;
    font-weight: 700;
}
.info-text p {
    color: dimgray;
    font-size: 15px;
    line-height: 1.6;
}
.info-text a {
    display: block;
    color: royalblue;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.7;
}
.info-text a:hover {
    text-decoration: underline;
}

/* komanda shekli */
.team-photo {
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 10;
    background: ghostwhite;
}
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.photo-placeholder {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    background: linear-gradient(135deg, lavender, ghostwhite);
}
.photo-placeholder span {
    font-size: 60px;
}
.photo-placeholder p {
    color: dimgray;
    font-size: 16px;
}

/* FAQ */
.faq-section {
    padding: 70px 60px;
    background: ghostwhite;
}
.faq-section h2 {
    text-align: center;
    font-size: 36px;
    color: black;
    margin-bottom: 40px;
    font-weight: 700;
}
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}
.faq-card {
    background: white;
    border: 1px solid lightgray;
    border-radius: 12px;
    padding: 28px 30px;
    transition: box-shadow 0.2s;
}
.faq-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.faq-card h3 {
    font-size: 19px;
    color: black;
    margin-bottom: 12px;
    font-weight: 700;
}
.faq-card p {
    color: dimgray;
    font-size: 15px;
    line-height: 1.6;
}

/* surpriz duyme bolmesi */
.surpriz-bolme {
    text-align: center;
    padding: 40px 60px;
    background: white;
}
.surpriz-btn {
    background: white;
    border: 2px solid royalblue;
    color: royalblue;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    font-family: Arial, sans-serif;
    cursor: pointer;
    transition: 0.3s;
}
.surpriz-btn:hover {
    background: royalblue;
    color: white;
    transform: scale(1.05);
}

/* surpriz modal */
.surpriz-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.surpriz-modal.acildi {
    display: flex;
    animation: fadeIn 0.3s;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.surpriz-content {
    background: white;
    border-radius: 20px;
    padding: 50px 60px;
    text-align: center;
    max-width: 550px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    animation: zoomIn 0.4s;
}
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.7);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.surpriz-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    background: ghostwhite;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    color: dimgray;
    transition: 0.2s;
}
.surpriz-close:hover {
    background: tomato;
    color: white;
    transform: rotate(90deg);
}
.surpriz-icon {
    font-size: 80px;
    margin-bottom: 16px;
    animation: bounce 1.5s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.surpriz-content h2 {
    font-size: 32px;
    color: royalblue;
    margin-bottom: 20px;
}
.surpriz-text {
    font-size: 22px;
    color: black;
    margin-bottom: 14px;
    line-height: 1.5;
}
.bal {
    background: linear-gradient(90deg, gold, orange);
    color: white;
    padding: 6px 18px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 26px;
    display: inline-block;
}
.surpriz-sub {
    font-size: 20px;
    color: dimgray;
    margin-top: 10px;
}

/* footer (Jalenin stili) */
.footer {
    background: #111827;
    color: lightgray;
    padding: 50px 60px 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid slategray;
}
.footer-logo {
    font-size: 19px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}
.footer-brand p {
    font-size: 16px;
    color: darkgray;
    line-height: 1.6;
}
.footer-links h4,
.footer-contact h4 {
    font-size: 17px;
    font-weight: 600;
    color: white;
    margin-bottom: 14px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-links a {
    text-decoration: none;
    font-size: 16px;
    color: darkgray;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: white;
}
.footer-contact p {
    font-size: 16px;
    color: darkgray;
    margin-bottom: 6px;
    line-height: 1.6;
}
.footer-bottom {
    padding: 18px 0;
    text-align: center;
    font-size: 15px;
    color: gray;
}


/* responsive - kicik ekranlarda dil dugmeleri kompakt */
@media (max-width: 720px) {
    .dil-secim {
        margin-left: 0;
        margin-top: 10px;
    }
    .dil-secim button {
        padding: 5px 8px;
        font-size: 12px;
    }
}

/* nav-right: nav-links ve dil-secim yan-yana */
.nav-right {
    display: flex;
    align-items: center;
}
