/* Video arka planı */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
}

/* Genel Stil */
:root {
    --primary-color: #1a237e;
    --secondary-color: #283593;
    --accent-color: #D0AD55;
    --text-light: #ffffff;
    --text-dark: #212121;
    --gray-light: #f5f5f5;
    --gray-dark: #424242;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #e0f7fa;
    color: #333;
    opacity: 0;
    transition: opacity 0.5s;
}

body.loaded {
    opacity: 1;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Top Bar */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgb(0, 0, 0);
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

.top-bar .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    padding: 10px 20px;
}

.contact-info {
    display: flex;
    gap: 20px;
    justify-self: start;
}

.logo-container {
    justify-self: center;
}

.header-logo {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.top-nav {
    justify-self: end;
}

.contact-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #D0AD55;
}

.top-nav ul {
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.top-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover,
.top-nav a:hover {
    color: #D0AD55;
}

.top-nav a.active {
    color: #D0AD55;
    position: relative;
}

.top-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #D0AD55;
}

/* Adjust responsive design */
@media screen and (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .top-nav ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Header */
header {
    color: #fff;
    padding: 20px 0;
    margin-top: 80px; /* Top bar'ın altında kalan içeriği aşağı kaydırır */
}

header h1 {
    margin: 0;
    font-size: 24px;
    color: #fff; /* Başlık rengi belirginleştirildi */
    flex-grow: 1;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

nav {
    margin-left: auto;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff; /* Menü linkleri rengi belirginleştirildi */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease; /* Hover efekti için geçiş eklendi */
}

nav ul li a:hover {
    color: #b2dfdb;
}

/* Hero Section */
.hero {
    background-color: rgba(0, 0, 0, 0.5);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: #fff;
    padding: 120px 0;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: var(--text-light);
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.hero .btn {
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.hero .btn:hover {
    background-color: #e6c200;
}

.btn {
    background: var(--accent-color);
    color: var(--text-light);
    padding: 12px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 64, 129, 0.4);
}

.btn::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
    transform: translate(-50%, -50%);
    left: var(--x);
    top: var(--y);
    pointer-events: none;
}

/* About Section */
.about {
    padding: 60px 0;
    background-color: rgba(0, 0, 0, 0.5); /* Yarı saydam açık mavi */
    text-align: center;
    color: #fff;
}

.about h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
}

.about p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 60px 0;
    background-color: rgba(0, 0, 0, 0.5); /* Yarı saydam açık yeşil */
    text-align: center;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #fff;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 20px;
    justify-content: center;
    margin: 0 auto;
    max-width: 1400px;
    row-gap: 100px; /* Kartlar arası dikey boşluk */
}

.service-item {
    background: white;
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    margin: 0; /* Margin'i kaldırıyoruz çünkü gap kullanıyoruz */
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: #000000;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-color);
    font-weight: 600;
}

.service-item ul {
    list-style-type: disc;
    padding-left: 20px;
    text-align: left;
    flex-grow: 1;
    margin: 0;
    color: #333;
}

.service-item ul li {
    margin-bottom: 12px;
    line-height: 1.5;
    font-size: 15px;
}

/* Küçük ekranlarda hizmetler kutucukları yatay kaydırmalı ve görünür */
@media (max-width: 600px) {
    .service-list {
        display: flex !important;
        flex-direction: row;
        overflow-x: auto;
        gap: 16px;
        padding: 10px 0 20px 0;
        scroll-snap-type: x mandatory;
        /* grid-template-columns ve benzeri grid özellikleri burada olmasın */
        /* display: none; gibi bir satır varsa kaldırın! */
    }
    .service-item {
        min-width: 85vw;
        max-width: 90vw;
        flex: 0 0 auto;
        scroll-snap-align: start;
        margin: 0;
    }
}

/* 600px üstünde eski grid yapısı devam etsin */
@media (min-width: 601px) {
    .service-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
        padding: 20px;
        justify-content: center;
        margin: 0 auto;
        max-width: 1400px;
        row-gap: 100px;
    }
    .service-item {
        min-width: 0;
        max-width: none;
        flex: unset;
        scroll-snap-align: unset;
    }
}

/* Team Section */
.team {
    padding: 60px 0;
    background-color: rgba(0, 0, 0, 0.5); /* Yarı saydam açık mavi */
    text-align: center;
}

.team h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #fff;
}

.team-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.team-item {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(33.333% - 20px);
    box-sizing: border-box;
    text-align: center;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.team-item:hover {
    transform: translateY(-5px);
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: contain; /* cover yerine contain kullanıyoruz */
    border: 4px solid rgba(255, 255, 255, 0.3);
    background-color: #fff; /* Fotoğraf arkası için beyaz arka plan */
    padding: 5px; /* Fotoğraf ile border arası boşluk */
}

.team-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.team-bio {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
    text-align: justify;
    padding: 15px;
    margin-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Reviews Section */
.reviews {
    padding: 60px 0;
    background-color: rgba(0, 0, 0, 0.5); /* Yarı saydam beyaz */
    text-align: center;
    color: #fff;
}

.reviews h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #fff;
}

.review {
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.review h3 {
    margin-top: 0;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #fff;
}

.contact p {
    color: #fff;
    margin-bottom: 30px;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
}

.form-group label {
    color: #fff;
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: #b2dfdb;
    background: rgba(255, 255, 255, 0.2);
}

.contact .btn {
    background-color: #b2dfdb;
    color: rgba(0, 77, 64, 1);
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.contact .btn:hover {
    background-color: #80cbc4;
    transform: translateY(-2px);
}

/* Map Section */
#map {
    padding: 60px 0;
    background-color: rgba(0, 0, 0, 0.5); /* Yarı saydam açık yeşil */
    text-align: center;
}

#map h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #fff;
}

/* Map Styles */
.map-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 oranı */
    height: 0;
    overflow: hidden;
    margin: 20px 0;
    border-radius: 10px;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .map-container {
        padding-bottom: 75%; /* Mobilde daha yüksek oran */
    }
}

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--text-light);
    padding: 40px 0 20px; /* Reduced from 80px to 40px */
    margin-top: 0;
}

.footer-grid {
    background: transparent;
    padding: 20px 0; /* Reduced from 80px to 20px */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px; /* Reduced from 40px */
    margin-bottom: 20px; /* Reduced from 40px */
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 15px; /* Reduced from 25px */
    position: relative;
    color: var(--text-light);
    font-weight: 600;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    background: var(--accent-color);
    height: 3px;
    width: 40px;
}

.footer-section p, .footer-section li {
    color: #ccc;
    font-size: 18px; /* Increased from 16px */
    line-height: 1.5;  /* Reduced from 2 to 1.5 */
    margin-bottom: 5px; /* Reduced from 10px to 5px */
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 5px; /* Reduced from 8px to 5px */
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    color: var(--gray-light);
    transition: all 0.3s ease;
    font-size: 16px; /* Added to match paragraph size */
    display: inline-flex;   /* Changed to inline-flex */
    align-items: center;    /* Vertically center icon with text */
    gap: 5px;              /* Space between icon and text */
}

.footer-section ul li a:hover {
    color: #fff;
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-section ul li i {
    display: inline-block;
    width: 20px;            /* Fixed width for icons */
    margin-right: 5px;      /* Space between icon and text */
    text-align: center;     /* Center the icon in its fixed width */
}

.work-hours {
    display: grid;
    grid-template-columns: auto auto;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 14px;
}

.social-media-footer {
    margin-top: 10px; /* Reduced from 20px */
}

.social-media-footer a {
    color: #ccc;
    margin-right: 15px;
    font-size: 20px; /* Increased from 18px */
    transition: color 0.3s;
}

.social-media-footer a:hover {
    color: #fff;
}

footer p {
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

/* WhatsApp Butonu */
a.whatsapp-button {
    background-color: #25D366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px; /* İkon ile yazı arasındaki boşluk */
    font-weight: bold;
    transition: opacity 0.3s;
}

a.whatsapp-button:hover {
    opacity: 0.8;
}

/* Mobil Menü */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2001;
    width: 40px;
    height: 40px;
    padding: 10px;
}
.hamburger, .hamburger::before, .hamburger::after {
    display: block;
    background: #fff;
    height: 4px;
    width: 30px;
    border-radius: 2px;
    position: absolute;
    left: 5px;
    transition: all 0.3s;
}
.hamburger { top: 18px; }
.hamburger::before { content: ''; top: -10px; }
.hamburger::after { content: ''; top: 10px; }
.mobile-menu-btn.active .hamburger { background: transparent; }
.mobile-menu-btn.active .hamburger::before { transform: rotate(45deg) translate(5px,5px); }
.mobile-menu-btn.active .hamburger::after { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobil Menü Açıkken */
@media (max-width: 900px) {
    .mobile-menu-btn {
        display: block;
    }
    .top-nav {
        position: fixed;
        top: 0;
        right: -100vw;
        width: 70vw;
        height: 100vh;
        background: #111 !important;
        z-index: 2000;
        transition: right 0.3s;
        display: flex;
        align-items: center;
    }
    .top-nav.active {
        right: 0;
        background: #111 !important;
    }
    .nav-links {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
        padding-left: 30px;
        gap: 30px;
    }
    .nav-links li {
        margin: 0;
    }
    .nav-links a,
    .nav-links li a {
        font-size: 22px;
        color: #fff !important;
        background: transparent !important;
        padding: 10px 0;
        display: block;
        width: 100%;
    }
    .nav-links a:hover,
    .nav-links li a:hover {
        color: #D0AD55 !important;
        background: transparent !important;
    }
    .contact-info {
        display: none;
    }
    .logo-container {
        margin: 0 auto;
    }
    .container {
        flex-direction: row;
        align-items: center;
    }
}

/* Genel Responsive */
@media (max-width: 600px) {
    .container {
        width: 98%;
        padding: 0 5px;
    }
    .hero h2 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .service-list {
        grid-template-columns: 1fr;
    }
    .team-list {
        flex-direction: column;
    }
}

/* Mobil Uyumluluk */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Top bar düzenlemesi */
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 10px;
    }

    .social-media {
        margin-top: 10px;
        justify-content: center;
    }

    /* Navigation düzenlemesi */
    nav ul {
        flex-direction: column;
        gap: 15px;
    }

    /* Hero section düzenlemesi */
    .hero {
        padding: 40px 0;
    }

    #heroTitle {
        font-size: 24px;
    }

    /* Footer düzenlemesi */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        text-align: center;
    }

    .work-hours {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .top-nav,
    .top-nav.active {
        background: #111 !important;
    }
    .nav-links a,
    .nav-links li a {
        color: #fff !important;
        background: transparent !important;
    }
    .nav-links a:hover,
    .nav-links li a:hover {
        color: #D0AD55 !important;
        background: transparent !important;
    }
}

/* Küçük mobil cihazlar için ek düzenlemeler */
@media screen and (max-width: 480px) {
    #siteTitle {
        font-size: 20px;
    }

    .video-background {
        height: 100vh;
        object-fit: cover;
    }
}

/* Contact Info Box */
.contact-info-box {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.contact-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
    margin: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contact-item i {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.contact-item h3 {
    margin-bottom: 1rem;
    color: #333;
}

.contact-item p {
    color: #666;
}

.contact-item a {
    color: #666;
    text-decoration: none;
}

.contact-item a:hover {
    color: #000;
}

.lang-btn {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.header-logo {
    max-height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: #ffffff; /* Rengi beyaz yaptık */
    width: 0%;
    z-index: 9999;
    transition: width 0.2s ease-out;
}

/* Fade-in Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar Scroll Effect */
.navbar {
    transition: all 0.3s ease;
}

.navbar-scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); /* Hafif bir gölge ekledik */
}

/* Page Load Animation */
body {
    opacity: 0;
    transition: opacity 0.5s;
    background-color: #ffffff; /* Arka plan rengi */
}

body.loaded {
    opacity: 1;
    background-color: #ffffff; /* Arka plan rengi */    
}

/* Button Hover Effect */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
    transform: translate(-50%, -50%);
    left: var(--x);
    top: var(--y);
    pointer-events: none;
}

/* Mobil menü düğmesi */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}
.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    position: relative;
    transition: all 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s;
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

/* Mobil Menü Stilleri */
.mobile-menu-btn {
    display: none;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2000;
    background: transparent;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 30px;
    height: 3px;
    background: #fff;
    position: absolute;
    transition: all 0.3s;
}

.hamburger::before {
    content: '';
    top: -8px;
}

.hamburger::after {
    content: '';
    top: 8px;
}

.mobile-menu-btn.active .hamburger {
    background: transparent;
}

.mobile-menu-btn.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-btn.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

@media screen and (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .top-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        padding: 80px 20px;
        transition: all 0.3s ease;
        z-index: 1500;
    }

    .top-nav.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .nav-links a {
        color: white;
        font-size: 18px;
        padding: 10px 20px;
        display: block;
    }

    .top-nav,
    .top-nav.active {
        background: #111 !important;
    }
    .nav-links a,
    .nav-links li a {
        color: #fff !important;
        background: transparent !important;
    }
    .nav-links a:hover,
    .nav-links li a:hover {
        color: #D0AD55 !important;
        background: transparent !important;
    }
}

/* Overlay stil */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1400;
}

.menu-overlay.active {
    display: block;
}

/* Responsive medya sorguları */
@media screen and (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        z-index: 1000;
    }

    .top-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.9);
        transition: 0.3s;
    }

    .top-nav.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        padding: 80px 20px;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .contact-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-info a {
        margin: 5px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .top-nav,
    .top-nav.active {
        background: #111 !important;
    }
    .nav-links a,
    .nav-links li a {
        color: #fff !important;
        background: transparent !important;
    }
    .nav-links a:hover,
    .nav-links li a:hover {
        color: #D0AD55 !important;
        background: transparent !important;
    }
}

@media screen and (max-width: 480px) {
    .hero h2 {
        font-size: 24px;
    }

    .hero p {
        font-size: 16px;
    }
}

/* Mobil Uyumluluk için Medya Sorguları */
@media screen and (max-width: 768px) {
    .container {
        width: 95%;
        padding: 10px;
    }

    /* Top bar düzenlemeleri */
    .top-bar .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-info {
        display: none; /* Mobilde gizle */
    }

    .logo-container {
        justify-self: center;
    }

    .header-logo {
        height: 45px;
    }

    /* Mobil menü düzenlemeleri */
    .top-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        transition: 0.3s;
        z-index: 1000;
    }

    .top-nav.active {
        left: 0;
    }

    .top-nav ul {
        flex-direction: column;
        padding: 80px 20px;
    }

    .top-nav ul li {
        margin: 15px 0;
    }

    .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
    }

    /* Hero section düzenlemeleri */
    .hero {
        padding: 60px 0;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 15px;
    }

    /* Footer düzenlemeleri */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        padding: 0 15px;
    }

    .work-hours {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .top-nav,
    .top-nav.active {
        background: #111 !important;
    }
    .nav-links a,
    .nav-links li a {
        color: #fff !important;
        background: transparent !important;
    }
    .nav-links a:hover,
    .nav-links li a:hover {
        color: #D0AD55 !important;
        background: transparent !important;
    }
}

/* Küçük mobil cihazlar için ek düzenlemeler */
@media screen and (max-width: 480px) {
    .hero h2 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .contact-item {
        flex: 1 1 100%;
    }
}

/* Tablet boyutu için düzenlemeler */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .container {
        width: 90%;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobil Menü Düzenlemeleri */
@media screen and (max-width: 768px) {
    .service-list {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 10px;
    }

    .service-item {
        width: 100%;
        margin: 0;
    }

    .top-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        transition: 0.3s;
        z-index: 2000;
    }

    .top-nav.active {
        right: 0;
    }

    .mobile-menu-btn {
        display: block;
        position: fixed;
        right: 20px;
        top: 20px;
        z-index: 2001;
    }

    .close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        color: white;
        font-size: 24px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 2002;
    }

    .nav-links {
        padding-top: 60px;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .nav-links a {
        color: white;
        font-size: 18px;
        padding: 10px 20px;
        display: block;
    }

    .top-nav,
    .top-nav.active {
        background: #111 !important;
    }
    .nav-links a,
    .nav-links li a {
        color: #fff !important;
        background: transparent !important;
    }
    .nav-links a:hover,
    .nav-links li a:hover {
        color: #D0AD55 !important;
        background: transparent !important;
    }
}

/* Responsive düzenlemeler */
@media (max-width: 1024px) {
    .container {
        max-width: 95%;
        padding: 0 10px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 8px;
    }
    .top-bar .container,
    header .container {
        flex-direction: column;
        align-items: flex-start;
    }
    .logo-container {
        margin: 0 auto 16px auto;
        text-align: center;
    }
    .header-logo {
        max-width: 160px;
        height: auto;
    }
    .contact-info {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 12px;
    }
    .top-nav {
        width: 100%;
    }
    .nav-links {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
        gap: 0;
    }
    .nav-links li {
        width: 100%;
        margin: 0;
    }
    .nav-links li a {
        display: block;
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }
    .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 16px;
        top: 16px;
        z-index: 1001;
    }
    .top-nav {
        display: none;
    }
    .top-nav.active {
        display: block;
        background: #fff;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        z-index: 1000;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer-section {
        margin-bottom: 16px;
    }
    .video-background {
        object-fit: cover;
        width: 100vw;
        height: 220px;
        min-height: unset;
    }
    .hero {
        padding: 32px 0 24px 0;
    }
    .hero h2 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .btn {
        font-size: 1rem;
        padding: 10px 24px;
    }
    .work-hours span {
        display: inline-block;
        min-width: 80px;
    }
}

/* Hamburger menü için temel stiller */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}
.hamburger {
    width: 28px;
    height: 3px;
    background: #222;
    display: block;
    position: relative;
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 28px;
    height: 3px;
    background: #222;
    transition: 0.3s;
}
.hamburger::before {
    top: -8px;
}
.hamburger::after {
    top: 8px;
}
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
}

/* Mobil Cihazlar için Düzenlemeler */
@media (max-width: 768px) {
    .top-bar .container {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .top-nav ul {
      flex-direction: column;
      align-items: center;
      gap: 10px;
      display: none;
    }
  
    .top-nav ul.show {
      display: flex;
    }
  
    .contact-info {
      flex-direction: column;
      gap: 10px;
      align-items: center;
    }
  
    .header-logo {
      height: 40px;
    }
  
    .container {
      padding: 10px;
    }
  
    h2 {
      font-size: 24px;
    }
  
    .mobile-menu-btn {
      display: block;
      background: none;
      border: none;
      cursor: pointer;
    }
  
    .hamburger {
      width: 25px;
      height: 3px;
      background-color: white;
      margin: 5px 0;
      display: block;
    }

    .top-nav,
    .top-nav.active {
        background: #111 !important;
    }
    .nav-links a,
    .nav-links li a {
        color: #fff !important;
        background: transparent !important;
    }
    .nav-links a:hover,
    .nav-links li a:hover {
        color: #D0AD55 !important;
        background: transparent !important;
    }
}

