* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.navbar-main {
    position: sticky;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, #000000, #1e1e5f);
    z-index: 999;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 1.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}


.logotextmain {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-title {
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #f1f1f1;
}

.logo-secondtitle {
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #bebebe;
}

.menu-wrapper {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.menuEl a {
    text-decoration: none;
    color: #e5e5e5;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.menuEl a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #ffcc00;
    transition: width 0.3s ease;
}

.menuEl a:hover {
    color: #ffcc00;
}

.menuEl a:hover::after {
    width: 100%;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    opacity: 0;
    pointer-events: none;
    transition: .3s ease;
    z-index: 998;
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: .3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
}

@media (min-width: 2560px) {
    .container {
        max-width: 2000px;
    }
}

@media (max-width: 768px) {
    .logotextmain {
        display: flex;
        flex-direction: column;
        line-height: 1.7;
    }

    .logo-title {
        font-size: 12px;
        font-weight: 700;
    }

    .logo-secondtitle {
        font-size: 9px;
        font-weight: 400;
    }

    .menu-footer-li {
        list-style: none;
        margin-top: auto;
    }

    .hamburger {
        display: flex;
    }

    .menu-wrapper {
        position: fixed;
        top: 0;
        right: 0;
        width: 220px;
        height: 100vh;
        background: linear-gradient(180deg, #0f0f2f, #1e1e5f);
        flex-direction: column;
        padding: 5rem 1.5rem;
        gap: 1rem;
        transform: translateX(100%);
        transition: transform .35s ease;
        z-index: 1000;
    }

    .menu-wrapper.active {
        transform: translateX(0);
    }

    .menuEl {
        background: transparent;
        border: none;
        border-radius: 10px;
    }

    .menuEl a {
        display: block;
        padding: 14px 16px;
        font-size: 1rem;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.05);
        transition: background .25s ease, transform .2s ease;
    }

    .menuEl a:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateX(6px);
    }

    .menu-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-top: auto;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .menu-footer img {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: 50%;
    }

    .menu-footer .social-icons {
        display: flex;
        gap: 20px;
    }

    .menu-footer .social-icons a {
        color: #fff;
        font-size: 1.5rem;
        transition: color 0.3s ease, transform 0.2s ease;
    }

    .menu-footer .social-icons a:hover {
        color: #ffcc00;
        transform: scale(1.2);
    }
}

.hero {
    background: #eeeeee;
}

.services {
    background: #ffffff;
}

.cta {
    background: #eeeeee;
}

.hero,
.services,
.cta {
    padding: 120px 20px;
}

.hero {
    display: flex;
    justify-content: center;
}

.content-touch {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    gap: 32px;
}

.content-touch h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.2;
    color: #2a2929;
}

.content-touch p {
    max-width: 650px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 12px;
    background: #2563eb;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    transition: all .3s ease;
}

.contact-button:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

.services-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.services-title {
    text-align: center;
    max-width: 700px;
}

.services-title h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin-bottom: 12px;
}

.services-title p {
    font-size: 1.1rem;
    color: #555;
}

.service-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
}

.service-card {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    background: #fff;
    transition: all .3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.icon-box {
    width: 48px;
    height: 48px;
    background: #e0edff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.icon-box i {
    font-size: 20px;
    color: #2563eb;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 992px) {
    .service-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .service-row {
        grid-template-columns: 1fr;
    }
}

.cta {
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    text-align: center;
}

.cta-wrapper h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
}

.cta-wrapper p {
    max-width: 600px;
    margin: auto;
    font-size: 1.1rem;
    color: #555;
}

@media (max-width: 576px) {
    .cta {
        padding: 80px 20px;
    }

    .cta-wrapper h2 {
        font-size: 1.6rem;
    }

    .cta-wrapper p {
        font-size: 1rem;
    }
}

.site-footer {
    background: linear-gradient(135deg, #000000, #1e1e5f);
    color: #cbd5f5;
    padding: 80px 20px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.footer-text {
    color: #94a3b8;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cbd5f5;
    text-decoration: none;
}

.footer-links a:hover {
    color: #60a5fa;
}

.footer-mail {
    color: #60a5fa;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    margin-top: 50px;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #94a3b8;
}

.footer-made-by a {
    color: #ffffff;
    text-decoration: none;
}

.footer-made-by a strong {
    font-weight: 600;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.whatsapp-btn {
    display: flex;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 14px 18px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    /* ikon ile yazı arası boşluk */
    font-size: 16px;
}

.whatsapp-btn:hover {
    background-color: #1ebe57;
    transform: scale(1.1);
}