body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #181818;
    background-color: #f7f6f3;
}

header {
    background: #181818;
    color: #ff7a00;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

nav {
    margin: 20px 0;
}

nav a {
    color: #ff7a00;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
    color: #181818;
    background: #ff7a00;
    border-radius: 4px;
    padding: 2px 8px;
}

main {
    padding: 0;
}

section {
    margin-bottom: 40px;
}

footer {
    background: #181818;
    color: #ff7a00;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 0;
}

.button {
    background-color: #ff7a00;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s;
}

.button:hover {
    background-color: #181818;
    color: #ff7a00;
    border: 1px solid #ff7a00;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw; /* Değiştirildi */
    height: 70px;
    background: #181818;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 24px; /* Daha az padding */
    padding-right: 24px;
    margin: 0;
    z-index: 10;
    box-sizing: border-box; /* Eklendi */
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-logo img {
    height: 40px;
    width: 40px;
    object-fit: contain;
    transition: transform 0.2s;
}

.navbar-logo img:hover {
    transform: scale(1.1);
}

.navbar-logo span {
    color: #181818;
    background: linear-gradient(90deg, #ff7a00 60%, #181818 100%);
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 2px 10px;
    border-radius: 6px;
}

.navbar-links {
    list-style: none;
    display: flex;
    gap: 14px; /* Önceki değerden daha küçük */
    margin: 0;
    padding: 0;
}

.navbar-links li a {
    color: #ff7a00;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: transform 0.2s, color 0.2s, background 0.2s;
    padding: 4px 10px;
    border-radius: 4px;
}

.navbar-links li a:hover {
    color: #181818;
    background: #ff7a00;
    transform: scale(1.1);
}

/* Hero Image Styles */
.hero-image {
    margin-top: 0;
    width: 100vw;
    height: 100vh;
    background: url('/imgs/bg-photo.png') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-align: center;
    color: #ff7a00;
    position: relative;
    z-index: 1;
    padding: 0 32px;
    text-shadow: 0 4px 24px rgba(24,24,24,0.4), 0 1px 0 #fff;
    background: none;
    filter: none;
    transition: text-shadow 0.3s;
}

.hero-title::before,
.hero-title::after {
    display: none;
}

.about-section {
    max-width: 700px;
    margin: 40px auto 60px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 32px 28px;
    text-align: center;
}

.about-section h2 {
    color: #004080;
    margin-bottom: 18px;
    font-size: 2rem;
    font-weight: 700;
}

.about-section p {
    color: #333;
    font-size: 1.15rem;
    line-height: 1.6;
}

.about-section.full-width {
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    background: #fff;
    padding: 48px 0;
    text-align: center;
}

.about-section.full-width h2 {
    color: #ff7a00;
    margin-bottom: 18px;
    font-size: 2rem;
    font-weight: 700;
}

.about-section.full-width p {
    color: #181818;
    font-size: 1.15rem;
    line-height: 1.7;
    margin: 24px auto 0 auto;
    max-width: 900px;
    padding: 0 24px;
}

/* İlk paragrafın üstünde boşluk olmasın */
.about-section.full-width p:first-child {
    margin-top: 0;
}

.contact-section {
    width: 100vw;
    background: #f8f9fa;
    padding: 48px 0 64px 0;
    text-align: center;
}

.contact-section h2 {
    color: #004080;
    margin-bottom: 24px;
    font-size: 2rem;
    font-weight: 700;
}

.contact-section.full-width {
    width: 100vw;
    max-width: 100vw;
    background: #fff7f0;
    padding: 48px 0 64px 0;
    display: flex;
    justify-content: center;
}

.contact-box {
    display: flex;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(24,24,24,0.07);
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
}

.contact-info {
    flex: 1 1 320px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 260px;
}

.contact-info h2 {
    color: #ff7a00;
    margin-bottom: 18px;
    font-size: 1.5rem;
    font-weight: 700;
}

.contact-info p {
    color: #181818;
    font-size: 1.08rem;
    margin-bottom: 12px;
}

.contact-divider {
    width: 2px;
    background: #ffe0c2;
    margin: 32px 0;
}

.contact-form {
    flex: 1 1 320px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 260px;
}

.contact-form h2 {
    color: #ff7a00;
    margin-bottom: 18px;
    font-size: 1.5rem;
    font-weight: 700;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.contact-form label {
    font-weight: 600;
    color: #ff7a00;
    font-size: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ffe0c2;
    border-radius: 6px;
    font-size: 1rem;
    background: #fff7f0;
    resize: vertical;
    transition: border-color 0.2s;
    color: #181818;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ff7a00;
    outline: none;
}

.contact-form .button {
    margin-top: 10px;
    width: 100%;
    font-size: 1.1rem;
    background: #ff7a00;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.2s, color 0.2s;
}

.contact-form .button:hover {
    background: #181818;
    color: #ff7a00;
    border: 1px solid #ff7a00;
}

/* Hizmetler bölümü için */
.services-section.full-width {
    width: 100vw;
    max-width: 100vw;
    background: #fff7f0;
    padding: 48px 0;
    text-align: center;
}

.services-section h2 {
    color: #ff7a00;
    margin-bottom: 32px;
    font-size: 2rem;
    font-weight: 700;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(24,24,24,0.07);
    padding: 28px 24px;
    min-width: 240px;
    max-width: 300px;
    flex: 1 1 240px;
    text-align: left;
    border-left: 5px solid #ff7a00;
}

.service-item h3 {
    color: #ff7a00;
    margin-bottom: 12px;
    font-size: 1.15rem;
    font-weight: 700;
}

.service-item p {
    color: #181818;
    font-size: 1rem;
    line-height: 1.5;
}

/* WhatsApp Floating Button */
.whatsapp-fab {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 56px;
    height: 56px;
    background: #ff7a00;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(24,24,24,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    transition: box-shadow 0.2s, background 0.2s;
}
.whatsapp-fab img {
    width: 32px;
    height: 32px;
    filter: grayscale(1) brightness(0) invert(1);
}
.whatsapp-fab:hover {
    box-shadow: 0 6px 24px rgba(24,24,24,0.28);
    background: #181818;
}

.whatsapp-popup {
    position: fixed;
    right: 28px;
    bottom: 92px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(24,24,24,0.18);
    padding: 12px 0;
    display: none;
    flex-direction: column;
    gap: 8px;
    z-index: 1002;
    min-width: 160px;
    align-items: stretch;
    animation: fadeInWhatsapp 0.2s;
}
.whatsapp-popup.active {
    display: flex;
}
.whatsapp-popup button {
    background: #ff7a00;
    color: #fff;
    border: none;
    border-radius: 8px;
    margin: 0 12px;
    padding: 10px 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
}
.whatsapp-popup button:hover {
    background: #181818;
    color: #ff7a00;
}
@keyframes fadeInWhatsapp {
    from { opacity: 0; transform: translateY(20px);}
    to { opacity: 1; transform: translateY(0);}
}

/* Responsive */
@media (max-width: 900px) {
    .contact-box {
        flex-direction: column;
        border-radius: 12px;
    }
    .contact-divider {
        width: 100%;
        height: 2px;
        margin: 32px 0;
    }
    .contact-info,
    .contact-form {
        max-width: 100%;
        width: 100%;
    }
}