* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    scroll-behavior: smooth;
}

body {
    background: #f5f5f5;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #0b1c2d;
    z-index: 9999;
}


.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.logo img {
    max-height: 70px;
}

/* NAV */
nav {
    display: flex;
    align-items: center;
}

nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
}

.btn-vip {
    
    padding: 8px 14px;
    border-radius: 5px;
    border: 2px solid crimson;
    color: #fff;
    font-weight: 400;
}

.btn {
    background: #ff7a00;
    padding: 8px 14px;
    border-radius: 5px;
    color: #fff;
}

/* HERO */
.hero {
    margin-top: 70px;
    position: relative;
    background: url('../img/hero-bg.jpg') center/cover no-repeat;
    min-height: 70vh;
}

.hero a{
    margin-top: 20px;
    display: inline-block;
    text-decoration: none;
    background: #04863a;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0;
    color: #fff;
}

/* TRUST BAR */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 35px;
}

.trust-item {
    background: rgba(29, 27, 27, 0);
    color: #070606;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    backdrop-filter: blur(6px);
}

/* ABOUT */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.trust-item {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
    transition: transform .3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-item .icon {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
}

.trust-item h4 {
    margin-bottom: 8px;
    font-size: 18px;
    color: #0b1c2d;
}

.trust-item p {
    font-size: 15px;
    color: #555;
}

.about {
    padding: 100px 0;
    background: #f5f5f5;
}

.about-box {
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    border: 2px solid #e5e5e5;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.about-box h2 {
    margin-bottom: 25px;
    font-size: 32px;
    color: #0b1c2d;
    text-align: center;
}

.about-box p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
    text-align: center;
}

.about-cta {
    margin-top: 35px;
    text-align: center;
}

.about-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #0b1c2d;
    border: 2px solid #0b1c2d;
    border-radius: 50px;
    text-decoration: none;
    transition: all .3s ease;
    background: transparent;
}

.about-btn:hover {
    background: #0b1c2d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,.2);
}




/* SERVICES */
.services {
    padding: 80px 0;
    background: #fff;
}


.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.service-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    transition: transform .3s ease, box-shadow .3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,.2);
}

.service-icon {
    font-size: 46px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* RENK TEMALARI */
.service-blue {
    border-top: 5px solid #1e90ff;
}

.service-orange {
    border-top: 5px solid #ff7a00;
}

.service-green {
    border-top: 5px solid #2ecc71;
}

.service-red {
    border-top: 5px solid #e74c3c;
}

/* FOOTER */
.footer {
    background: #0b1c2d;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
    transition: .3s;
}

/* MOBILE MENU */
@media (max-width: 768px) {

    nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0b1c2d;
        display: none;
        flex-direction: column;
        text-align: center;
        padding: 25px 0;
        z-index: 99999;
    }

    nav.show {
        display: flex;
    }

    nav a {
        margin: 15px 0;
        font-size: 18px;
    }

    .menu-toggle {
        display: flex;
        z-index: 100000;
    }

     .about-box {
        padding: 30px 20px;
    }

    .about-box h2 {
        font-size: 26px;
    }

    .about-box p {
        font-size: 16px;
    }
    .about-btn {
        width: 100%;
        max-width: 280px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-whatsapp {
        width: 100%;
        max-width: 260px;
    }

     .whatsapp-float {
        bottom: 80px;
    }

     
}

/* GALLERY */
.gallery {
    padding: 80px 0;
    background: #f5f5f5;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    aspect-ratio: 1 / 1; /* ðŸ”¥ kare gÃ¶rÃ¼nÃ¼m */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

/* Desktop hover */
.gallery-item:hover img {
    transform: scale(1.08);
}

/* Mobil tap efekti */
.gallery-item:active img {
    transform: scale(1.03);
}

.image-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100000;
}

.image-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

#closeModal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/* Service Card Animation */

.service-card {
    cursor: pointer;
    position: relative;
}

.service-card::after {
    content: "WhatsApptan yaz";
    position: absolute;
    bottom: 18px;
    right: 20px;
    font-size: 13px;
    color: #25d366;
    opacity: 0;
    transition: .3s;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card,
.gallery-img {
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    user-select: none;
}

/*Contact*/
    .contact {
    padding: 90px 0;
    background: #f5f5f5;
}

.contact .container {
    max-width: 900px;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    border: 1px solid #eee;
}

.contact h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.contact p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}
.contact-info {
    margin-top: 30px;
}
.contact-info a {
    display: block;
    color: #0b1c2d;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 16px;
    transition: color .3s;
}
.contact-info a:hover {
    color: #ec8b05;
}
.contact .btn-whatsapp {
    margin-top: 30px;
    font-size: 18px;
    padding: 14px 32px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}


/* =========================
   REVIEWS / YORUMLAR
========================= */

.reviews {
    padding: 90px 0;
    background: #ffffff;
}

.reviews h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 45px;
    color: #0b1c2d;
}

/* Yorum kartları */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.review-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.review-text {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
}

.review-author {
    font-size: 15px;
    font-weight: bold;
    color: #0b1c2d;
}

/* =========================
   REVIEWS FORM – GARANTİ
========================= */

.reviews {
    padding: 80px 0;
    background: #fff;
}

.review-box {
    max-width: 600px;
    margin: 50px auto 0;
    background: #f9f9f9;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.review-form input,
.review-form textarea,
.review-form select,
.review-form button {
    display: block;
    width: 100%;
    margin-bottom: 18px;
    padding: 14px 16px;
    font-size: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-family: inherit;
}

.review-form textarea {
    min-height: 120px;
    resize: vertical;
}

.review-form select {
    background: #fff;
    cursor: pointer;
}

.review-form button {
    background: #ff7a00;
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.review-form button:hover {
    background: #e86f00;
    transform: translateY(-1px);
}
/* MOBİL */
@media (max-width: 768px) {
    .review-box {
        padding: 30px 20px;
    }
}





/*Footer*/

.footer {
    background: #0b1c2d;
    color: #cfd8dc;
    padding: 60px 0 0;
    font-size: 15px;
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        to right,
        #ff7a00,
        #ffa14d,
        #ff7a00
    );
}


.footer-container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-col p {
    line-height: 1.6;
}

.footer-col a{
    color: #cfd8dc;
    text-decoration: none;
    transition: color .3s;
}
.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #cfd8dc;
    text-decoration: none;
    transition: color .3s;
}

.footer-col ul li a:hover {
    color: #ff7a00;
}

/* WhatsApp Footer Button */
.footer-whatsapp {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #25d366;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: transform .3s, box-shadow .3s;
}

.footer-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,.4);
}

/* Alt bant */
.footer-bottom {
    margin-top: 40px;
    padding: 15px 0;
    text-align: center;
    background: #081420;
    font-size: 14px;
    color: #9ea7ad;
}




/* X ANIMATION */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px,5px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px,-6px);
}


