/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    background-color: var(--text-dark);
    color: var(--text-light);
}

/* Header */
header {
    position: fixed;
    width: 100%; 
    top: 18px;
    z-index: 1000;
    padding: 0;
    background-color: rgba(26, 26, 26, 0.9);
    height: 40px;
    display: flex;
    align-items: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    height: 100%;
}

/* Değişkenler ekleyelim */
:root {
    --primary-color: #0052CC;     /* Daha koyu mavi - daha iyi kontrast */
    --primary-hover: #0747A6;     /* Hover için koyu mavi */
    --text-light: #FFFFFF;        /* Beyaz metin */
    --text-dark: #1A1A1A;         /* Koyu metin */
    --heading-color: #FFFFFF;     /* Başlık rengi */
    --bg-dark: rgba(0, 0, 0, 0.95); /* Koyu arka plan */
    --card-bg: rgba(0, 0, 0, 0.9); /* Kart arka planı */
}

/* Font-face tanımını kaldır */
/* @font-face {
    font-family: 'Montserrat';
    font-display: swap;
    src: url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');
} */

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 85px;
    overflow: hidden;
    contain: layout paint;
    will-change: transform;
}

/* Hero background için yeni stiller */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Hero content için yeni stiller */
.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.8rem;
    margin: 1rem 0;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Montserrat', sans-serif;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

.hero-content span {
    color: var(--primary-color);
    font-weight: 800;
}

.hero-content .subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

.emergency-box {
    background-color: rgba(0, 0, 0, 0.45);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(5px);
    width: auto;
    min-width: 280px;
}

.emergency-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    background-color: rgba(0, 0, 0, 0.55);
}

.emergency-box p {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    white-space: nowrap;
}

.emergency-box a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

/* Services Section */
.services {
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 1rem;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.services h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 2.5rem;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 1rem;
    font-weight: 700;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--primary-color);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    margin-top: 1rem;
}

.service-content {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 15px;
}

.service-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
    padding: 20px;
    transition: all 0.3s ease;
}

.service-text h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: none;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.service-text h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
}

.service-content:hover img {
    transform: scale(1.05);
}

.service-content:hover .service-text {
    background: linear-gradient(to top, rgba(0, 82, 204, 0.9), rgba(0, 82, 204, 0.7));
}

/* Mobil için düzenlemeler */
@media (max-width: 768px) {
    .service-text h3 {
        font-size: 1.1rem;
    }
    
    .service-text h4 {
        font-size: 0.9rem;
    }
}

/* Footer */
footer {
    background-color: var(--primary-color);
    padding: 0.8rem 0.5rem;
    text-align: center;
    margin-top: 4rem;
}

.footer-content button {
    background-color: white;
    color: #ff5722;
    border: none;
    padding: 0.4rem 1rem;
    border-radius: 5px;
    margin-top: 0.2rem;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.9rem;
}

.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Gallery Section */
.gallery {
    padding: 3rem 2rem;
    background-color: #1a1a1a;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 1rem;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.gallery h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 2.5rem;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 1rem;
    font-weight: 700;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}

.gallery h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--primary-color);
}

.gallery-grid {
    padding: 20px;
}

.gallery-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 4/3;
    background-color: #1a1a1a;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Tablet Responsive */
@media (max-width: 768px) {
    .gallery {
        padding: 2rem 1rem;
    }

    .gallery h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .gallery-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Mobil Responsive */
@media (max-width: 480px) {
    .gallery-grid-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery h2 {
        font-size: 1.8rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 3rem 2rem;
    background-color: #1a1a1a;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.testimonial-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    padding-bottom: 2rem;
}

.testimonial-card {
    background-color: #222;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    margin: 0;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 3px solid var(--primary-color);
}

.testimonial-content {
    text-align: center;
}

.testimonial-content h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.stars {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-style: italic;
    font-size: 0.95rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .testimonial-items {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem 2.5rem 1rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .testimonial-items {
        gap: 1rem;
        padding: 0 1rem 2rem 1rem;
    }

    .testimonial-card {
        padding: 1.2rem;
    }
}

/* İletişim Bilgileri Bölümü */
.contact-info {
    padding: 3rem 2rem;
    background-color: #1a1a1a;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    margin-top: 1rem;
}

/* İletişim bölümü üst çizgisi */
.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        var(--primary-color),
        transparent
    );
}

.contact-info h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--heading-color);
    font-size: 2.5rem;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 1rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--primary-color);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 0 auto;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.contact-item {
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--card-bg);
    border-radius: 15px;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 250px;
    border: 2px solid var(--primary-color);
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-item h3 {
    color: var(--heading-color);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-item p {
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

/* Telefon numaraları için özel stil */
.contact-item:last-child p:nth-child(even) {
    color: var(--primary-color);
    font-weight: 700;
    text-shadow: none;
}

/* İsimler için özel stil */
.contact-item:last-child p:nth-child(odd) {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

/* Adres için özel stil */
.contact-item:first-child p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* İletişim linkleri için stil */
.contact-item a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--primary-color);
}

/* Telefon numaraları için özel stil */
.contact-item:last-child a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.contact-item:last-child a:hover {
    color: var(--primary-hover);
}

/* E-posta için özel stil */
.contact-item:nth-child(2) a {
    color: var(--primary-color);
}

.contact-item:nth-child(2) a:hover {
    color: var(--primary-hover);
}

@media (max-width: 768px) {
    .contact-item {
        padding: 2.5rem 2rem;
        min-height: 220px;
    }
    
    .contact-item h3 {
        font-size: 1.4rem;
    }
    
    .contact-item p {
        font-size: 1.1rem;
    }

    .contact-item:last-child p:nth-child(even) {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .contact-item {
        padding: 2rem;
        min-height: 200px;
    }

    .contact-item p {
        font-size: 1rem;
    }

    .contact-item:last-child p:nth-child(even) {
        font-size: 1.1rem;
    }
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    padding: 0.1rem 0;
    font-size: 0.9rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1001;
    height: 18px;
}

.top-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 2rem;
    height: 18px;
}

.social-links a {
    color: var(--text-primary);
    margin-right: 1rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.social-links a:last-child {
    margin-right: 0;
}

.social-links a:hover {
    color: var(--primary-hover);
}

.contact-info a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-info a:hover {
    color: var(--primary-hover);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    height: 100%;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-links a:hover {
    color: var(--primary-hover);
}

@media (max-width: 768px) {
    .top-bar .container {
        padding: 0 1rem;
        justify-content: flex-end;
    }

    header {
        top: 18px;
    }

    .logo a {
        font-size: 1.15rem;
    }

    .hero {
        padding-top: 75px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        display: none;
    }

    header {
        top: 0;
    }

    .hero {
        padding-top: 80px;
    }
}

.logo a {
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    height: 100%;
}

.logo a:hover {
    color: var(--primary-color);
}

.gallery-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* Varsayılan (masaüstü) görünüm için stiller */
.menu-toggle {
    display: none;
}

@media screen and (max-width: 768px) {
    /* Header düzenlemeleri */
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 1000;
    }

    header nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        position: relative;
    }

    .logo {
        padding: 0;
        flex: 1;
    }

    .logo a {
        color: white;
        text-decoration: none;
        font-size: 15px;
        font-weight: bold;
        letter-spacing: 0.3px;
        white-space: nowrap;
    }

    .menu-toggle {
        display: block;
        color: white;
        font-size: 20px;
        cursor: pointer;
        padding: 5px;
        z-index: 1002;
        margin-left: 15px;
        transition: all 0.3s ease;
    }

    .menu-toggle.active i {
        transform: rotate(180deg);
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: -300px;
        width: 250px;
        height: auto;
        background-color: rgba(0, 0, 0, 0.95);
        padding-top: 70px;
        padding-bottom: 20px;
        transition: all 0.3s ease;
        z-index: 1001;
        transform: translateX(100%);
    }

    .nav-links.active {
        display: block;
        right: 0;
        transform: translateX(0);
    }

    .nav-links a {
        display: block;
        padding: 15px 25px;
        color: white;
        text-decoration: none;
        text-align: right;
        font-size: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        text-transform: uppercase;
        font-weight: 500;
        letter-spacing: 0.5px;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links a:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    /* Top bar'ı gizle */
    .top-bar {
        display: none;
    }

    /* Hero section'ı header'ın altına kaydır */
    #hero {
        padding-top: 60px;
    }

    /* Menü butonunu ve logoyu içeren container */
    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* İletişim bölümü düzenlemeleri */
    .contact-container {
        grid-template-columns: 1fr;  /* Tek kolon yap */
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .contact-info {
        padding: 2rem 1rem;
    }

    .contact-info h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .contact-item {
        padding: 2rem 1.5rem;
        min-height: auto;
    }

    .contact-item i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .contact-item h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .contact-item p {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    /* Telefon numaraları için özel stil */
    .contact-item:last-child p:nth-child(even) {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    /* İsimler için özel stil */
    .contact-item:last-child p:nth-child(odd) {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }
}

@media screen and (max-width: 480px) {
    .contact-info {
        padding: 1.5rem 1rem;
    }

    .contact-info h2 {
        font-size: 1.8rem;
    }

    .contact-item {
        padding: 1.5rem 1rem;
    }

    .contact-item i {
        font-size: 2rem;
    }

    .contact-item h3 {
        font-size: 1.2rem;
    }

    .contact-item p {
        font-size: 0.9rem;
    }

    /* Telefon numaraları için özel stil */
    .contact-item:last-child p:nth-child(even) {
        font-size: 1rem;
    }

    /* İsimler için özel stil */
    .contact-item:last-child p:nth-child(odd) {
        font-size: 0.9rem;
    }
}

/* En sondaki bu media query'ler zaten yukarıda var */
@media screen and (max-width: 768px) {
    /* Tablet boyutu için stiller */
    .hero-content h1 { font-size: 2.8rem; }
}

@media screen and (max-width: 480px) {
    /* Mobil boyut için stiller */
    .hero-content h1 { font-size: 2.2rem; }
}

/* Scroll davranışı için düzenleme */
html {
    scroll-behavior: smooth;
    /* Header yüksekliği + biraz boşluk */
    scroll-padding-top: 80px;
}

@media screen and (max-width: 768px) {
    html {
        /* Mobil header yüksekliği için ayarlama */
        scroll-padding-top: 70px;
    }

    /* Section başlıkları için padding düzenlemesi */
    .services, 
    .gallery,
    .testimonials,
    .contact-info {
        padding-top: 80px;
        margin-top: -60px; /* Header yüksekliğini dengele */
    }

    /* Header düzenlemeleri */
    header {
        height: 60px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        z-index: 1000;
    }
}

@media screen and (max-width: 480px) {
    html {
        scroll-padding-top: 60px;
    }

    .services, 
    .gallery,
    .testimonials,
    .contact-info {
        padding-top: 70px;
        margin-top: -50px;
    }
}

/* Responsive düzenlemeler */
@media (max-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablet için 2'li grid */
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .service-grid {
        grid-template-columns: 1fr; /* Mobil için tek kolon */
        max-width: 350px;
        margin: 0 auto;
        padding: 1rem;
    }
}

/* Tüm h2 başlıkları için tek stil */
.services h2,
.gallery h2,
.testimonials h2,
.contact-info h2,
h2 {
    color: var(--primary-color) !important; /* Mavi renk için */
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    position: relative;
    letter-spacing: 2px;
}

/* Tüm h2 başlıkları için alt çizgi */
.services h2::after,
.gallery h2::after,
.testimonials h2::after,
.contact-info h2::after,
h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Tüm h2 başlıkları için hover efekti */
.services h2:hover::after,
.gallery h2:hover::after,
.testimonials h2:hover::after,
.contact-info h2:hover::after,
h2:hover::after {
    width: 120px;
    transition: width 0.3s ease;
}

/* Mobil için h2 başlık boyutları */
@media (max-width: 768px) {
    h2 {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
        padding-bottom: 1.2rem;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
    }
}

/* Testimonial kartları için stil */
.testimonial-card {
    background-color: #222;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 2rem;
    margin: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.testimonial-content h3 {
    color: var(--heading-color);
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.testimonial-content p {
    color: var(--text-light);
    font-weight: 500;
}

/* İletişim bölümü */
.contact-info h2,
.contact-item h3 {
    color: var(--heading-color);
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-item {
    background-color: var(--card-bg);
    border: 2px solid var(--primary-color);
}

.contact-item p {
    color: var(--text-light);
    font-weight: 500;
}

/* Telefon numaraları için özel stil */
.contact-item:last-child p:nth-child(even) {
    color: var(--primary-color);
    font-weight: 700;
    text-shadow: none;
}

/* Body arka plan rengi */
body {
    background-color: var(--text-dark);
    color: var(--text-light);
}

/* Varsayılan (masaüstü) görünüm için stiller */
.menu-toggle {
    display: none;
}

@media screen and (max-width: 768px) {
    /* Header düzenlemeleri */
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 1000;
    }

    header nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        position: relative;
    }

    .logo {
        padding: 0;
        flex: 1;
    }

    .logo a {
        color: white;
        text-decoration: none;
        font-size: 15px;
        font-weight: bold;
        letter-spacing: 0.3px;
        white-space: nowrap;
    }

    .menu-toggle {
        display: block;
        color: white;
        font-size: 20px;
        cursor: pointer;
        padding: 5px;
        z-index: 1002;
        margin-left: 15px;
        transition: all 0.3s ease;
    }

    .menu-toggle.active i {
        transform: rotate(180deg);
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: -300px;
        width: 250px;
        height: auto;
        background-color: rgba(0, 0, 0, 0.95);
        padding-top: 70px;
        padding-bottom: 20px;
        transition: all 0.3s ease;
        z-index: 1001;
        transform: translateX(100%);
    }

    .nav-links.active {
        display: block;
        right: 0;
        transform: translateX(0);
    }

    .nav-links a {
        display: block;
        padding: 15px 25px;
        color: white;
        text-decoration: none;
        text-align: right;
        font-size: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        text-transform: uppercase;
        font-weight: 500;
        letter-spacing: 0.5px;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links a:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    /* Top bar'ı gizle */
    .top-bar {
        display: none;
    }

    /* Hero section'ı header'ın altına kaydır */
    #hero {
        padding-top: 60px;
    }

    /* Menü butonunu ve logoyu içeren container */
    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* İletişim bölümü düzenlemeleri */
    .contact-container {
        grid-template-columns: 1fr;  /* Tek kolon yap */
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .contact-info {
        padding: 2rem 1rem;
    }

    .contact-info h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .contact-item {
        padding: 2rem 1.5rem;
        min-height: auto;
    }

    .contact-item i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .contact-item h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .contact-item p {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    /* Telefon numaraları için özel stil */
    .contact-item:last-child p:nth-child(even) {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    /* İsimler için özel stil */
    .contact-item:last-child p:nth-child(odd) {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }
}

@media screen and (max-width: 480px) {
    .contact-info {
        padding: 1.5rem 1rem;
    }

    .contact-info h2 {
        font-size: 1.8rem;
    }

    .contact-item {
        padding: 1.5rem 1rem;
    }

    .contact-item i {
        font-size: 2rem;
    }

    .contact-item h3 {
        font-size: 1.2rem;
    }

    .contact-item p {
        font-size: 0.9rem;
    }

    /* Telefon numaraları için özel stil */
    .contact-item:last-child p:nth-child(even) {
        font-size: 1rem;
    }

    /* İsimler için özel stil */
    .contact-item:last-child p:nth-child(odd) {
        font-size: 0.9rem;
    }
}

/* En sondaki bu media query'ler zaten yukarıda var */
@media screen and (max-width: 768px) {
    /* Tablet boyutu için stiller */
    .hero-content h1 { font-size: 2.8rem; }
}

@media screen and (max-width: 480px) {
    /* Mobil boyut için stiller */
    .hero-content h1 { font-size: 2.2rem; }
}

/* Scroll davranışı için düzenleme */
html {
    scroll-behavior: smooth;
    /* Header yüksekliği + biraz boşluk */
    scroll-padding-top: 80px;
}

@media screen and (max-width: 768px) {
    html {
        /* Mobil header yüksekliği için ayarlama */
        scroll-padding-top: 70px;
    }

    /* Section başlıkları için padding düzenlemesi */
    .services, 
    .gallery,
    .testimonials,
    .contact-info {
        padding-top: 80px;
        margin-top: -60px; /* Header yüksekliğini dengele */
    }

    /* Header düzenlemeleri */
    header {
        height: 60px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        z-index: 1000;
    }
}

@media screen and (max-width: 480px) {
    html {
        scroll-padding-top: 60px;
    }

    .services, 
    .gallery,
    .testimonials,
    .contact-info {
        padding-top: 70px;
        margin-top: -50px;
    }
}

/* Responsive düzenlemeler */
@media (max-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablet için 2'li grid */
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .service-grid {
        grid-template-columns: 1fr; /* Mobil için tek kolon */
        max-width: 350px;
        margin: 0 auto;
        padding: 1rem;
    }
}

/* NoScript Uyarısı */
.noscript-warning {
    background-color: #ff4d4d;
    color: white;
    padding: 15px;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
} 