/* Genel Sıfırlama ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #1e90ff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-menu a:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #32cd32;
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: #333;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: #1e90ff;
    text-decoration: none;
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.3s;
}

.dropdown-toggle:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #32cd32;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    min-width: 200px;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.2rem;
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #8e44ad; /* Temizlik hizmetleri için mor vurgu */
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {

    .hero-video {
        object-fit: cover;
    }
}

@media (min-width: 769px) {
    .hero-video {
        object-fit: cover;
    }
}

.hero-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e55a2b, #d14920);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #32cd32;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: white;
    color: #1e90ff;
    border-color: white;
    transform: translateY(-3px);
}

/* Main Content - Home Page */
.main-content {
    display: block;
}

.main-content.hidden {
    display: none;
}

/* Services Overview */
.services-overview {
    padding: 6rem 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1e90ff;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #e9ecef;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #32cd32; /* İlaçlama için yeşil */
    display: block;
}

.service-card:nth-child(2) .service-icon {
    color: #8e44ad; /* Temizlik kartı için mor */
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: #1e90ff;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    text-align: left;
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 700;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.features-list {
    list-style: none;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.features-list i {
    color: #32cd32;
    font-size: 1.2rem;
    width: 20px;
}

.about-image {
    width: 100%;
    height: auto;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: white;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
}

.faq-question {
    color: #32cd32;
    width: 100%;
    background: white;
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.faq-question:hover {
    color: white;
    background: #1e90ff;
}

.faq-answer {
    color: #1e90ff;
    display: none;
    padding: 1.5rem;
    background: white;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-item.active .faq-answer {
    display: block;
}

/* Services Detail Page */
.services-detail {
    display: none;
    padding: 6rem 0;
    background: white;
    min-height: 100vh;
}

.services-detail.active {
    display: block;
}

.services-detail.cleaning-services {
    background: #f9f4ff; /* Temizlik hizmetleri için hafif mor arka plan */
}

.back-btn {
    margin-top: 3rem;
    margin-bottom: 5rem;
    color: #1e90ff;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.back-btn:hover {
    color: #32cd32;
    transform: translateX(-5px);
}

.service-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.area-category {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 5px solid #cccccc;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.services-detail.cleaning-services .area-category {
    border-left: 5px solid #8e44ad; /* Temizlik için mor vurgu */
}

.area-category h3 {
    color: #1e90ff;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.area-category > p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.area-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.area-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
    transition: all 0.3s;
}

.area-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.area-item-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.area-item i {
    color: #32cd32; /* İlaçlama için yeşil */
    font-size: 1.3rem;
    width: 25px;
}

.services-detail.cleaning-services .area-item i,
.services-detail.cleaning-services .area-item strong {
    color: #8e44ad; /* Temizlik için mor */
}

.area-item strong {
    color: #32cd32;
    font-size: 1.1rem;
}

.area-item p {
    color: #666;
    margin-left: 2.3rem;
    line-height: 1.6;
}

/* Contact Section */
.contact-map {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #333;
}

.contact-map-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-info {
    order: -1;
}

.contact-items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-info h3 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #32cd32;
    width: 30px;
    margin-top: 0.2rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item a {
    color: #666;
    text-decoration: none;
}

.contact-item a:hover {
    color: #1e90ff;
}

.map-container {
    width: 100%;
    text-align: center;
}

.map-embed {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.map-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: #1e90ff;
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.map-link:hover {
    background: #32cd32;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Footer */
.footer-copyright-a {
    text-decoration: none;
    color: inherit;
}

.footer {
    background: linear-gradient(135deg, #31363a, #3a3a3a);
    padding: 4rem 0 2rem;
}

.footer-logo {
    align-items: center;
    text-align: center;
    margin-bottom: 5rem;
}

.footer-logo .logo {
    font-size: 2.2rem;
    color: #333;
}

.footer-content {
    display: flex;
    justify-content: center;
    gap: 20rem;
    margin-bottom: 5rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: #1e90ff;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-section a {
    color: #32cd32;
    text-decoration: none;
    display: block;
    margin-bottom: 0.7rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #1e90ff;
}

.footer-bottom {
    border-top: 1px solid #cccccc;
    padding-top: 2rem;
    text-align: center;
    color: #666;
}

.footer-bottom p {
    color: white;
    margin-bottom: 1rem;
}

.footer-copyright {
    text-align: center;
    font-size: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.furkatech-logo {
    height: 30px;
}

.footer-copyright .furkatech {
    color: #fff;
    font-weight: 700;
}

.footer-copyright .tecnology {
    color: #00fefb;
    font-weight: 700;
}

/* Fixed Buttons */
.fixed-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.fixed-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn {
    background: #25d366;
}

.whatsapp-btn:hover {
    background: #20b954;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.search-btn {
    background: #ff6b35;
}

.search-btn:hover {
    background: #e55a2b;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Search Modal */
.search-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.search-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.search-content h3 {
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 1.5rem;
}

.search-input {
    width: 100%;
    padding: 15px;
    font-size: 1.2rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: #cccccc;
    box-shadow: 0 0 0 3px rgba(204, 204, 204, 0.1);
}

.close-search {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
}

.close-search:hover {
    color: #333;
}

.search-results {
    max-height: 250px;
    overflow-y: auto;
}

.search-result-item {
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.3s;
}

.search-result-item:hover {
    background: #f8f9fa;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item strong {
    color: #333;
    display: block;
    margin-bottom: 0.3rem;
}

.search-result-item small {
    color: #666;
    line-height: 1.4;
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.modal-content {
    margin: auto;
    display: block;
    width: 30%;
    max-width: 700px;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.close-image {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close-image:hover,
.close-image:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 0;
    }

    .nav-container {
        padding: 0 1rem;
        position: relative;
    }

    .logo img {
        height: 50px;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(248, 249, 250, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 100px 2rem 2rem 2rem;
        box-shadow: none;
        z-index: 999;
        transition: all 0.3s ease-in-out;
        transform: translateY(-100%);
        opacity: 0;
        overflow-y: auto;
    }

    .nav-menu.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }

    .nav-menu li {
        width: 100%;
        margin-bottom: 1rem;
        text-align: center;
    }

    .nav-menu > li > a {
        font-size: 1.4rem;
        padding: 1.2rem 2rem;
        width: 100%;
        display: block;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.8);
        margin: 0.5rem 0;
        border: 2px solid transparent;
        transition: all 0.3s ease;
    }

    .nav-menu > li > a:hover {
        background: #1e90ff;
        color: white;
        border-color: #1e90ff;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(30, 144, 255, 0.3);
    }

    /* Dropdown Düzeltmeleri */
    .dropdown {
        width: 100%;
        position: static;
    }

    .dropdown-toggle {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.8rem;
        padding: 1.2rem 2rem;
        font-size: 1.4rem;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.8);
        border: 2px solid transparent;
        transition: all 0.3s ease;
    }

    .dropdown-toggle:hover {
        background: #8e44ad;
        color: white;
        border-color: #8e44ad;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(142, 68, 173, 0.3);
    }

    .dropdown-menu {
        display: none;
        position: static;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.1);
        border-radius: 15px;
        margin-top: 0.5rem;
        padding: 0.5rem 0;
        border: 2px solid #e9ecef;
    }

    .dropdown:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
        display: block;
    }

    /* Mobilde dropdown'ı tıklanabilir yapmak için */
    .dropdown.mobile-active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li {
        width: 100%;
        margin-bottom: 0;
    }

    .dropdown-menu a {
        display: block;
        width: 100%;
        padding: 1rem 1.5rem;
        color: #333;
        text-decoration: none;
        font-size: 1.2rem;
        transition: all 0.3s ease;
        border-radius: 10px;
        margin: 0.2rem 0.5rem;
        background: transparent;
        border: 1px solid transparent;
    }

    .dropdown-menu a:hover {
        background: linear-gradient(135deg, #8e44ad, #9b59b6);
        color: white;
        border-color: #8e44ad;
        transform: translateX(5px);
    }

    /* Mobile Menu Button Düzeltmeleri */
    .mobile-menu {
        display: block;
        z-index: 1001;
        background: #1e90ff;
        border: 2px solid #e9ecef;
        border-radius: 10px;
        padding: 0.5rem;
        transition: all 0.3s ease;
        position: relative;
        width: 45px;
        height: 45px;
    }

    .mobile-menu:hover {
        color: white;
        border-color: #1e90ff;
        transform: scale(1.05);
    }

    .mobile-menu.active {
        background: #ff6b35;
        color: white;
        border-color: #ff6b35;
    }

    .mobile-menu .menu-icon,
    .mobile-menu .close-icon {
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }

    .mobile-menu.active .menu-icon {
        display: none;
    }

    .mobile-menu.active .close-icon {
        display: block !important;
    }

    /* Overlay Effect */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: -1;
    }

    /* Diğer mobil düzeltmeler */
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .features-list {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        text-align: left;
        margin-top: 1.5rem;
    }

    .contact-map-content {
        grid-template-columns: 1fr;
    }

    .contact-items-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-areas {
        grid-template-columns: 1fr;
    }

    .area-category {
        padding: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .map-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .map-link {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 1.5rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
    }

    .footer-copyright {
        gap: 10px;
        align-items: center;
    }

    .furkatech-logo {
        margin: 5px 0;
        height: 25px;
    }

    .fixed-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .fixed-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .modal-content {
        width: 85%;
        margin: 10% auto;
    }

    .search-content {
        width: 95%;
        margin: 20px;
        padding: 2rem 1.5rem;
    }

    /* Tablet için orta boyut ayarları */
    @media (max-width: 1024px) and (min-width: 769px) {
        .nav-menu {
            gap: 1.5rem;
        }

        .nav-menu a {
            font-size: 1rem;
            padding: 0.8rem 1.2rem;
        }

        .services-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .service-areas {
            grid-template-columns: repeat(2, 1fr);
        }

        .contact-items-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
}

@media (max-width: 400px) {

  html, body {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
  }

  /* Genel kapsayıcılar */
  .container, .wrapper, .content, section, header, footer, main {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    box-sizing: border-box;
  }

  /* Başlık & Paragraflar */
  h1, .hero h1 {
    font-size: 1.6rem;
    line-height: 1.2;
  }

  h2, .hero p {
    font-size: 1rem;
    line-height: 1.4;
  }

  p {
    font-size: 0.9rem;
  }

  /* Grid Yapıları Tek Sütun */
  .services-grid,
  .service-areas,
  .contact-items-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  /* Kahraman alan (hero) */
  .hero {
    padding: 2rem 1rem;
    text-align: center;
  }

  /* Butonlar */
  .btn {
    font-size: 0.9rem;
    padding: 10px 16px;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }

  /* Modal */
  .modal-content {
    width: 95% !important;
    padding: 1rem;
  }

  /* Harita */
  .map-embed {
    width: 100% !important;
    height: 250px;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  /* Navigasyon menüsü */
  nav ul {
    flex-direction: column;
    gap: 0.6rem;
  }

  nav ul li a {
    font-size: 0.7rem;
  }

    /* Mobil Navbar */
  nav {
    width: 100%;
  }

  nav ul {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 0.3rem !important;
    padding: 0.3rem 1rem;
  }

  nav ul li {
    width: 100%;
  }

  nav ul li a {
    display: block;
    width: 100%;
    padding: 0.3rem 0.6rem;
    font-size: 0.7rem;
    background: #1565c0; /* navbar arka plan rengi */
    border-radius: 6px;
    text-align: left;
  }

  nav ul li a:hover {
    background: #0d47a1;
  }

}

/* SEO Hidden Content */
.seo-hidden {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}