/* ============================================================
   AntalyaExpertiz.com — Ana Stylesheet
   Tüm sayfalar (TR / EN / RU) bu dosyayı paylaşır.
   Asset yolları bu CSS dosyasına göredir: ../assets/
   ============================================================ */


/* ============================================================
   1. RESET & BOX MODEL
   ============================================================ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

img,
video {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}


/* ============================================================
   2. CSS VARIABLES
   ============================================================ */

:root {
    --primary:       #1a1a1a;
    --secondary:     #f5f5f5;
    --accent:        #d4a574;
    --accent-dark:   #8b6f47;
    --accent-light:  #f0dcc0;
    --text:          #333333;
    --text-light:    #666666;
    --border:        #e8e8e8;
    --white:         #ffffff;
    --black:         #0a0a0a;

    --nav-height:    72px;
    --section-pad:   6rem 5%;
    --radius:        8px;
    --radius-sm:     4px;
    --shadow-sm:     0 4px 15px rgba(0, 0, 0, 0.05);
    --shadow-md:     0 8px 20px rgba(0, 0, 0, 0.10);
    --shadow-lg:     0 16px 40px rgba(0, 0, 0, 0.08);

    --transition:    all 0.3s ease;
    --max-width:     1200px;
}


/* ============================================================
   3. BASE TYPOGRAPHY
   ============================================================ */

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue',
                 Arial, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary);
}

h1 { font-size: 3.5rem; letter-spacing: -1px; }
h2 { font-size: 2rem;   margin-bottom: 1.5rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
h4 { font-size: 1rem;   margin-bottom: 0.5rem; }

p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

a {
    color: inherit;
    transition: var(--transition);
}

/* Section title underline decorator */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 1rem auto 0;
}


/* ============================================================
   4. NAVIGATION
   ============================================================ */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: var(--nav-height);
    border-bottom: 1px solid var(--border);
    width: 100%;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    animation: slideDown 0.5s ease-out;
}

.logo {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    background: linear-gradient(135deg, var(--primary), var(--accent-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    flex-shrink: 0;
}

nav ul {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

nav a:hover { color: var(--primary); }
nav a:hover::after { width: 100%; }

/* Hamburger button */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 2px;
}


/* ============================================================
   5. LANGUAGE SWITCHER
   ============================================================ */

.lang-dropdown {
    position: relative;
    display: inline-block;
    margin-left: 0;
    padding-left: 1rem;
    border-left: 1px solid var(--border);
}

.lang-current {
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0;
    border: none;
    background: none;
}

.lang-current img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: block;
}

.lang-list {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(calc(-50% + 0.5rem)) translateY(-12px);
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    margin-top: 6px;
    z-index: 1001;
    border: 1px solid var(--border);
    min-width: 56px;
}

.lang-dropdown:hover .lang-list {
    opacity: 1;
    visibility: visible;
    transform: translateX(calc(-50% + 0.5rem)) translateY(0);
}

.lang-list a {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 0;
}

.lang-list img {
    width: 36px;
    height: 36px;
    min-width: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    transition: transform 0.15s ease;
}

.lang-list img:hover { transform: scale(1.15); }


/* ============================================================
   6. BUTTONS
   ============================================================ */

.cta-button {
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: var(--white) !important;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-button::after { display: none; } /* override nav underline */

.cta-secondary {
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.cta-secondary:hover {
    background: var(--primary);
    color: var(--white);
}


/* ============================================================
   7. HERO SECTION
   ============================================================ */

.hero {
    padding: 8rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../assets/hero_bg_image_2048x914.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.22;
    z-index: 0;
}

/* Subtle gradient overlay on top of the photo */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.05) 0%,
        rgba(255,255,255,0.35) 100%
    );
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
}

.hero h1 {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out both;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.12s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out 0.24s both;
}


/* ============================================================
   8. SERVICES SECTION
   ============================================================ */

.services {
    padding: var(--section-pad);
    background: var(--secondary);
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--accent);
    transition: var(--transition);
}

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

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}


/* ============================================================
   9. PROCESS / TIMELINE
   ============================================================ */

.process {
    padding: var(--section-pad);
    background: var(--white);
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent);
    transform: translateX(-1px);
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd)  { padding-right: 52%; text-align: right; }
.timeline-item:nth-child(even) { padding-left:  52%; text-align: left;  }

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 1.25rem;
    width: 16px;
    height: 16px;
    background: var(--accent);
    border: 4px solid var(--white);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 2px var(--accent);
}

.timeline-content {
    background: var(--secondary);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.timeline-content h3 { color: var(--primary); }


/* ============================================================
   10. ABOUT SECTION
   ============================================================ */

.about {
    padding: var(--section-pad);
    max-width: var(--max-width);
    margin: 0 auto;
}

.about > h2 {
    text-align: center;
    position: relative;
    margin-bottom: 4rem;
}

.about > h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 1rem auto 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p { margin-bottom: 1.5rem; }

.about-text h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--accent-dark);
}

.about-image {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: var(--radius);
    height: 400px;
    position: relative;
    overflow: hidden;
}

.about-image::after {
    content: '📊';
    position: absolute;
    font-size: 180px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.25;
}


/* ============================================================
   11. REFERENCE LOGOS
   ============================================================ */

.references-container {
    margin-top: 4rem;
    text-align: center;
    border-top: 1px solid var(--border);
    padding-top: 3rem;
    width: 100%;
}

.references-container h3 {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.reference-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.reference-logos img {
    max-width: 120px;
    height: auto;
    filter: grayscale(20%);
    transition: var(--transition);
}

.reference-logos img:hover {
    transform: scale(1.08);
    filter: grayscale(0%);
}


/* ============================================================
   11b. ABOUT WRAPPER (section dışarısı tam genişlik için)
   ============================================================ */

.about-wrapper {
    background: var(--white);
}


/* ============================================================
   11c. NEDEN BİZ (Why Us) BÖLÜMÜ
   ============================================================ */

.why-us {
    padding: var(--section-pad);
    background: var(--primary);
}

.why-us-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.why-us .section-title {
    color: var(--white);
}

.why-us .section-title::after {
    background: var(--accent);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: var(--accent);
    transform: translateY(-4px);
}

.why-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.why-card h3 {
    color: var(--accent);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.why-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 0;
}


/* ============================================================
   12. BLOG PREVIEW (Ana sayfa — 3 kart)
   ============================================================ */

.blog-preview {
    padding: var(--section-pad);
    background: var(--secondary);
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto 3rem;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.blog-card:hover::after { display: none; }

.blog-card-body {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-dark);
    margin-bottom: 0.75rem;
}

.blog-card h2,
.blog-card h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card p {
    font-size: 0.9rem;
    flex: 1;
    margin-bottom: 1.25rem;
}

.blog-card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-dark);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
}

.blog-card-link::after {
    content: '→';
    transition: transform 0.2s ease;
    display: inline-block;
    width: auto;
    height: auto;
    background: none;
    position: static;
}

.blog-card:hover .blog-card-link::after {
    transform: translateX(4px);
    width: auto;
}

.blog-preview-all {
    text-align: center;
}


/* ============================================================
   13. BLOG LİSTELEME SAYFASI
   ============================================================ */

.blog-hero {
    padding: 5rem 5% 3rem;
    background: var(--secondary);
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.blog-hero h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.blog-hero p  { font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

.blog-listing {
    padding: 4rem 5%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.blog-listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}


/* ============================================================
   14. BLOG MAKALE SAYFASI
   ============================================================ */

.article-hero {
    padding: 5rem 5% 3rem;
    background: var(--secondary);
    border-bottom: 1px solid var(--border);
    max-width: 860px;
    margin: 0 auto;
}

.article-breadcrumb {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.article-breadcrumb a {
    color: var(--accent-dark);
    text-decoration: none;
}

.article-breadcrumb a:hover { text-decoration: underline; }

.article-hero h1 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    line-height: 1.25;
}

.article-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.article-body {
    max-width: 860px;
    margin: 0 auto;
    padding: 3rem 5% 5rem;
}

.article-body h2 {
    font-size: 1.7rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-light);
}

.article-body h3 {
    font-size: 1.2rem;
    margin-top: 2rem;
    color: var(--accent-dark);
}

.article-body p {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.article-body ul,
.article-body ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.article-body li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.article-body strong { color: var(--primary); }

.article-body blockquote {
    border-left: 4px solid var(--accent);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: var(--secondary);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--text-light);
}

/* CTA kutusu — makale sonunda */
.article-cta {
    background: var(--primary);
    color: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    text-align: center;
    margin-top: 3rem;
}

.article-cta h3  { color: var(--white); margin-bottom: 0.75rem; }
.article-cta p   { color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; }

/* İlgili makaleler */
.article-related {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 5% 5rem;
}

.article-related h2 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}


/* ============================================================
   15. CONTACT / CTA SECTION
   ============================================================ */

.cta-final {
    padding: var(--section-pad);
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.cta-final h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-final > p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 580px;
    margin: 0 auto;
}

.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: var(--max-width);
    margin: 3rem auto 0;
    text-align: left;
}

.contact-option-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: var(--transition);
}

.contact-option-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.22);
}

.contact-option-card h3 {
    color: var(--accent);
    margin-bottom: 1rem;
}

.contact-option-card p {
    color: rgba(255, 255, 255, 0.6);
}

/* WhatsApp logo CTA içindeki görsel */
.contact-whatsapp-text-icon {
    width: 192px;
    height: auto;
    margin-top: 1.5rem;
    display: block;
}

/* Web3Forms */
.web3-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 1rem;
}

.web3-form input,
.web3-form textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: inherit;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.web3-form input:focus,
.web3-form textarea:focus {
    border-color: var(--accent);
    outline: none;
    background: rgba(255, 255, 255, 0.12);
}

.web3-form input::placeholder,
.web3-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-submit-btn {
    background: var(--accent);
    color: var(--primary);
    border: none;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: inherit;
}

.form-submit-btn:hover { background: #e8c497; }

.form-error {
    color: #ff8a8a;
    font-size: 0.78rem;
    display: none;
    margin-top: 4px;
}

.form-success {
    color: #7dffb3;
    font-size: 0.85rem;
    display: none;
    margin-top: 8px;
    text-align: center;
}


/* ============================================================
   16. FOOTER
   ============================================================ */

footer {
    padding: 3.5rem 5% 0;
    background: var(--black);
    color: rgba(255, 255, 255, 0.55);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    letter-spacing: 0.3px;
}

.footer-section p { color: rgba(255, 255, 255, 0.5); font-size: 0.9rem; }

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-section a:hover { color: var(--accent); }
.footer-section a::after { display: none; }

.footer-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
}


/* ============================================================
   17. WHATSAPP FLOAT BUTTON
   ============================================================ */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 36px;
    right: 36px;
    z-index: 999;
    transition: transform 0.3s ease;
    display: block;
    line-height: 0;
}

.whatsapp-float:hover { transform: scale(1.12); }
.whatsapp-float::after { display: none; }

.whatsapp-float img {
    width: 60px;
    height: 60px;
}


/* ============================================================
   18. ANIMATIONS & KEYFRAMES
   ============================================================ */

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

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

/* JS scroll-triggered class */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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


/* ============================================================
   19. ERİŞİLEBİLİRLİK (ACCESSIBILITY)
   ============================================================ */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}

/* Ekran okuyucular için gizli metin */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


/* ============================================================
   20. RESPONSIVE — MEDIA QUERIES
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
    h1 { font-size: 3rem; }
    .about-content { gap: 2.5rem; }
}

/* Mobil */
@media (max-width: 768px) {
    :root {
        --section-pad: 4rem 5%;
    }

    h1 { font-size: 2.4rem; letter-spacing: -0.5px; }
    h2 { font-size: 1.7rem; }

    /* Nav: hamburger açılır menü */
    .hamburger {
        display: block;
    }

    nav ul {
        position: fixed;
        top: 0;
        left: -100%;
        width: 72%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 2rem 2.5rem;
        transition: left 0.3s ease;
        z-index: 1000;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.12);
    }

    nav ul.active { left: 0; }

    nav ul li,
    nav ul .lang-dropdown { width: 100%; }

    .lang-dropdown {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--border);
        padding-top: 1rem;
    }

    .lang-list {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        flex-direction: row;
        box-shadow: none;
        border: none;
        padding: 8px 0 0;
        background: transparent;
    }

    .hero-buttons { flex-direction: column; align-items: center; }
    .hero p { font-size: 1rem; }

    .about-content { grid-template-columns: 1fr; }
    .about-image   { height: 250px; }

    .timeline::before { left: 16px; }
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left:  60px;
        padding-right: 0;
        text-align: left;
    }
    .timeline-dot { left: 16px; }

    .reference-logos { gap: 1.5rem; }
    .reference-logos img { max-width: 80px; }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float img { width: 52px; height: 52px; }

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

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

    .article-hero h1 { font-size: 1.8rem; }
    .article-body p  { font-size: 1rem; }
}

/* Küçük mobil */
@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    .logo { font-size: 0.95rem; }
    .footer-content { grid-template-columns: 1fr; }
    .blog-preview-grid,
    .blog-listing-grid { grid-template-columns: 1fr; }
}
