/* Temel ayarlar */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Scroll reveal animasyonları */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active,
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

:root {
    /* Brand Colors */
    --color-primary: #0284c7;
    /* Sky 600 - More vibrant & premium */
    --color-primary-dark: #0369a1;
    /* Sky 700 */
    --color-primary-light: #e0f2fe;
    /* Sky 100 */
    --color-accent: #f97316;
    /* Orange 500 - Energetic accent */

    /* Neutral / Surface */
    --color-bg: #f8fafc;
    /* Slate 50 - Cool greyish white */
    --color-surface: #ffffff;
    --color-surface-hover: #f1f5f9;

    /* Typography Colors */
    --color-text: #0f172a;
    /* Slate 900 - Deep, rich black */
    --color-text-muted: #64748b;
    /* Slate 500 */
    --color-text-light: #94a3b8;
    /* Slate 400 */

    /* Shadows & Effects */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-primary: 0 10px 25px -5px rgba(2, 132, 199, 0.4);
    /* Glow effect */

    /* Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', system-ui, sans-serif;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--color-text);
}

/* Genel yapı */
.container {
    width: 100%;
    max-width: 1200px;
    /* Slightly wider for modern feel */
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header ve navigasyon */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    /* Subtle border */
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    /* Taller header */
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    /* Clean look, removed badge background for cleaner aesthetic */
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
}

.logo {
    text-decoration: none;
    color: var(--color-text);
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
}

.logo-image {
    height: 75px;
    width: auto;
    display: block;
    font-weight: 500;
}

.logo-main {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.logo-sub {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .header-inner {
        height: 80px;
    }

    .logo-image {
        height: 55px;
    }

    .logo-main {
        font-size: 1.6rem;
    }

    .logo-sub {
        font-size: 0.85rem;
    }
}

/* Hamburger menü */
.nav-toggle {
    background: none;
    border: none;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: background-color var(--transition-fast);
}

.nav-toggle:hover {
    background-color: var(--color-surface-hover);
}

.nav-toggle-bar {
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    border-radius: 999px;
    transition: all var(--transition-fast);
}

/* Mobil menü */
.main-nav {
    position: absolute;
    inset: 80px 0 auto 0;
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-xl);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 49;
    padding: 1rem 0;
}

.main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.main-nav li+li {
    margin-top: 0;
}

/* Modern Layout for Nav Links with Frost Effect */
.main-nav a {
    display: block;
    padding: 0.85rem 1.5rem;
    text-decoration: none;
    color: var(--color-text);
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-md);

    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* The sliding frost background */
.main-nav a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(224, 242, 254, 0.8), rgba(2, 132, 199, 0.1));
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    border-radius: var(--radius-md);
}

.main-nav a:hover::before,
.main-nav a.active::before {
    transform: scaleX(1);
    transform-origin: left;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--color-primary-dark);
    transform: translateY(-2px);
    text-shadow: 0 0 20px rgba(2, 132, 199, 0.3);
    box-shadow: 0 4px 15px rgba(186, 230, 253, 0.6);
    background-color: transparent;
}

/* Hero */
.hero {
    padding: 6rem 0;
    /* More breathing room */
    background: radial-gradient(circle at top right, #e0f2fe 0%, transparent 40%),
        radial-gradient(circle at bottom left, #f0fdf4 0%, transparent 40%),
        var(--color-bg);
}

.hero-inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hero-content h1 {
    font-size: 2.75rem;
    margin: 0.5rem 0 1rem;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: var(--color-text);
}

.hero-eyebrow {
    font-size: 0.875rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.hero-slogan {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-text-muted);
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
}

.hero-text {
    max-width: 38rem;
    margin-bottom: 2rem;
    color: var(--color-text-muted);
    font-size: 1.125rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-actions .btn {
    flex: 1;
    /* Equal width */
    min-width: 250px;
    /* Minimum width for readability */
    justify-content: center;
}

@media (max-width: 600px) {
    .hero-actions {
        flex-direction: column;
    }


    .hero-actions .btn,
    .service-band .btn,
    .service-form .btn {
        width: 100%;
        /* Full width on mobile */
        min-width: 0;
        white-space: normal;
        /* Allow text to wrap */
        height: auto;
        /* Allow height to grow with text */
        padding: 0.8rem 1rem;
        /* Adjust padding */
        font-size: 0.95rem;
        /* Slightly smaller text for better fit */
        line-height: 1.4;
    }

    .hero {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }
}

/* Hero görseli */
.hero-media {
    width: 100%;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
    transition: transform var(--transition-smooth);
}

.hero-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.hero-image {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Hero yan kart */
.hero-highlight {
    display: flex;
}

.hero-card {
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 1.35rem 1.3rem 1.15rem;
    border: 1px solid rgba(15, 23, 42, 0.04);
}

.hero-card h2 {
    font-size: 1.05rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.hero-card ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.hero-card li {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    padding-left: 1.1rem;
    position: relative;
    margin-bottom: 0.35rem;
}

.hero-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background-color: var(--color-primary);
}

/* Butonlar */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.75rem;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid transparent;
    text-decoration: none;
    white-space: nowrap;
    transition: all var(--transition-base);
    letter-spacing: 0.01em;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 4px 14px 0 rgba(2, 132, 199, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text);
    border-color: var(--color-text-light);
}

.btn-outline:hover {
    background-color: var(--color-surface);
    border-color: var(--color-text);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-light {
    background-color: #ffffff;
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.btn-light:hover {
    background-color: #f8fafc;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-sahibinden {
    background-color: #f9ce05;
    /* Sahibinden Yellow */
    color: #111;
    /* Contrast text */
    font-weight: 600;
    box-shadow: 0 4px 14px 0 rgba(249, 206, 5, 0.4);
    border: 1px solid #e5bd00;
}

.btn-sahibinden:hover {
    background-color: #ffe600;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 206, 5, 0.5);
}

/* Genel section */
.section {
    padding: 6rem 0;
}

.section-alt {
    background-color: var(--color-surface-hover);
}

.section-blue {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: left;
    margin-bottom: 3rem;
    max-width: 600px;
}

.section-header h2 {
    margin: 0 0 0.75rem;
    font-size: 2.25rem;
    color: var(--color-text);
}

.section-header p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Kart grid */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* Hizmetlerimiz kartları */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-card {
    background-color: var(--color-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
    /* Subtle border for depth */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-smooth);
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 0.1;
}

.service-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-smooth);
}

.service-card:hover .service-image {
    transform: scale(1.05);
    /* Subtle zoom */
}

/* Features Band */
.features-band {
    background-color: #ffffff;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Mobile: 2 cols */
    gap: 2rem 1rem;
    justify-items: center;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(5, 1fr);
        /* Desktop: 5 cols */
        gap: 2rem;
    }
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    max-width: 140px;
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    transition: all var(--transition-base);
}

.feature-item:hover .feature-icon {
    color: var(--color-primary);
    transform: translateY(-5px);
}

.feature-item span {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.3;
}

@media (max-width: 768px) {
    .service-image {
        height: 210px;
    }
}

.service-card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card-body h3 {
    margin: 0 0 0.75rem;
    font-size: 1.25rem;
    color: var(--color-text);
}

.service-card-body p {
    margin: 0;
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Section CTA */
.section-cta {
    margin-top: 2.5rem;
}

.link-inline {
    font-size: 1rem;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.link-inline:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

/* İkinci el grid */
.ikinci-el-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.ikinci-el-grid h2 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.ikinci-el-grid p {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: var(--color-text-muted);
    font-size: 1.125rem;
}

.list-check {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.list-check li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: var(--color-text);
}

.list-check li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0.1rem;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 0.9rem;
}

/* Servis bandı */
.service-band {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: #ffffff;
    padding: 2rem 0;
}

.service-band-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.service-band p {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 500;
}

/* Footer */
.site-footer {
    background-color: #0f172a;
    /* Darker slate */
    color: #e2e8f0;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 6px solid var(--color-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Mobile: Single column */
    gap: 2rem;
    padding-bottom: 2rem;
    align-items: start;
}

.site-footer h3,
.site-footer h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #f8fafc;
    font-size: 1.1rem;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.footer-slogan {
    margin: 0 0 1.25rem;
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
    max-width: 90%;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.95rem;
}

.footer-list li {
    margin-bottom: 0.5rem;
}

.footer-list span {
    color: #64748b;
    margin-right: 0.35rem;
    display: inline-block;
}

.footer-list a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-list a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-areas {
    margin-top: 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.7;
}

.footer-areas strong {
    color: #cbd5e1;
    font-weight: 600;
    margin-right: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(156, 163, 175, 0.3);
    font-size: 0.85rem;
}

.footer-bottom-inner {
    padding: 0.9rem 1.25rem;
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

/* Scroll Offset Fix for Sticky Header */
#hero,
#hakkimizda,
#hizmetler,
#ikinci-el,
#iletisim {
    scroll-margin-top: 100px;
}

@media (max-width: 768px) {

    #hero,
    #hakkimizda,
    #hizmetler,
    #ikinci-el,
    #iletisim {
        scroll-margin-top: 90px;
    }
}

/* --- Service Request Modal --- */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    padding: 1rem;
}

.modal-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: #ffffff;
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    position: relative;
    transform: translateY(20px);
    transition: transform var(--transition-smooth);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-backdrop.open .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--color-text-muted);
    cursor: pointer;
    z-index: 10;
    transition: color var(--transition-fast);
}

.modal-close:hover {
    color: var(--color-text);
}

.modal-header {
    background-color: var(--color-primary-light);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-header h3 {
    margin: 0 0 0.5rem;
    color: var(--color-primary-dark);
}

.modal-header p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.service-form {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    color: var(--color-text);
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.1);
}

.btn-block {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Medium ekran ve üzeri */
@media (min-width: 768px) {
    .header-inner {
        height: 72px;
    }

    .nav-toggle {
        display: none;
    }

    .main-nav {
        position: static;
        visibility: visible;
        opacity: 1;
        transform: none;
        border-bottom: none;
        box-shadow: none;
    }

    .main-nav ul {
        flex-direction: row;
        /* Desktopta yatay */
        align-items: center;
        gap: 0.5rem;
        /* Linkler arası boşluk */
        padding: 0;
        justify-content: flex-end;
        /* Sağa yasla */
    }

    .main-nav li+li {
        margin-top: 0;
    }

    .main-nav a {
        padding: 0.6rem 1.2rem;
        font-size: 0.95rem;
    }

    .main-nav a:hover {
        transform: translateY(-2px);
        /* Desktopta yukarı kalkma */
    }

    .hero {
        padding: 3.5rem 0 3.6rem;
    }

    .hero-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 2.4rem;
    }

    .hero-content,
    .hero-media {
        flex: 1 1 0;
    }

    .hero-content {
        max-width: 520px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

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

    .ikinci-el-grid {
        grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
        align-items: center;
    }

    .service-band-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        /* Desktop: 3 columns with wider first column */
    }

    .footer-bottom-inner {
        padding-left: 0;
        padding-right: 0;
    }
}

/* Daha geniş ekranlar */
@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 2.6rem;
    }

    .section {
        padding: 3rem 0;
    }

}

/* --- Map Section (Global) --- */
.map-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 450px;
    background-color: var(--color-surface);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay {
    position: absolute;
    top: 2rem;
    right: 2rem;
    /* Right positioned as requested */
    left: auto;
    z-index: 10;
    max-width: 320px;
    width: 100%;
}

.map-card {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    color: var(--color-primary-dark);
}

.address-text {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.6;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .map-overlay {
        position: relative;
        top: 0;
        left: 0;
        max-width: 100%;
        background-color: #ffffff;
        padding: 1rem;
    }

    .map-card {
        box-shadow: none;
        backdrop-filter: none;
        padding: 0.5rem;
        background: transparent;
        border: none;
    }

    .map-wrapper {
        height: auto;
        display: flex;
        flex-direction: column-reverse;
    }

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

/* Medium ekran ve üzeri (Mevcut kodun devamı olarak eklenmeli) */
@media (min-width: 768px) {
    /* ... existing media query starts earlier in file, we append specific map overrides if needed, 
       but standard desktop styles are default above */
}

/* --- FAQ Section --- */
.section-faq {
    background-color: var(--color-bg);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--color-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text);
    font-family: 'Outfit', sans-serif;
}

.faq-question:hover {
    color: var(--color-primary);
}

.icon-plus {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-primary);
    transition: transform var(--transition-base);
}

.faq-question[aria-expanded="true"] .icon-plus {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: var(--color-surface);
}

.faq-answer p {
    margin: 0;
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}





/* --- Cooling Ripple Animation (Radial Breeze) --- */
.logo {
    position: relative;
    text-decoration: none;
}

/* The Radial Pulse - Centered on ICON Wrapper */
.logo-icon-wrapper {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    /* border-radius: 50%; remove this if image is square but icon is round, or keep */
    z-index: 1;
    /* Establishes stacking context */
}



.logo-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    /* Start small, match icon size roughly */
    height: 60px;
    /* RING Gradient: Transparent center to show logo, Blue ring, Transparent fade */
    background: radial-gradient(circle,
            transparent 25%,
            rgba(2, 132, 199, 0.8) 35%,
            rgba(56, 189, 248, 0.6) 50%,
            transparent 70%);
    transform: translate(-50%, -50%) scale(1);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    /* On TOP of logo, but see-through center */
}

@keyframes cooling-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(5);
        /* Expands wide (300px) */
        opacity: 0;
    }
}

/* Turbulence (Keep the shake, it fits well) */
@keyframes turbulence {
    0% {
        transform: skewX(0) translateX(0);
    }

    25% {
        transform: skewX(-5deg) translateX(1px);
    }

    75% {
        transform: skewX(5deg) translateX(-1px);
    }

    100% {
        transform: skewX(0);
    }
}

@keyframes turbulence-icon {
    0% {
        transform: rotate(0);
    }

    25% {
        transform: rotate(-5deg);
    }

    75% {
        transform: rotate(5deg);
    }

    100% {
        transform: rotate(0);
    }
}


/* Trigger on Hover */
.logo:hover .logo-icon-wrapper::before {
    animation: cooling-pulse 1s ease-out infinite;
    /* Slower, deeper pulse */
}

.logo:hover .brand-title {
    display: inline-block;
    animation: turbulence 0.4s ease-in-out;
    color: var(--color-primary);
    text-shadow: 0 0 12px rgba(56, 189, 248, 0.6);
}

.logo:hover .logo-image {
    animation: turbulence-icon 0.4s ease-in-out;
    filter: brightness(1.2);
    z-index: 1;
    /* Ensure icon stays on top of ripple */
}

/* Remove Body Storm Effect */
body::after {
    display: none;
}