﻿/* GENEL */
html, body {
    height: 100%;
    margin: 0px;
    display: flex;
    flex-direction: column;
}

/* İçerik alanı büyüyüp footer'ı aşağıya iter */
#form1 {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
    justify-content: center;
}

.contact-form,
.maps {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

    .contact-form .form-control {
        width: 100%;
        padding: 12px 15px;
        margin-bottom: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 1rem;
    }

    .contact-form .btn {
        width: 100%;
        padding: 12px;
        background: #ffcc03;
        border-radius: 5px;
        font-weight: bold;
        border: none;
        cursor: pointer;
        transition: all 0.3s;
    }

        .contact-form .btn:hover {
            background: #000;
            color: #ffcc03;
        }
    .contact-form .alert {
        display: block;
        margin-top: 10px;
        font-weight: bold;
    }
    .form-group span,
    .contact-form .form-group span {
        font-size: 0.9em;
        color: red;
        display: block;
        margin-top: 4px;
    }
    .maps iframe {
        width: 100%;
        height: 350px;
        border: 0;
        border-radius: 10px;
    }



.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}
.MainContentWrapper {
    flex: 1;
    padding-bottom: 250px;
}


/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background: #353535;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 70px;
    height: auto;
}

.logo-area h1 {
    font-size: 1.2rem;
    margin: 0;
    color: #ffcc03;
}

/* NAVBAR */
.navbar ul {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.navbar a {
    padding: 8px 15px;
    background: #ffcc03;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

    .navbar a:hover,
    .navbar a.active {
        background: #000;
        color: #ffcc03;
    }

/* SLIDER */
.hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s;
}

    .slide.active {
        opacity: 1;
    }

.hero-text {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    background: rgba(0,0,0,0.5);
    padding: 20px;
    border-radius: 10px;
}

    .hero-text h2 {
        color: #ffcc03;
        margin-bottom: 10px;
    }



.contact {
    padding: 60px 20px;
    text-align: center;
    background: #f5f5f5;
}

.form-control {
    width: 100%;
    max-width: 500px;
    padding: 12px;
    margin: 8px auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: block;
}

.btn {
    padding: 12px 20px;
    background: #ffcc03;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
}

    .btn:hover {
        background: #000;
        color: #ffcc03;
    }


.pricing {
    padding: 60px 20px;
    text-align: center;
}

.download-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s;
}

    .download-btn img {
        width: 24px;
        height: 24px;
    }

    .download-btn.excel {
        background: #1D6F42; /* yeşil */
        color: white;
    }

        .download-btn.excel:hover {
            background: #14522f;
        }

    .download-btn.pdf {
        background: #D32F2F; /* kırmızı */
        color: white;
    }

        .download-btn.pdf:hover {
            background: #9a2323;
        }


/* Menü toggle (hamburger) */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #ffcc03;
}

/* Mobil görünüm */
@media (max-width: 768px) {
    .navbar ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px; /* header yüksekliği */
        right: 10px;
        background: #1c1c1c;
        padding: 10px;
        border-radius: 8px;
        width: 150px;
        z-index: 10; /* footer’ın üstünde görünmesi için */
    }

        .navbar ul li {
            margin: 10px 0;
        }

        .navbar ul.show {
            display: flex;
        }


    .menu-toggle {
        display: block;
    }
}

/* Orta boy ekranlar (tablet / küçük laptop) */
@media (max-width: 1024px) and (min-width: 769px) {
    .navbar ul {
        gap: 10px;
    }


    .navbar a {
        padding: 6px 10px;
        font-size: 0.9rem;
    }

    .logo-area h1 {
        font-size: 1rem;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.about-box {
    background: #ffcc03;
    color: #000;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

    .about-box h3 {
        margin-top: 0;
        font-size: 1.4rem;
        color:#000;
        text-align:center;
        
    }

    .about-box p{
        color:#1c1c1c;
    }

@media (max-width: 1024px) {


    .contact-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr; /* Tablet → 2 sütun */
    }
}

@media (max-width: 600px) {

    .contact-form,
    .maps {
        max-width: 100%;
        padding: 20px;
    }
    .about-grid {
        grid-template-columns: 1fr; /* Mobil → 1 sütun */
    }

    .cert-item img {
        width: 90%;
        height: auto;
    }
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
    padding-bottom: 150px;
}

.reference-card {
    background: #ffcc03;
    color: #000;
    padding: 20px;
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-radius: 10px;
    transition: all 0.3s;
    text-align: left;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

    .reference-card h3 {
        margin-top: 0;
        margin-bottom: 10px;
        text-align:center;
    }

    .reference-card p {
        margin: 6px 0;
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .reference-card p strong {
        font-weight: 700;
    }

    .reference-card p em {
        font-style: italic;
        color: #333;
    }

    .reference-card:hover {
        background: #000;
        color: #ffcc03;
    }

@media (max-width: 1024px) {
    .references-grid {
        grid-template-columns: 1fr 1fr; /* Tablet */
    }
    .footer ul li {
        padding-right: 10px;
        padding-left: 50px;
    }
}

@media (max-width: 600px) {
    .references-grid {
        grid-template-columns: 1fr; /* Mobil */
    }
    .footer ul li {
        padding-right: 10px;
        padding-left: 50px;
    }
}

.g-recaptcha {
    text-align:center;
}

.maps{
    margin-bottom:10rem;
}

/* Footer genel */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #353535;
    color: white;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    z-index: 100; /* MENÜDEN KÜÇÜK OLSUN */
}


/* Footer yazılar */
.footer-text {
    flex: 1; /* logo ve yazılar arası boşluk */
    text-align: center;
    color : white;
}

    /* Footer içindeki linkler */
    .footer-text a {
        color: white;
        text-decoration: none;
        margin: 0 2px;
        transition: color 0.3s;
    }

        .footer-text a:hover {
            color: #ffcc03;
        }


hr {
    border: none;
    border-top: 1px solid #1c1c1c;
}

.no-scroll {
    overflow: hidden;
}



.certificates {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.cert-header {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

    .cert-header h2 {
        font-size: 3em;
        margin: 0;
    }

.cert-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}


.cert-item {
    position: relative;
    cursor: zoom-in;
}

    .cert-item img {
        width: 300px;
        height: 450px;
        border: solid 1px #ccc;
        border-radius: 5px;
        transition: transform 0.3s;
    }

    /* Hover’daki büyüteç */
    .cert-item::after {
        content: "\1F50D"; /* Unicode büyüteç ikonu */
        position: absolute;
        font-size: 2em;
        color: white;
        background: rgba(0,0,0,0.6);
        border-radius: 50%;
        padding: 10px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .cert-item:hover::after {
        opacity: 1;
    }

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255,255,255,0.3);
}


.modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}


