/*
Theme Name: Hera İşitme
Theme URI: https://heraisitme.com
Author: Hera İşitme
Author URI: https://heraisitme.com
Description: Hera İşitme Odyoloji & İşitme Cihazları kurumsal web sitesi teması.
Version: 1.0
License: Özel
Text Domain: hera-isitme
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

  :root {
    --navy:    #001d52;
    --blue:    #1e5bb8;
    --light:   #d9dee5;
    --dark:    #2f3237;
    --deep:    #0a2f66;
    --white:   #ffffff;
    --offwhite:#f5f7fa;
    --accent:  #6eaaff;
  }


  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
  }

  /* ─── NAVBAR ─────────────────────────────────── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 60px; height: 80px;
    background: rgba(0,29,82,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(110,170,255,0.12);
  }
  .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .nav-logo-mark {
    width: 42px; height: 42px; background: var(--blue);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .nav-logo-mark::before {
    content: ''; position: absolute;
    width: 20px; height: 20px; border: 2.5px solid white; border-radius: 50%;
    left: 50%; top: 50%; transform: translate(-50%, -50%);
  }
  .nav-logo-mark::after {
    content: ''; position: absolute;
    width: 8px; height: 8px; background: white; border-radius: 50%;
    left: 50%; top: 50%; transform: translate(-50%, -50%);
  }
  .nav-logo-text { display: flex; flex-direction: column; }
  .nav-logo-text strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-weight: 600; color: white;
    letter-spacing: 0.05em; line-height: 1;
  }
  .nav-logo-text span {
    font-size: 10px; color: var(--accent);
    letter-spacing: 0.18em; text-transform: uppercase; font-weight: 400;
  }
  .nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
  .nav-links a {
    font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.75);
    text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase;
    transition: color .25s; position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--accent); transition: width .3s;
  }
  .nav-links a:hover { color: white; }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    padding: 10px 24px; background: var(--blue); color: white !important;
    border-radius: 3px; font-size: 12px !important; font-weight: 500 !important;
    letter-spacing: 0.1em !important;
  }
  .nav-cta:hover { background: #2567cc !important; }
  .nav-cta::after { display: none !important; }

  /* ─── HERO ───────────────────────────────────── */
  .hero {
    height: 100vh; min-height: 700px;
    position: relative;
    display: flex; align-items: center;
    overflow: hidden;
  }

  /* Slider */
  .hero-slider {
    position: absolute; inset: 0;
    z-index: 0;
  }
  .hero-slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease;
  }
  .hero-slide.active { opacity: 1; }
  .hero-slide video,
  .hero-slide img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block;
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background: #001d52cc;
    z-index: 1;
  }

  /* Wave & Content */
  .hero-wave {
    position: absolute; right: 0; top: 0; bottom: 0;
    width: 55%; opacity: 0.08;
    display: flex; align-items: center; justify-content: center;
    z-index: 2;
  }
  .hero-wave svg { width: 100%; height: 100%; }

  .hero-content {
    position: relative; z-index: 2;
    padding: 0 60px; max-width: 680px;
  }

  .hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px;
    border: 1px solid rgba(110,170,255,0.35);
    border-radius: 100px; font-size: 11px; color: var(--accent);
    letter-spacing: 0.18em; text-transform: uppercase;
    margin-bottom: 32px;
    animation: fadeUp .8s ease forwards; opacity: 0;
  }
  .hero-tag::before {
    content: ''; width: 6px; height: 6px;
    background: var(--accent); border-radius: 50%;
    animation: pulse 2s infinite;
  }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.4)} }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 6vw, 84px); font-weight: 300;
    line-height: 1.05; color: white; margin-bottom: 12px;
    animation: fadeUp .8s .15s ease forwards; opacity: 0;
  }
  .hero-title em { font-style: italic; color: var(--accent); }

  .hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 2vw, 24px); font-weight: 300; font-style: italic;
    color: rgba(217,222,229,0.8); line-height: 1.6;
    margin-bottom: 48px; max-width: 520px;
    animation: fadeUp .8s .3s ease forwards; opacity: 0;
  }

  .hero-actions {
    display: flex; align-items: center; gap: 20px;
    animation: fadeUp .8s .45s ease forwards; opacity: 0;
  }

  .hero-stats {
    position: absolute; bottom: 0; left: 0; right: 0;
    display: flex; border-top: 1px solid rgba(255,255,255,0.07);
    animation: fadeUp .8s .6s ease forwards; opacity: 0;
    z-index: 2;
  }
  .stat-item {
    flex: 1; padding: 28px 60px;
    border-right: 1px solid rgba(255,255,255,0.07);
    display: flex; flex-direction: column; gap: 4px;
  }
  .stat-item:last-child { border-right: none; }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px; font-weight: 300; color: white; line-height: 1;
  }
  .stat-num span { color: var(--accent); font-size: 24px; }
  .stat-label {
    font-size: 11px; color: rgba(217,222,229,0.5);
    letter-spacing: 0.12em; text-transform: uppercase;
  }


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

  @media (prefers-reduced-motion: reduce) {
    .hero-slide video { display: none; }
    .hero-slider { background: #001d52; }
  }

  /* ─── BUTONLAR ───────────────────────────────── */
  .btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 36px; background: var(--blue); color: white;
    font-size: 13px; font-weight: 500; letter-spacing: 0.08em;
    text-transform: uppercase; text-decoration: none; border-radius: 3px;
    transition: background .3s, transform .2s, box-shadow .3s;
    box-shadow: 0 8px 32px rgba(30,91,184,0.4);
  }
  .btn-primary:hover { background: #2567cc; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(30,91,184,0.5); }
  .btn-primary svg { width: 16px; height: 16px; }

  .btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 16px 28px; color: rgba(255,255,255,0.7);
    font-size: 13px; font-weight: 400; letter-spacing: 0.06em;
    text-decoration: none; border: 1px solid rgba(255,255,255,0.2);
    border-radius: 3px; transition: all .3s;
  }
  .btn-ghost:hover { color: white; border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }

  /* ─── SECTION BASE ───────────────────────────── */
  section { padding: 120px 60px; }
  .section-tag {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; font-weight: 500; color: var(--blue);
    letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 20px;
  }
  .section-tag::before { content: ''; display: block; width: 32px; height: 1px; background: var(--blue); }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 56px); font-weight: 300;
    line-height: 1.1; color: var(--navy);
  }

  /* ─── HAKKIMIZDA ─────────────────────────────── */
  .about { background: var(--offwhite); }
  .about-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto;
  }
  .about-visual { position: relative; }
  .about-card {
    background: var(--navy); border-radius: 8px; padding: 60px;
    position: relative; overflow: hidden;
  }
  .about-card::before {
    content: ''; position: absolute; top: -40px; right: -40px;
    width: 200px; height: 200px; border: 1px solid rgba(110,170,255,0.15); border-radius: 50%;
  }
  .about-card::after {
    content: ''; position: absolute; bottom: -60px; left: -60px;
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(30,91,184,0.3), transparent 70%); border-radius: 50%;
  }
  .about-card-quote {
    font-family: 'Cormorant Garamond', serif; font-size: 48px;
    font-weight: 300; font-style: italic; color: rgba(110,170,255,0.3); line-height: 1; margin-bottom: 16px;
  }
  .about-card-text {
    font-family: 'Cormorant Garamond', serif; font-size: 22px;
    font-weight: 300; font-style: italic; color: rgba(217,222,229,0.9);
    line-height: 1.7; position: relative; z-index: 1;
  }
  .about-badge {
    position: absolute; bottom: -24px; right: 40px;
    background: var(--blue); color: white; padding: 20px 28px;
    border-radius: 6px; text-align: center; box-shadow: 0 16px 48px rgba(30,91,184,0.35);
  }
  .about-badge strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 300; line-height: 1; }
  .about-badge small { font-size: 11px; opacity: 0.8; letter-spacing: 0.1em; text-transform: uppercase; }
  .about-text { padding-top: 20px; }
  .about-text .section-title { margin-bottom: 24px; }
  .about-desc { font-size: 15px; line-height: 1.9; color: #555; margin-bottom: 40px; }
  .about-values { display: flex; flex-direction: column; gap: 16px; }
  .value-item {
    display: flex; align-items: flex-start; gap: 16px; padding: 20px 24px;
    background: white; border-radius: 6px; border-left: 3px solid var(--blue);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  }
  .value-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    background: rgba(30,91,184,0.08); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: var(--blue);
  }
  .value-icon svg { width: 16px; height: 16px; }
  .value-label { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 2px; letter-spacing: 0.03em; }
  .value-desc { font-size: 13px; color: #777; line-height: 1.5; }

.team { background: white; padding: 80px 0; }

.team-header { 
    max-width: 1200px; 
    margin: 0 auto 64px; 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-end; 
}

/* GÜNCELLENEN KISIM: 4 Üst - 3 Alt Ortalanmış Düzen */
.team-grid { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center;
    gap: 40px 24px;
    max-width: 1240px; 
    margin: 0 auto; 
}

.team-card { 
    flex: 0 1 calc(25% - 24px);
    min-width: 250px;
    text-align: center; 
    cursor: default; 
}

/* Tablet ve Küçük Ekranlar İçin Düzenleme */
@media (max-width: 1100px) {
    .team-card {
        flex: 0 1 calc(33.333% - 24px);
    }
}

@media (max-width: 768px) {
    .team-header { flex-direction: column; align-items: flex-start; gap: 16px; padding: 0 20px; }
    .team-header p { text-align: left !important; }
    .team-card {
        flex: 0 1 calc(50% - 24px);
    }
}

.team-photo {
    width: 100%; 
    aspect-ratio: 1; 
    border-radius: 12px; 
    margin-bottom: 20px;
    position: relative; 
    overflow: hidden; 
    background: var(--offwhite);
    border: 1px solid rgba(0,0,0,0.06); 
    transition: transform .3s, box-shadow .3s;
}

.team-card:hover .team-photo { 
    transform: translateY(-6px); 
    box-shadow: 0 24px 56px rgba(0,29,82,0.13); 
}

.team-photo-inner { 
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; position: relative; 
}

.team-photo-bg { position: absolute; inset: 0; opacity: 0.9; }
.team-photo-bg-1 { background: linear-gradient(145deg, #001d52 0%, #1e5bb8 100%); }
.team-photo-bg-2 { background: linear-gradient(145deg, #0a2f66 0%, #1e5bb8 100%); }
.team-photo-bg-3 { background: linear-gradient(145deg, #1e5bb8 0%, #0a2f66 100%); }
.team-photo-bg-4 { background: linear-gradient(145deg, #001d52 0%, #0a2f66 100%); }
.team-photo-bg-5 { background: linear-gradient(145deg, #2f3237 0%, #1e5bb8 100%); }

.team-avatar-letter {
    position: relative; z-index: 1; font-family: 'Cormorant Garamond', serif;
    font-size: 52px; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1;
}

.team-name { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 400; color: var(--navy); margin-bottom: 4px; }
.team-title { font-size: 11px; color: var(--blue); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; margin-bottom: 8px; }
.team-desc { font-size: 12px; color: #888; line-height: 1.6; padding: 0 10px; }

/* ─── EKİBİMİZ FOTOĞRAF AYARLARI ──────────────── */
.team-photo {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    background: var(--offwhite);
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform .3s, box-shadow .3s;
}

.team-member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.team-photo-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

  /* ─── HİZMETLER ──────────────────────────────── */
  .services { background: var(--navy); }
  .services .section-tag { color: var(--accent); }
  .services .section-tag::before { background: var(--accent); }
  .services .section-title { color: white; margin-bottom: 16px; }
  .services-intro { font-size: 15px; color: rgba(217,222,229,0.6); max-width: 520px; line-height: 1.8; margin-bottom: 64px; }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
  .service-card {
    padding: 40px 36px; border: 1px solid rgba(255,255,255,0.08); border-radius: 8px;
    transition: border-color .3s, background .3s, transform .3s; cursor: default; position: relative; overflow: hidden;
  }
  .service-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(30,91,184,0.12), transparent); opacity: 0; transition: opacity .3s; }
  .service-card:hover { border-color: rgba(110,170,255,0.3); background: rgba(30,91,184,0.08); transform: translateY(-4px); }
  .service-card:hover::before { opacity: 1; }
  .service-num { font-family: 'Cormorant Garamond', serif; font-size: 60px; font-weight: 300; color: rgba(30,91,184,0.25); line-height: 1; margin-bottom: 20px; }
  .service-title { font-size: 16px; font-weight: 600; color: white; margin-bottom: 12px; letter-spacing: 0.02em; }
  .service-desc { font-size: 13px; color: rgba(217,222,229,0.55); line-height: 1.8; }
  .service-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 24px; font-size: 12px; color: var(--accent); text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase; transition: gap .2s; }
  .service-link:hover { gap: 10px; }
  .service-link svg { width: 12px; height: 12px; }

  /* ─── REFERANSLAR ────────────────────────────── */
  .projects { background: white; }
  .projects-header { display: flex; justify-content: space-between; align-items: flex-end; max-width: 1200px; margin: 0 auto 56px; }
  .projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
  .project-card { border-radius: 8px; overflow: hidden; background: var(--offwhite); border: 1px solid rgba(0,0,0,0.06); transition: transform .3s, box-shadow .3s; }
  .project-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,29,82,0.12); }
  .project-img { height: 200px; position: relative; overflow: hidden; }
  .project-img-inner { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
  .project-img-1 { background: linear-gradient(135deg, #001d52, #1e5bb8); }
  .project-img-2 { background: linear-gradient(135deg, #0a2f66, #1e5bb8); }
  .project-img-3 { background: linear-gradient(135deg, #1e5bb8, #6eaaff44, #0a2f66); }
  .project-img svg { width: 64px; height: 64px; opacity: 0.4; color: white; }
  .project-body { padding: 28px; }
  .project-cat { font-size: 10px; color: var(--blue); letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; margin-bottom: 8px; }
  .project-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; color: var(--navy); margin-bottom: 10px; }
  .project-info { font-size: 13px; color: #777; line-height: 1.6; }

  /* ─── BLOG ───────────────────────────────────── */
  .blog { background: var(--offwhite); }
  .blog-header { display: flex; justify-content: space-between; align-items: flex-end; max-width: 1200px; margin: 0 auto 56px; }
  .blog-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 24px; max-width: 1200px; margin: 0 auto; }
  .blog-card { background: white; border-radius: 8px; overflow: hidden; border: 1px solid rgba(0,0,0,0.05); transition: transform .3s, box-shadow .3s; }
  .blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,29,82,0.09); }
  .blog-img { height: 220px; display: flex; align-items: center; justify-content: center; }
  .blog-img-1 { background: linear-gradient(135deg, #001d52 0%, #1e5bb8 100%); }
  .blog-img-2 { background: linear-gradient(135deg, #0a2f66 0%, #2f3237 100%); }
  .blog-img-3 { background: linear-gradient(135deg, #1e5bb8 0%, #0a2f66 100%); }
  .blog-img svg { width: 48px; height: 48px; opacity: 0.3; color: white; }
  .blog-sm .blog-img { height: 140px; }
  .blog-body { padding: 28px; }
  .blog-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
  .blog-cat { font-size: 10px; color: var(--blue); letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; }
  .blog-date { font-size: 11px; color: #aaa; }
  .blog-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; color: var(--navy); line-height: 1.3; margin-bottom: 10px; }
  .blog-lg .blog-title { font-size: 26px; margin-bottom: 14px; }
  .blog-excerpt { font-size: 13px; color: #777; line-height: 1.7; }

  /* ─── TESTİMONYALS ───────────────────────────── */
  .testimonials { background: var(--deep); padding: 100px 60px; text-align: center; }
  .testimonials .section-tag { justify-content: center; color: var(--accent); }
  .testimonials .section-tag::before { background: var(--accent); }
  .testimonials .section-title { color: white; text-align: center; margin-bottom: 64px; }
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
  .testi-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 40px 32px; text-align: left; }
  .testi-stars { display: flex; gap: 4px; margin-bottom: 20px; color: #fbbf24; font-size: 14px; }
  .testi-text { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 300; font-style: italic; color: rgba(217,222,229,0.85); line-height: 1.7; margin-bottom: 24px; }
  .testi-author { display: flex; align-items: center; gap: 12px; }
  .testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 18px; color: white; font-weight: 400; }
  .testi-name { font-size: 13px; font-weight: 600; color: white; }
  .testi-loc { font-size: 11px; color: rgba(217,222,229,0.4); margin-top: 2px; }

  /* ─── İLETİŞİM ───────────────────────────────── */
  .contact { background: white; }
  .contact-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; max-width: 1200px; margin: 0 auto; }
  .contact-info .section-title { margin-bottom: 20px; }
  .contact-desc { font-size: 15px; color: #666; line-height: 1.8; margin-bottom: 48px; }
  .contact-items { display: flex; flex-direction: column; gap: 28px; }
  .contact-item { display: flex; gap: 20px; align-items: flex-start; }
  .contact-item-icon { width: 48px; height: 48px; flex-shrink: 0; background: rgba(30,91,184,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--blue); }
  .contact-item-icon svg { width: 20px; height: 20px; }
  .contact-item-label { font-size: 11px; font-weight: 600; color: var(--blue); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 4px; }
  .contact-item-value { font-size: 15px; color: var(--dark); font-weight: 400; line-height: 1.5; }
  .contact-form { background: var(--offwhite); border-radius: 12px; padding: 48px; border: 1px solid rgba(0,0,0,0.05); }
  .form-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 400; color: var(--navy); margin-bottom: 32px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
  .form-label { font-size: 11px; font-weight: 500; color: #666; letter-spacing: 0.1em; text-transform: uppercase; }
  /* ─── TÜM CF7 FORM ALANLARI — TEK KAYNAK ────────
     .form-input / .form-textarea / .form-select    = manuel HTML elementler
     .wpcf7-form-control                            = CF7'nin eklediği sınıf
     İkisi de aynı base stili alır; böylece her alan
     aynı yükseklik, font, border ve focus görünümüne sahip olur.
  ────────────────────────────────────────────────── */

  /* Base stil — tüm input, select, textarea */
  .form-input,
  .form-textarea,
  .form-select,
  .contact-form .wpcf7-form-control {
	  
    display: block;
    width: 100%;
    padding: 14px 16px;
    background: white;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 4px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    color: var(--dark);
    line-height: 1.5;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
  }


  /* Focus */
  .form-input:focus,
  .form-textarea:focus,
  .form-select:focus,
  .contact-form .wpcf7-form-control:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(30,91,184,0.1);
  }

  /* Textarea */
  .form-textarea,
  .contact-form .wpcf7-textarea {
    resize: vertical;
    min-height: 120px;
  }

  /* Select — ok ikonu */
  .form-select,
  .contact-form .wpcf7-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
  }

  /* CF7 hata durumu */
  .contact-form .wpcf7-not-valid {
    border-color: #e53e3e !important;
    box-shadow: 0 0 0 3px rgba(229,62,62,0.08) !important;
  }

  /* CF7 submit butonu — wpcf7-submit sınıfı */
  .contact-form .wpcf7-submit,
  .form-submit {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--blue);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: background .3s, transform .2s;
    margin-top: 8px;
    -webkit-appearance: none;
    appearance: none;
  }
  .contact-form .wpcf7-submit:hover,
  .form-submit:hover {
    background: #2567cc;
    transform: translateY(-1px);
  }

  /* ─── TELEFON ALAN KODU WRAPPER ──────────────── */

 .phone-field-wrapper {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    width: 100% !important;
    align-items: center !important; /* Dikeyde hizalar */
}

/* CF7'nin otomatik oluşturduğu sarmalayıcıları (span) yan yana zorla */
.phone-field-wrapper .wpcf7-form-control-wrap {
    display: inline-block !important;
}

/* Alan kodu (Sol taraf) - Sabit küçük genişlik */
.phone-field-wrapper .wpcf7-form-control-wrap:first-child {
    flex: 0 0 100px !important; /* 100px idealdir, sığmazsa 110px yapın */
}

/* Telefon numarası (Sağ taraf) - Kalan tüm boşluğu doldur */
.phone-field-wrapper .wpcf7-form-control-wrap:last-child {
    flex: 1 !important;
}

/* Inputların kendi stillerini kutularına yay */
.phone-field-wrapper select,
.phone-field-wrapper input[type="tel"] {
    width: 100% !important;
    margin: 0 !important; /* Dış boşlukları sıfırla */
    box-sizing: border-box !important;
}

/* Eğer temanız CF7 öğelerini p içine alıyorsa onları da hizaya sokalım */
.phone-field-wrapper br {
    display: none !important; /* Araya giren boşlukları siler */
}
  /* Alan kodu ok ikonu padding */
  .phone-field-wrapper .wpcf7-select {
    padding: 14px 28px 14px 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-color: white;
  }
.iti {
    width: 100% !important;
}

.iti__country-list {
    position: absolute !important;
    z-index: 999999 !important;
    width: 320px !important;
    max-height: 300px !important;
    overflow-y: auto !important;
    transform: none !important;
}

.hp-phone-wrap,
.hp-grid,
.hp-form-card {
    overflow: visible !important;
}
  /* Mobilde dikey diz */
  @media (max-width: 480px) {
    .phone-field-wrapper {
      flex-direction: column;
    }
    .phone-field-wrapper .wpcf7-form-control-wrap:first-child,
    .phone-field-wrapper .wpcf7-form-control-wrap:last-child {
      width: 100%;
      flex: unset;
    }
  }

  /* ─── FOOTER ─────────────────────────────────── */
  footer { background: #080f1a; color: rgba(217,222,229,0.5); padding: 80px 60px 40px; }
  .footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; max-width: 1200px; margin: 0 auto; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 40px; }
  .footer-brand p { font-size: 13px; line-height: 1.8; max-width: 280px; margin-top: 20px; }
  .footer-col h4 { font-size: 11px; font-weight: 600; color: white; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 20px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a { font-size: 13px; color: rgba(217,222,229,0.5); text-decoration: none; transition: color .2s; }
  .footer-col ul li a:hover { color: white; }
  .footer-bottom { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
  .footer-copy { font-size: 12px; }
  .footer-links { display: flex; gap: 24px; list-style: none; }
  .footer-links a { font-size: 12px; color: rgba(217,222,229,0.4); text-decoration: none; transition: color .2s; }
  .footer-links a:hover { color: white; }

  /* ─── ŞUBELERİMİZ ───────────────────────────── */
  .branches { background: var(--navy); padding: 120px 60px; }
  .branches .section-tag { color: var(--accent); }
  .branches .section-tag::before { background: var(--accent); }
  .branches .section-title { color: white; margin-bottom: 60px; }
  .branches-inner { display: grid; grid-template-columns: 400px 1fr; gap: 48px; max-width: 1200px; margin: 0 auto; align-items: start; }
  .branch-list { display: flex; flex-direction: column; gap: 16px; }
  .branch-card { padding: 28px 32px; border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; cursor: pointer; transition: border-color .3s, background .3s; position: relative; }
  .branch-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--blue); border-radius: 8px 0 0 8px; opacity: 0; transition: opacity .3s; }
  .branch-card:hover, .branch-card.active { border-color: rgba(110,170,255,0.3); background: rgba(30,91,184,0.1); }
  .branch-card:hover::before, .branch-card.active::before { opacity: 1; }
  .branch-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; color: white; margin-bottom: 8px; }
  .branch-address { font-size: 13px; color: rgba(217,222,229,0.55); line-height: 1.6; margin-bottom: 12px; }
  .branch-meta { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
  .branch-phone { font-size: 13px; color: var(--accent); text-decoration: none; font-weight: 500; transition: color .2s; }
  .branch-phone:hover { color: white; }
  .branch-hours { font-size: 11px; color: rgba(217,222,229,0.4); letter-spacing: 0.06em; }
  .branch-map { border-radius: 12px; overflow: hidden; position: sticky; top: 100px; box-shadow: 0 24px 64px rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.08); height: 480px; }
  .branch-map iframe { width: 100%; height: 100%; display: block; border: none; }

  /* ─── SCROLL REVEAL ──────────────────────────── */
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════
   RESPONSIVE — Hera İşitme
   ═══════════════════════════════════════════════ */

/* ─── TABLET (≤ 1024px) ──────────────────────── */
@media (max-width: 1024px) {

  section { padding: 80px 40px; }

  nav { padding: 0 40px; }

  .hero-content { padding: 0 40px; max-width: 560px; }
  .hero-stats { display: none; }

  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 560px; margin: 0 auto; width: 100%; }
  .about-badge { bottom: -20px; right: 20px; }

  .team { padding: 80px 40px; }
  .team-header { padding: 0; }

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

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

  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-lg { grid-column: 1 / -1; }

  .branches { padding: 80px 40px; }
  .branches-inner { grid-template-columns: 1fr; }
  .branch-map { position: static; height: 380px; }

  .contact-inner { grid-template-columns: 1fr; gap: 48px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ─── MOBİL BÜYÜK (≤ 768px) ─────────────────── */
@media (max-width: 768px) {

  section { padding: 64px 20px; }

  /* Navbar */
  nav {
    padding: 0 20px;
    min-height: 64px;
    height: auto;
    flex-wrap: wrap;
    align-items: center;
    position: fixed;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 12px 0 20px;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 12px 20px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta {
    margin: 8px 20px 0;
    text-align: center;
  }

  /* Hamburger */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
  }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Hero */
  .hero { padding-top: 64px; }
  .hero-content { padding: 0 20px; }
  .hero-title { font-size: clamp(36px, 9vw, 52px); }
  .hero-subtitle { font-size: 16px; margin-bottom: 32px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }

  /* Hakkımızda */
  .about-card { padding: 36px 28px; }
  .about-card-text { font-size: 18px; }
  .about-badge { position: static; margin-top: 20px; display: inline-block; }
  .value-item { padding: 16px; }

  /* Ekip */
  .team { padding: 64px 20px; }
  .team-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 40px;
  }
  .team-header p { text-align: left !important; max-width: 100% !important; }
  .team-grid { gap: 28px 16px; }
  .team-card { flex: 0 1 calc(50% - 16px); }

  /* Hizmetler */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .services-intro { margin-bottom: 40px; }
  .service-card { padding: 32px 24px; }

  /* Testimonials */
  .testimonials { padding: 64px 20px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Şubeler */
  .branches { padding: 64px 20px; }
  .branch-card { padding: 20px; }
  .branch-meta { flex-direction: column; align-items: flex-start; gap: 6px; }
  .branch-map { height: 280px; }

  /* İletişim */
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  footer { padding: 60px 20px 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }

  /* Referanslar & Blog */
  .projects-grid { grid-template-columns: 1fr; }
  .projects-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ─── MOBİL KÜÇÜK (≤ 480px) ─────────────────── */
@media (max-width: 480px) {

  .team-card { flex: 0 1 100%; }

  .hero-title { font-size: 34px; }
  .section-title { font-size: 30px; }
  .service-num { font-size: 44px; }

  .branch-map { height: 220px; }
  .contact-form { padding: 20px 16px; }

  .nav-logo-text strong { font-size: 17px; }
  .nav-logo-text span { font-size: 9px; }
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

* {
    max-width: 100%;
}

/* Hamburger sadece mobilde görünsün */
.nav-toggle {
    display: none;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
}

/* ─── SECTION WRAPPER (MARKALAR) ─────────────── */
.brands {
  background: var(--navy);
  padding: 100px 60px;
  overflow: hidden;
}
 
.brands-header {
  max-width: 1200px;
  margin: 0 auto 64px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
 
.brands .section-tag  { color: var(--accent); }
.brands .section-tag::before { background: var(--accent); }
.brands .section-title { color: white; }
 
.brands-header-sub {
  font-size: 14px;
  color: rgba(217,222,229,0.55);
  max-width: 340px;
  line-height: 1.7;
  text-align: right;
}
 
/* ─── SLIDER TRACK ───────────────────────────── */
.brands-track-outer {
  position: relative;
  overflow: hidden;
}
 
.brands-track-outer::before,
.brands-track-outer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.brands-track-outer::before {
  left: 0;
  background: linear-gradient(to right, var(--navy) 30%, transparent);
}
.brands-track-outer::after {
  right: 0;
  background: linear-gradient(to left, var(--navy) 30%, transparent);
}
 
.brands-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: brands-scroll 32s linear infinite;
}
.brands-track:hover { animation-play-state: paused; }
 
@keyframes brands-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
 
/* ─── MARKA KARTI ────────────────────────────── */
.brand-card {
  flex-shrink: 0;
  width: 280px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: border-color .3s, background .3s, transform .3s;
  position: relative;
  overflow: hidden;
}
 
.brand-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 12px 12px 0 0;
  background: var(--brand-color, var(--blue));
  opacity: 0;
  transition: opacity .3s;
}
 
.brand-card:hover {
  border-color: rgba(110,170,255,0.3);
  background: rgba(255,255,255,0.07);
  transform: translateY(-6px);
}
.brand-card:hover::before { opacity: 1; }
 
.brand-logo-wrap {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background .3s;
}
.brand-card:hover .brand-logo-wrap {
  background: rgba(255,255,255,0.14);
}
 
.brand-logo-wrap img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
}
 
.brand-logo-initials {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}
 
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: white;
  margin: 0 0 6px;
  line-height: 1.1;
}
 
.brand-tagline {
  font-size: 10px;
  color: rgba(217,222,229,0.4);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0 0 16px;
}
 
.brand-divider {
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 0 auto 16px;
}
 
.brand-desc {
  font-size: 12px;
  color: rgba(217,222,229,0.5);
  line-height: 1.7;
  margin: 0 0 24px;
  flex: 1;
}
 
.brand-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border: 1px solid rgba(110,170,255,0.35);
  border-radius: 3px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .25s, border-color .25s, color .25s, gap .2s;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
}
.brand-btn svg {
  width: 11px;
  height: 11px;
  transition: transform .25s;
}
.brand-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
  gap: 10px;
}
.brand-btn:hover svg { transform: translateX(2px); }
/* ── HERA RANDEVU FORMU - FULL GÜNCEL ── */

/* Form genel reset */
.wpcf7 p { margin: 0 !important; }
.wpcf7 br { display: none !important; }

/* Alanlar Arası Boşluk Yönetimi */
.wpcf7 .wpcf7-form-control-wrap {
    display: block !important;
    width: 100% !important;
    margin-bottom: 18px !important; /* Alanlar arasındaki dikey boşluk */
}

/* Ad / Soyad yan yana (Masaüstü) */
.hera-form-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    margin-bottom: 0px !important; 
}

/* Tüm inputlar, select ve textarea */
.wpcf7 input:not([type="submit"]),
.wpcf7 select,
.wpcf7 textarea {
    width: 100% !important;
    height: 46px !important;
    padding: 0 14px !important;
    border: 1px solid #d0d5dd !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-family: "DM Sans", sans-serif !important;
    color: #2f3237 !important;
    background: #fff !important;
    outline: none !important;
    box-sizing: border-box !important;
    transition: border-color .2s, box-shadow .2s !important;
    -webkit-appearance: none;
    appearance: none;
    display: block !important;
}

/* Odaklanma (Focus) Durumu */
.wpcf7 input:not([type="submit"]):focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
    border-color: #1e5bb8 !important;
    box-shadow: 0 0 0 3px rgba(30,91,184,0.1) !important;
}

/* Select ok ikonu */
.wpcf7 select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7a96' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    padding-right: 36px !important;
    cursor: pointer !important;
}

/* Textarea (Mesaj Alanı) */
.wpcf7 textarea {
    height: auto !important;
    min-height: 110px !important;
    padding: 12px 14px !important;
    resize: vertical !important;
}

/* Gönder butonu */
.wpcf7 input[type="submit"] {
    width: 100% !important;
    height: 50px !important;
    background: #001d52 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: background .2s !important;
    margin-top: 5px !important;
}

.wpcf7 input[type="submit"]:hover {
    background: #0a2f66 !important;
}

/* ── intl-tel-input (Telefon Alanı) ── */
.iti {
    width: 100% !important;
    display: block !important;
    margin-bottom: 0px !important;
}

.iti input[type="tel"] {
    width: 100% !important;
    height: 46px !important;
    padding-left: 85px !important; /* Bayrak alanı için boşluk */
    font-size: 14px !important;
    border: 1px solid #d0d5dd !important;
    border-radius: 8px !important;
}

/* Ülke Listesi Paneli (Düzeltilen Kısım) */
.iti__country-list {
    z-index: 99999 !important;
    border-radius: 8px !important;
    border: 1px solid #d0d5dd !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
    font-size: 13px !important;
    margin-top: 4px !important;
    background-color: #ffffff !important; /* Gri arka plan beyaza çevrildi */
    color: #2f3237 !important;
    max-width: 300px !important;
}

.iti__country {
    padding: 10px 12px !important;
}

.iti__country:hover {
    background-color: #f3f4f6 !important;
}

/* Hata mesajları */
.wpcf7-not-valid-tip {
    font-size: 12px !important;
    color: #c0392b !important;
    margin-top: 4px !important;
    display: block !important;
}

.wpcf7-response-output {
    border-radius: 8px !important;
    font-size: 13px !important;
    padding: 10px 16px !important;
    margin-top: 15px !important;
}
/* ─── MARKALAR RESPONSIVE ─────────────────────── */
@media (max-width: 1024px) {
  .brands { padding: 80px 40px; }
  .brands-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .brands-header-sub { text-align: left; max-width: 100%; }
}
 
@media (max-width: 768px) {
  .brands { padding: 64px 0; }
  .brands-header { padding: 0 20px; }
  .brand-card { width: 240px; padding: 28px 20px 22px; }
}