.contact-icon-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    margin-right: 12px;
    vertical-align: middle;
    display: inline-block;
}
/* ==================== FONTS ==================== */
@font-face {
    font-family: 'SatL';
    src:  url('fonts/Satoshi-Light.eot?#iefix') format('embedded-opentype'),
          url('fonts/Satoshi-Light.woff2') format('woff2'),
          url('fonts/Satoshi-Light.woff') format('woff'),
          url('fonts/Satoshi-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SatR';
    src:  url('fonts/Satoshi-Regular.eot?#iefix') format('embedded-opentype'),
          url('fonts/Satoshi-Regular.woff2') format('woff2'),
          url('fonts/Satoshi-Regular.woff') format('woff'),
          url('fonts/Satoshi-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ==================== VARIABLES ==================== */
:root {
    --top-bar-height: 85px;
}

/* ==================== GLOBAL ==================== */
html {
    color-scheme: light;
    forced-color-adjust: none;
}

body {
    margin: 0;
    font-family: 'SatL', sans-serif;
}

/* ==================== HOME PAGE ==================== */
.home-body {
    background: #f3f4f6;
}

.home-page {
    padding: calc(var(--top-bar-height) - 10px) 0 80px;
}

.home-hero {
    position: relative;
    margin: 0 auto 60px;
    max-width: 1200px;
    padding: 70px 32px;
    border-radius: 28px;
    background: radial-gradient(circle at top left, #eff6ff 0, #e0f2fe 40%, #f9fafb 100%);
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: -35%;
    background:
        radial-gradient(circle at 0 0, rgba(59, 130, 246, 0.12), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(34, 197, 94, 0.12), transparent 55%);
    opacity: 0.9;
}

.home-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 28px;
    align-items: center;
}

.home-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.05);
    color: #1d4ed8;
    font-family: 'SatR', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.home-tag::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.home-hero h1 {
    margin: 18px 0 12px;
    font-family: 'SatR', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: #0f172a;
}

.home-hero-text {
    margin: 0 0 26px;
    max-width: 560px;
    color: #475569;
    line-height: 1.75;
    font-size: 1.03rem;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.home-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 12px;
    font-family: 'SatR', sans-serif;
    font-size: 0.98rem;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, transform 0.1s ease;
}

.home-hero-btn.primary {
    background-color: #1d4ed8;
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.25);
}

.home-hero-btn.primary:hover {
    background-color: #1e40af;
    box-shadow: 0 16px 28px rgba(30, 64, 175, 0.28);
    transform: translateY(-1px);
}

.home-hero-btn.ghost {
    background-color: rgba(255, 255, 255, 0.9);
    color: #1f2937;
    border-color: rgba(148, 163, 184, 0.7);
}

.home-hero-btn.ghost:hover {
    background-color: #e5e7eb;
}

.home-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
}

.home-stat {
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(148, 163, 184, 0.45);
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
}

.home-stat-number {
    font-family: 'SatR', sans-serif;
    font-size: 1.1rem;
    color: #0f172a;
}

.home-stat-label {
    font-size: 0.9rem;
    color: #475569;
}

.home-visual {
    position: relative;
    align-self: stretch;
}

.home-visual-card {
    position: relative;
    padding: 18px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
    overflow: hidden;
}

.home-visual-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

.home-visual-pill {
    position: absolute;
    bottom: 18px;
    left: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.75);
    color: #e5e7eb;
    font-size: 0.9rem;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.home-visual-pill::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.home-highlights {
    max-width: 1100px;
    margin: 0 auto 70px;
    padding: 0 16px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.highlight-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px 16px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.highlight-card h3 {
    margin: 0 0 8px;
    font-size: 1.1rem;
    color: #0f172a;
    font-family: 'SatR', sans-serif;
}

.highlight-card p {
    margin: 0;
    color: #475569;
    line-height: 1.6;
    font-size: 0.97rem;
}

.home-section-heading {
    text-align: center;
    margin: 0 auto 32px;
    max-width: 700px;
}

.home-section-heading h2 {
    margin: 0 0 8px;
    font-size: 2rem;
    color: #0f172a;
    font-family: 'SatR', sans-serif;
}

.home-section-heading p {
    margin: 0;
    color: #475569;
    line-height: 1.7;
}

.home-services {
    background: #ffffff;
    padding: 70px 16px;
}

.home-services .container {
    max-width: 1100px;
    margin: 0 auto;
}

.home-services h2 {
    text-align: center;
    margin-bottom: 12px;
}

.home-services .hizmetler-subtitle {
    text-align: center;
    margin: 0 0 32px;
    color: #475569;
}

.home-cta {
    max-width: 1100px;
    margin: 50px auto 80px;
    padding: 28px 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, #1d4ed8, #22c55e);
    color: #f9fafb;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 16px 32px rgba(34, 197, 94, 0.25);
}

.home-cta h3 {
    margin: 0 0 6px;
    font-size: 1.4rem;
    font-family: 'SatR', sans-serif;
}

.home-cta p {
    margin: 0;
    color: #e0f2fe;
}

.home-cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.home-cta a {
    text-decoration: none;
}

.home-cta .home-hero-btn {
    box-shadow: none;
}

@media (max-width: 960px) {
    .home-hero {
        padding: 54px 22px;
    }

    .home-hero-grid {
        grid-template-columns: 1fr;
    }

    .home-visual-card {
        max-width: 520px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .home-hero {
        margin: 0 12px 50px;
        padding: 42px 18px;
    }

    .home-hero-btn {
        width: 100%;
    }

    .home-cta {
        margin: 0 12px;
    }
}

/* ==================== NAVIGATION ==================== */
.nav {
    background-color: rgba(255, 255, 255, 0.98);
    color: black;
    border-bottom: 1px solid #e5e7eb;
    height: var(--top-bar-height);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.nav a {
    color: black;
    text-decoration: none;
    font-family: 'SatR', sans-serif;
    font-size: 0.96rem;
}

.nav a:hover {
    color: #1d4ed8;
}

/* Hamburger button */
.nav-toggle {
    display: none;
    font-size: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: black;
    position: relative;
    z-index: 1100;
}

/* Full-screen overlay menu */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    display: flex;              /* keep flex so transitions work */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;       /* not clickable when hidden */
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    z-index: 1050;
}

.nav-overlay.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;       /* clickable when visible */
}

.nav-overlay a {
    color: white;
    font-size: 2rem;
    text-decoration: none;
    font-family: 'SatR', sans-serif;
    transition: color 0.2s;
}

.nav-overlay a:hover {
    color: #007BFF;
}

.nav-overlay .close-overlay {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 3rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* ==================== MAIN HERO ==================== */
.mainpageimg {
    position: relative;
    height: calc(100vh - var(--top-bar-height));
    width: 100%;
    overflow: hidden;
}

.mainpageimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.mainpageimg img.animate {
    opacity: 1;
    transform: scale(1);
}

/* Hero overlay text */
.hero-c {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    max-width: 80%;
    font-family: 'SatR', sans-serif;
}

.hero-c h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero-c p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

/* Hero button */
.hero-button {
    background-color: #007BFF;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.hero-button:hover {
    background-color: #0056b3;
}

/* ==================== NEDEN HAVALANDIRMA ==================== */
.neden-havalandirma {
    background-color: #f8f9fa;
    padding: 80px 20px;
}

.neden-havalandirma .container {
    max-width: 1200px;
    margin: 0 auto;
}

.neden-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.neden-text {
    flex: 1;
    min-width: 300px;
}

.neden-text h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #007BFF;
    font-family: 'SatR', sans-serif;
}

.neden-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.neden-img {
    flex: 1;
    min-width: 300px;
    text-align: right;
}

.neden-img img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 8px 12px rgba(0,0,0,0.1);
    object-fit: cover;
}


/* ==================== CONTACT PAGE ==================== */

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: sans-serif;
}

.contact-form button {
    background-color: #007BFF;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #0056b3;
}

.contact-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-page {
    margin: 0;         /* remove centering */
    padding: 0;        /* remove inner padding */
    text-align: left;  /* content aligns nicely on right */
}

/* Contact Header Section */
.contact-header {
    text-align: center;
    margin-bottom: 40px;
}
.contact-header h2 {
    font-size: 2.2rem;
    color: #007BFF;
    margin-bottom: 10px;
    font-family: 'SatR', sans-serif;
}
.contact-subtitle {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Contact Info List */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}
.contact-list li {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    margin-bottom: 18px;
    color: #333;
    font-family: 'SatR', sans-serif;
}
.contact-icon {
    font-size: 1.5rem;
    margin-right: 12px;
    color: #007BFF;
    vertical-align: middle;
}
.contact-list a {
    color: #007BFF;
    text-decoration: none;
    transition: color 0.2s;
}
.contact-list a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Contact Map Styling */
.contact-map {
    margin-top: 20px;
}

.contact-container {
    display: flex;
    height: calc(100vh - var(--top-bar-height));
    width: 100vw;       /* full viewport width */
}

.contact-img {
    flex: 1;
    background: url('imece/f7747619-ae66-4779-a74c-a8a990985c3e.jpeg') no-repeat center center;
    background-size: cover;
}

.contact-info {
    flex: 1;
    padding: 60px 40px; /* you can adjust */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ==================== WHATSAPP BUTTON ==================== */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-button img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    border-radius: 50%;
}

/* ==================== HAKKIMIZDA PAGE ==================== */

.about-body {
    margin: 0;
    font-family: 'SatL', sans-serif;
    background: #f3f4f6;
}

.about-page {
    padding: 40px 16px 80px;
}

.about-hero {
    position: relative;
    margin: 0 auto 50px;
    max-width: 1200px;
    padding: 60px 24px;
    border-radius: 24px;
    background: radial-gradient(circle at top left, #eff6ff 0, #e0f2fe 40%, #f9fafb 100%);
    overflow: hidden;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at 0 0, rgba(59, 130, 246, 0.12), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(34, 197, 94, 0.12), transparent 55%);
    opacity: 0.9;
}

.about-hero-inner {
    position: relative;
    max-width: 640px;
    z-index: 1;
}

.about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.05);
    color: #1d4ed8;
    font-family: 'SatR', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.about-eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.about-hero h1 {
    margin: 18px 0 10px;
    font-family: 'SatR', sans-serif;
    font-size: clamp(2.1rem, 3.5vw, 2.8rem);
    color: #0f172a;
}

.about-hero-text {
    margin: 0 0 26px;
    max-width: 520px;
    color: #475569;
    line-height: 1.7;
    font-size: 1rem;
}

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.about-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    font-family: 'SatR', sans-serif;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, transform 0.1s ease;
}

.about-hero-btn.primary {
    background-color: #1d4ed8;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
}

.about-hero-btn.primary:hover {
    background-color: #1e40af;
    box-shadow: 0 14px 26px rgba(30, 64, 175, 0.3);
    transform: translateY(-1px);
}

.about-hero-btn.ghost {
    background-color: rgba(255, 255, 255, 0.9);
    color: #1f2937;
    border-color: rgba(148, 163, 184, 0.7);
}

.about-hero-btn.ghost:hover {
    background-color: #e5e7eb;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 36px;
    align-items: stretch;
}

.about-text {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 28px 26px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.about-text h2 {
    margin-top: 0;
    margin-bottom: 8px;
    font-family: 'SatR', sans-serif;
    font-size: 1.5rem;
    color: #0f172a;
}

.about-text p {
    margin-top: 0;
    margin-bottom: 14px;
    color: #4b5563;
    line-height: 1.7;
    font-size: 0.98rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.about-card {
    background-color: #f9fafb;
    border-radius: 14px;
    padding: 16px 14px;
    border: 1px solid rgba(148, 163, 184, 0.35);
}

.about-card h3 {
    margin: 0 0 6px;
    font-family: 'SatR', sans-serif;
    font-size: 1.05rem;
    color: #1f2937;
}

.about-card p {
    margin: 0;
    font-size: 0.95rem;
    color: #6b7280;
}

.about-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-card {
    background: radial-gradient(circle at top, #eff6ff, #e5e7eb);
    border-radius: 18px;
    padding: 22px 18px 18px;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.12);
    text-align: center;
}

.about-img-card img {
    max-width: 230px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

.about-img-caption {
    margin: 0;
    font-size: 0.9rem;
    color: #4b5563;
}

.about-values {
    max-width: 1200px;
    margin: 0 auto;
}

.about-values-inner {
    background-color: #0f172a;
    border-radius: 22px;
    padding: 26px 22px 28px;
    color: #e5e7eb;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.65);
}

.about-values-header h2 {
    margin: 0 0 6px;
    font-family: 'SatR', sans-serif;
    font-size: 1.5rem;
}

.about-values-header p {
    margin: 0 0 22px;
    font-size: 0.95rem;
    color: #9ca3af;
}

.about-values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px 26px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.about-values-list li h3 {
    margin: 0 0 4px;
    font-size: 1.05rem;
    color: #e5e7eb;
}

.about-values-list li p {
    margin: 0;
    font-size: 0.9rem;
    color: #cbd5f5;
}

.about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.about-stat {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.4);
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
}

.about-stat-number {
    font-family: 'SatR', sans-serif;
    font-size: 1.1rem;
    color: #f9fafb;
}

.about-stat-label {
    font-size: 0.85rem;
    color: #9ca3af;
}

@media (max-width: 900px) {
    .about-page {
        padding-top: 24px;
    }

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

@media (max-width: 600px) {
    .about-hero {
        padding: 40px 18px;
    }

    .about-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .about-text {
        padding: 22px 18px;
    }

    .about-values-inner {
        padding: 22px 18px;
    }
}

/* ==================== HAPPY CUSTOMERS ==================== */
.happy-customers {
    background: #f7fafc;
    padding: 80px 20px;
    text-align: center;
}
.hc-container {
    max-width: 900px;
    margin: 0 auto;
}
.happy-customers h2 {
    font-size: 2.3rem;
    color: #007BFF;
    margin-bottom: 10px;
    font-family: 'SatR', sans-serif;
}
.hc-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}
.hc-testimonials {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}
.hc-testimonial {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    padding: 32px 24px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
}
.hc-testimonial:hover {
    box-shadow: 0 8px 24px rgba(0,123,255,0.12);
}
.hc-profile {
    margin-bottom: 18px;
}
.hc-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #007BFF;
    background: #e9ecef;
}
.hc-name {
    font-weight: bold;
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 10px;
    font-family: 'SatR', sans-serif;
}
.hc-comment {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
    font-family: 'SatL', sans-serif;
}
@media (max-width: 768px) {
    .hc-testimonials {
        flex-direction: column;
        gap: 30px;
    }
    .hc-testimonial {
        max-width: 100%;
    }
}

/* ==================== RESPONSIVE ==================== */

/* navbar imece */
.nav-links {
    display: flex;
    gap: 18px;
}

.nav-links a {
    position: relative;
    margin-left: 0;
    padding: 6px 0;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #1d4ed8, #22c55e);
    transition: width 0.2s ease-out;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

@media (max-width: 768px) {
    /* Hide normal nav links */
    .nav-links {
        display: none;
    }

    /* Show hamburger button */
    .nav-toggle {
        display: block;
    }
}

/* neden havalandırma imece */
@media (max-width: 768px) {
  .neden-content {
    flex-direction: column;
    text-align: center;
    padding: 0;
    margin: 0;
  }

  .neden-text {
    padding: 0 15px;
  }

  .neden-img {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    text-align: center;
  }

  .neden-img img {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    object-fit: cover;
    box-shadow: none;
  }
}

/* contact page imece */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        height: auto;
    }

    .contact-img {
        display: none; /* hide image on mobile */
    }

    .contact-info {
        padding: 20px;
    }
}

/* =============== IFRAME =============== */

iframe {
  max-width: 100%;
  width: 100%;
  height: 500;
  border: 0;
}

/* ==================== HIZMETLER ==================== */
.hizmetler {
    background-color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.hizmetler .container {
    max-width: 1100px;
    margin: 0 auto;
}

.hizmetler h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #007BFF;
    font-family: 'SatR', sans-serif;
}

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

.service-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 8px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-bottom: 20px;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    margin: 16px 20px 8px 20px;
    font-size: 1.4rem;
    color: #333;
    font-family: 'SatR', sans-serif;
}

.service-card p {
    font-size: 1rem;
    color: #555;
    margin: 0 20px 0;
    line-height: 1.6;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 14px rgba(0,0,0,0.15);
}

/* ==================== NEW CONTACT PAGE LAYOUT ==================== */

.contact-body {
    margin: 0;
    font-family: 'SatL', sans-serif;
    background-color: #f3f4f6;
}

.contact-page {
    padding: 32px 16px 80px;
}

.contact-hero {
    max-width: 1100px;
    margin: 0 auto 32px;
    padding: 32px 24px;
    border-radius: 24px;
    background: radial-gradient(circle at top left, #eff6ff 0, #e0f2fe 40%, #f9fafb 100%);
}

.contact-hero-inner {
    max-width: 640px;
}

.contact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.05);
    color: #1d4ed8;
    font-family: 'SatR', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.contact-eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.contact-hero h1 {
    margin: 16px 0 10px;
    font-family: 'SatR', sans-serif;
    font-size: clamp(2rem, 3.3vw, 2.6rem);
    color: #0f172a;
}

.contact-hero-text {
    margin: 0;
    color: #475569;
    line-height: 1.7;
    font-size: 0.98rem;
}

.contact-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.7fr);
    gap: 24px;
}

.contact-card,
.contact-map-card {
    background-color: #ffffff;
    border-radius: 18px;
    padding: 24px 22px;
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.08);
}

.contact-info-title {
    margin-top: 0;
    margin-bottom: 14px;
    font-family: 'SatR', sans-serif;
    font-size: 1.4rem;
    color: #0f172a;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.98rem;
    color: #374151;
}

.contact-list strong {
    font-family: 'SatR', sans-serif;
    color: #111827;
}

.contact-list a {
    color: #1d4ed8;
    text-decoration: none;
}

.contact-list a:hover {
    text-decoration: underline;
}

.contact-map-card iframe {
    display: block;
}

@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-hero {
        padding: 24px 18px;
    }
}

@media (max-width: 600px) {
    .contact-page {
        padding-top: 24px;
    }

    .contact-card,
    .contact-map-card {
        padding: 20px 18px;
    }
}
