@charset "utf-8";
/* CSS Document */

/* CSS Değişkenleri */
:root {
  /* Renkler */
  --primary-color: #0055a4;
  --primary-dark: #003d7a;
  --primary-light: #e6f0fa;
  --secondary-color: #ff5722;
  --text-color: #333333;
  --text-light: #666666;
  --background-light: #f8f9fa;
  --background-white: #ffffff;
  --border-color: #e0e0e0;
  --success-color: #4CAF50;
  --warning-color: #FFC107;
  --error-color: #F44336;

  /* Boşluklar */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-xxl: 3rem;

  /* Font Boyutları */
  --font-xs: 0.75rem;
  --font-sm: 0.875rem;
  --font-md: 1rem;
  --font-lg: 1.125rem;
  --font-xl: 1.25rem;
  --font-xxl: 1.5rem;
  --font-xxxl: 2rem;
  --font-xxxxl: 2.5rem;

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
}

/* Normalize CSS */
*, *::before, *::after {
  box-sizing: border-box;
}

a,abbr,address,applet,article,aside,audio,b,blockquote,body,center,canvas,caption,code,command,datalist,dd,del,details,dfn,dl,div,dt,em,embed,fieldset,figcaption,figure,font,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,keygen,label,legend,li,meter,main,nav,object,ol,output,p,picture,pre,progress,q,s,samp,section,slider,small,span,source,strike,strong,sub,sup,table,tbody,tfoot,thead,th,tr,tdvideo,tt,u,ul,var{background:transparent;border:0 none;font-size:100%;margin:0;padding:0;border:0;outline:0;vertical-align:top;}
ol, ul {list-style:none;}
blockquote, q {quotes:none;}
table, table td {
	padding:0;
	border:none;
	border-collapse:collapse;
	color: var(--text-color);
}
img {vertical-align:top;}
embed {vertical-align:top;}
article, aside, audio, canvas, command, datalist, details, embed, figcaption, figure, footer, header, hgroup, keygen, main, map, meter, nav, output, progress, picture, section, source, slider, source, video {display:block;}
mark, rp, rt, ruby, summary, time {display:inline;}
input, textarea {border:0; padding:0; margin:0; outline: 0;}
iframe {border:0; margin:0; padding:0;}
input, textarea, select {margin:0; padding:0px;}

/* Temel Stiller */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--background-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Skip Link - Erişilebilirlik İyileştirmesi */
.skip {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: var(--spacing-sm) var(--spacing-md);
    text-decoration: none;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    z-index: 9999;
    transition: top 0.3s ease;
}

.skip:focus {
    top: 0;
}

/* Header */
.header {
    min-height: 100vh;
    background: var(--background-light);
    display: flex;
    flex-direction: column;
}

/* Diğer sayfalar için header yüksekliği */
body:not(.home) .header {
    min-height: auto;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, #1a1a1a, #333333);
    color: #fff;
    padding: var(--spacing-sm) 0;
    font-size: var(--font-sm);
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
}

.contact a {
    color: white;
    text-decoration: none;
}

.contact a:focus {
    outline: 2px solid var(--success-color);
    outline-offset: 2px;
}

.social {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.social a {
    color: white;
    text-decoration: none;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social .phone-link {
    background: var(--primary-color);
}

.social .whatsapp-link {
    background: #0A5227;
}

.social a:focus {
    outline: 2px solid rgba(255, 255, 255, 0.7);
    outline-offset: 2px;
}

.social a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Navbar */
.navbar {
    background: var(--background-white);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 114px;
    padding: 0 var(--spacing-md);
}

.logo img {
    height: 114px;
    width: auto;
    display: block;
    margin: 5px 0;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: var(--spacing-sm);
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    display: block;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    align-items: center;
}

.nav-menu li {
    display: flex;
    align-items: center;
}

.nav-menu a, .dropdown-btn {
    display: flex;
    align-items: center;
    padding: 0 var(--spacing-md);
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    font-size: var(--font-lg);
    font-family: inherit;
    height: 70px;
    transition: all 0.3s ease;
}

.nav-menu a:hover, .nav-menu a:focus, .dropdown-btn:focus, .dropdown-btn:hover{
    color: var(--primary-color);
    background: var(--primary-light);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: var(--spacing-sm) 0;
    z-index: 1001;
}

.dropdown.active .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-menu a {
    padding: var(--spacing-md);
    font-size: var(--font-md);
    height: auto;
}

/* Hero */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/bg1.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
}

.hero-content {
    background-color: rgba(255, 255, 255, 0.6);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    max-width: 500px;
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content p strong {
    font-size: 22px;
    color: var(--primary-color);
    display: block;
    margin-bottom: var(--spacing-md);
}

.hero-content p {
    font-size:16px;
    color: var(--text-color);
    line-height: 1.3;
    margin-bottom: 0;
}

/* Breadcrumb - İyileştirilmiş Tasarım */
			.breayzeccum { max-width: 100%; box-sizing: border-box; background-image:url(images/bg-1a.jpeg); background-size:cover; padding:30px 0;}
			.breayzeccum ol { max-width:1200px; margin:0px auto 0px auto ; list-style: none;  display: flex; align-items: center; }
			.breayzeccum ol li { display: inline; font-size: 16px; }
			.breayzeccum ol li + li:before { color: #000; content: "/\00a0"; padding-left: 3px; }
			.breayzeccum ol li a { color: #000; text-decoration: none; padding: 4px 4px; }
			.breayzeccum ol li a:hover, .ptyqznghjk ol li a:focus { text-decoration: underline; color: #FFFFFF; background-color:#000000;outline: 2px solid #09F; }

/* Home Icon - İyileştirilmiş */
.home-icon {
    margin-right: var(--spacing-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Main */
.main {
    padding: var(--spacing-xl) var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
    background: var(--background-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    color: var(--text-color);
}

.main h1 {
  font-size: var(--font-xxxxl);
  margin-bottom: 1.5em;
  line-height: 1.2;
  font-weight: 700;
    text-align: center;
  color: var(--primary-dark);
}

.main h2 {
  font-size: var(--font-xxl);
  margin-bottom: 1em;
  line-height: 1.3;
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
}

.main h3 {
  font-size: var(--font-xl);
  margin-top: 2em;
  margin-bottom: 0.75em;
  line-height: 1.3;
  font-weight: 500;
  color: #1a3557;
}

.main p, .main li, .main address {
  font-size: var(--font-lg);
  line-height: 1.7;
  margin-bottom: 1.25em;
  color: var(--text-color);
}

.main label, .main input, .main textarea, .main select {
  font-size: var(--font-lg);
  color: var(--text-color);
}

.main ul, .main ol {
    margin-bottom: 1.5em;
    margin-top: 0.5em;
    padding-left: 2em;
}

.main section, .main article {
    margin-bottom: 1em;
}

.main figure {
    margin: 2em 0;
    text-align: center;
}

.main figcaption {
    font-size: var(--font-md);
    color: var(--text-light);
    margin-top: var(--spacing-sm);
}

.main form {
    margin: 2em 0;
    max-width: 600px;
}

.main label {
    font-size: var(--font-lg);
    margin-bottom: var(--spacing-sm);
    display: block;
    color: var(--text-color);
}

.main input, .main textarea, .main select {
    font-size: var(--font-lg);
    margin-bottom: var(--spacing-md);
    padding: 0.75em;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    width: 100%;
    transition: all 0.3s ease;
    background: var(--background-light);
    color: var(--text-color);
}

.main input:focus, .main textarea:focus, .main select:focus {
    border-color: var(--primary-color);
    outline: 3px solid rgba(0, 85, 164, 0.2);
    background: var(--background-white);
}

.main button, .main .btn {
    font-size: var(--font-lg);
    padding: 0.75em 1.5em;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    min-height: 44px;
    min-width: 44px;
    border-radius: var(--radius-md);
    background: var(--primary-color);
    color: #fff;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.main button:hover, .main .btn:hover, .main button:focus, .main .btn:focus {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.main img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: var(--spacing-md) 0;
}

/* Intro Section - Eksik sınıf eklendi */
.intro {
    margin-bottom: var(--spacing-xl);
    text-align: left;
}

.intro h1 {
    text-align: left;
    margin-bottom: var(--spacing-lg);
}
.emergency-service {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/bg-2.jpg');
    padding: 80px 0;
    text-align: center;
    color: white;
    background-size: cover;
}
.emergency-service h2 { color: white;}
.emergency-service p { color: white;}
.emergency-service p a{ color: white;}
/* Responsive optimizasyonlar */
@media (max-width: 768px) {
    .main {
        padding: var(--spacing-md) var(--spacing-sm);
        margin: 0 var(--spacing-sm);
        border-radius: 0;
    }

    .main h1:first-child {
        margin-top: 0;
    }

    .main ul, .main ol {
        padding-left: 1.5em;
    }

    .main blockquote {
        margin: 1.5em 0;
        padding: 1em 1.5em;
    }
}

@media (max-width: 480px) {
    .main {
        padding: var(--spacing-sm);
    }

    .main section, .main article {
        margin-bottom: var(--spacing-lg);
    }

    .main figure {
        margin: var(--spacing-md) 0;
    }
}

/* Services */
.services {
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.services h2 {
    font-size: var(--font-xxxl);
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    padding: var(--spacing-xl) 0;
    position: relative;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card a {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-card .content {
    padding: var(--spacing-md);
}

.service-card h3 {
    font-size: var(--font-xl);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    transition: color 0.3s ease;
}

.service-card p {
    font-size: var(--font-md);
    color: var(--text-light);
    line-height: 1.6;
}

.service-card a:focus {
    outline: 3px solid var(--primary-light);
    outline-offset: 2px;
}

/* Footer */
.footer {
    background: linear-gradient(to right, #1a1a1a, #333);
    color: #f5f5f5;
    margin-top: auto;
}

.footer-content {
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-lg);
    border-bottom: 1px solid rgba(236, 240, 241, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-logo h3 {
    font-size: var(--font-lg);
    font-weight: 600;
    color: #fff;
}

.company p {
    font-size: var(--font-sm);
    line-height: 1.5;
    color: #ccc;
    margin-bottom: var(--spacing-md);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    font-size: var(--font-sm);
}

.contact-info a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: var(--spacing-xs);
    border-radius: var(--radius-sm);
    display: inline-block;
}
.contact-info-iletisim a { color:black;}

.contact-info a:hover, .contact-info a:focus {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    text-decoration:underline;
}

.links h4, .services-links h4 {
    font-size: var(--font-md);
    font-weight: 600;
    color: #fff;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--primary-color);
}

.links ul, .services-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.links a, .services-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: var(--font-sm);
    padding: var(--spacing-xs) 0;
    transition: all 0.3s ease;
    display: inline-block;
}

.links a:hover, .links a:focus, .services-links a:hover, .services-links a:focus {
    color: #fff;
    background: rgba(0, 85, 164, 0.2);
    padding-left: var(--spacing-xs);
    transform: translateX(5px);
}

.footer-bottom {
    padding: var(--spacing-md) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-bottom p {
    font-size: var(--font-sm);
    color: #ccc;
}

.legal {
    display: flex;
    gap: var(--spacing-md);
}

.legal a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: var(--font-sm);
    transition: all 0.3s ease;
}

.legal a:hover, .legal a:focus {
    color: #fff;
    text-decoration: underline;
}

/* Scroll Top */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.scroll-top.visible {
    display: flex;
    animation: fadeIn 0.5s ease;
}

.scroll-top:focus {
    background: var(--primary-dark);
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn, button[type="submit"] {
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: var(--font-lg);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-top: var(--spacing-sm);
    outline: none;
}

.btn:hover, button[type="submit"]:hover, .btn:focus, button[type="submit"]:focus {
    background: linear-gradient(to right, var(--primary-dark), var(--primary-color));
    color: #fff;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}
/* Mobile */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--background-white);
        flex-direction: column;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* Mobile dropdown fix - menü öğeleri düzgün hizalanacak */
    .nav-menu li {
        width: 100%;
        display: block;
    }

    .nav-menu a, .dropdown-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
        height: 50px;
        border-bottom: 1px solid var(--border-color);
    }

    .dropdown {
        position: relative;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: var(--background-light);
        padding: 0;
        margin: 0;
        min-width: auto;
        width: 100%;
    }

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

    .dropdown-menu a {
        padding: var(--spacing-md) var(--spacing-lg);
        border-bottom: 1px solid var(--border-color);
        background: var(--background-light);
        color: var(--text-color);
        text-align: center;
        width: 100%;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .dropdown-menu a:last-child {
        border-bottom: none;
    }

    .dropdown-menu a:focus, .dropdown-menu a:hover {
        background: var(--primary-light);
        color: var(--primary-color);
    }

    .hero-content p strong {
        font-size: var(--font-xxl);
    }

    .services h2 {
        font-size: var(--font-xxl);
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 var(--spacing-md);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-xl);
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

.service-detail h1 {
    font-size: var(--font-xxxl);
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

.service-detail .service-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-detail h2 {
    font-size: var(--font-xxl);
    color: var(--primary-dark);
    margin: var(--spacing-lg) 0 var(--spacing-md);
}

.service-detail ul {
    margin-bottom: var(--spacing-lg);
    padding-left: var(--spacing-lg);
    list-style-type: disc;
}

.service-detail li {
    margin-bottom: var(--spacing-sm);
}

/* Lazy Loading Images - Güvenli Versiyon */
img[loading="lazy"]:not(.loaded) {
    opacity: 1;
    transition: opacity 0.5s ease-in;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Responsive Düzenlemeler */
@media (max-width: 600px) {
  .main { padding: 12px 4px; }
  .main h1 { font-size: 1.5rem; } /* 24px */
  .main h2 { font-size: 1.15rem; } /* 18.4px */
  .main h3 { font-size: 1rem; } /* 16px */
  .main p, .main li, .main address, .main label, .main input, .main textarea { font-size: 1rem; } /* 16px */

  .breadcrumb {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .breadcrumb a {
    font-size: 0.8rem;
  }

  .breadcrumb li:not(:last-child):after {
    margin: 0 0.2rem;
  }
}

/* İletişim Sayfası Grid */
.iletisim-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
}

/* Map Container - Eksik sınıf eklendi */
.map-container {
    background: var(--background-light);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm);
    border: 1px solid var(--border-color);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: var(--radius-sm);
}

/* Contact Info Section - Eksik sınıf eklendi */
.contact-info-section {
    background: var(--background-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-info-section h2 {
    color: var(--primary-color);
    font-size: var(--font-xl);
    margin-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: var(--spacing-sm);
}

@media (max-width: 992px) {
    .iletisim-grid {
        grid-template-columns: 1fr;
    }

    .map-container iframe {
        height: 300px;
    }
}

.main > article {
    max-width: 90ch;
    margin-left: auto;
    margin-right: auto;
}
