/* ===================================================
   RESET & TEMEL STILLER
   =================================================== */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

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

:root {
    --primary-color: #f79e1b;
    --primary-hover: #e58d0e;
    --brand-purple: #7928ca;
    --brand-purple-light: #9d62fc;
    --dark-navy: #15162a;
    --text-muted: #555971;
    --bg-light: #faf9fd;
    --border-subtle: rgba(21, 22, 42, 0.06);
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-light);
    color: #333333;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

img, svg, picture, video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    -webkit-tap-highlight-color: transparent;
}

/* ===================================================
   KAPSAYICI (CONTAINER)
   =================================================== */
.header-container {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 36px;
}

/* ===================================================
   ÜST BILGI BARI (TOP BAR)
   =================================================== */
.top-bar {
    background-color: #1a1a1a;
    color: #ffffff;
    font-family: 'Montserrat', 'Open Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 9px 0;
    width: 100%;
    position: relative;
    z-index: 1002;
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-link {
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: opacity 0.2s ease, color 0.2s ease;
    padding: 2px 0;
}

.contact-link i {
    font-size: 12px;
    color: var(--primary-color);
}

.contact-link:hover {
    opacity: 0.9;
    color: var(--primary-color);
}

.divider {
    color: #ffffff;
    user-select: none;
    opacity: 0.4;
    font-size: 12px;
}

/* ===================================================
   ANA NAVBAR (MAIN NAVBAR)
   =================================================== */
.main-navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    position: relative;
    width: 100%;
    z-index: 1000;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    padding-bottom: 18px;
}

/* Logo Stilleri */
.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 56px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    display: block;
    transition: height 0.3s ease;
}

/* Menü Linkleri */
.nav-menu {
    display: flex;
    align-items: center;
}

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

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

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 14.5px;
    font-weight: 800;
    color: var(--dark-navy);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 6px 0;
    position: relative;
    transition: color 0.25s ease;
    display: inline-flex;
    align-items: center;
}

/* Hover Efekti */
.nav-link:hover {
    color: var(--brand-purple);
}

/* Alt çizgi göstergesi */
.nav-link:not(.home-icon)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background-color: var(--brand-purple);
    transition: width 0.25s ease;
    border-radius: 2px;
}

.nav-link:not(.home-icon):hover::after {
    width: 100%;
}

/* Ev İkonu */
.home-icon {
    font-size: 17px;
}

.home-icon:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease, color 0.2s ease;
}

/* ===================================================
   MOBIL HAMBURGER MENÜ BUTONU
   =================================================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus-visible {
    background-color: rgba(121, 40, 202, 0.06);
    outline: none;
}

.mobile-menu-toggle .bar {
    width: 24px;
    height: 2.5px;
    background-color: var(--dark-navy);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    transform-origin: center;
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ===================================================
   HERO BÖLÜMÜ
   =================================================== */
.hero-section {
    position: relative;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8faff 0%, #fcf9fe 50%, #fdf8f9 100%);
    padding: 60px 0 80px;
    overflow: hidden;
}

/* Arka Plan Şekilleri */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.bg-paw.paw-large-left {
    position: absolute;
    bottom: -70px;
    left: -50px;
    font-size: 300px;
    color: rgba(224, 212, 245, 0.35);
    transform: rotate(18deg);
}

.dot-grid-top-left {
    position: absolute;
    top: 35px;
    left: 45px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(rgba(180, 185, 205, 0.45) 2px, transparent 2px);
    background-size: 15px 15px;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    align-items: center;
    gap: 40px;
}

/* Sol Kolon */
.hero-left {
    max-width: 640px;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(34px, 4.8vw, 68px);
    font-weight: 900;
    line-height: 1.14;
    color: var(--dark-navy);
    letter-spacing: -0.8px;
    margin-bottom: 24px;
    word-break: break-word;
}

.hero-title .title-line {
    display: block;
}

.title-highlight {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* Başlık içi Köpek Avatar Badge */
.inline-avatar-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(52px, 6vw, 84px);
    height: clamp(36px, 4vw, 56px);
    border-radius: 40px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
    border: 3px solid #ffffff;
    vertical-align: middle;
    transform: translateY(-2px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.inline-avatar-badge:hover {
    transform: translateY(-5px) scale(1.06);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Açıklama Metni */
.hero-description {
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 38px;
    max-width: 560px;
    font-weight: 400;
}

/* CTA Buton Grubu */
.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Buton Stilleri */
.btn {
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #fba92c 0%, #f79e1b 100%);
    color: #ffffff;
    font-size: 16.5px;
    font-weight: 700;
    padding: 16px 48px;
    border-radius: 50px;
    box-shadow: 0 10px 26px rgba(247, 158, 27, 0.38);
    letter-spacing: 0.3px;
    text-align: center;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f89d18 0%, #eb8e09 100%);
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(247, 158, 27, 0.48);
    color: #ffffff;
}

.btn-primary:active {
    transform: translateY(-1px);
}

/* ===================================================
   SAĞ KOLON (TRANSPARAN GÖRSEL & MOR KEMER)
   =================================================== */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.hero-visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 640px;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin: 0 auto;
}

/* Mor Kemer Arka Planı & Dış İnce Halka */
.hero-arch-bg {
    position: absolute;
    bottom: 0;
    width: 300px;
    height: 420px;
    background: linear-gradient(180deg, #a466f8 0%, #8c40ee 100%);
    border-radius: 150px 150px 0 0;
    z-index: 1;
    box-shadow: 0 16px 40px rgba(140, 64, 238, 0.25);
    left: 50%;
    transform: translateX(-50%);
}

/* Kemer Etrafındaki İnce Dış Halka Çizgisi */
.hero-arch-bg::before {
    content: '';
    position: absolute;
    top: -16px;
    left: -16px;
    right: -16px;
    bottom: 0;
    border: 1.5px solid rgba(164, 102, 248, 0.45);
    border-bottom: none;
    border-radius: 166px 166px 0 0;
    pointer-events: none;
}

/* Ana Transparan Görsel Kapsayıcısı */
.hero-image-container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-main-img {
    height: 98%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: bottom center;
    display: block;
    filter: drop-shadow(0 18px 40px rgba(21, 22, 42, 0.16));
    transition: transform 0.4s ease, filter 0.4s ease;
}

.hero-visual-wrapper:hover .hero-main-img {
    transform: scale(1.02) translateY(-4px);
    filter: drop-shadow(0 24px 50px rgba(21, 22, 42, 0.24));
}

/* Dekoratif Renkli Patiler */
.decor-paw {
    position: absolute;
    z-index: 3;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.08));
    animation: floatPaw 4s ease-in-out infinite alternate;
}

.paw-peach {
    top: 18%;
    left: 15px;
    font-size: 48px;
    color: #ff9b85;
    transform: rotate(-18deg);
}

.paw-teal {
    top: 50%;
    right: 15px;
    font-size: 38px;
    color: #4ecdc4;
    transform: rotate(15deg);
    animation-delay: 1.5s;
}

@keyframes floatPaw {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(-10px) rotate(6deg);
    }
}

/* ===================================================
   KLİNİĞİMİZ BÖLÜMÜ
   =================================================== */
.clinic-about-section {
    background-color: #ffffff;
    padding: 100px 0 110px;
    text-align: center;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.clinic-about-container {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.clinic-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 4.2vw, 44px);
    font-weight: 800;
    color: #0b341f;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
    text-align: center;
    word-break: break-word;
}

.flourish-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 38px;
    width: 100%;
}

.clinic-flourish {
    width: clamp(140px, 22vw, 200px);
    max-width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.clinic-description {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(15px, 1.4vw, 19px);
    font-weight: 600;
    line-height: 1.9;
    color: #1a1c22;
    letter-spacing: 0.1px;
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

/* ===================================================
   HİZMETLERİMİZ BÖLÜMÜ
   =================================================== */
.services-section {
    background: linear-gradient(180deg, #faf9fd 0%, #f4f2fa 100%);
    padding: 100px 0 120px;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 54px;
}

.section-badge {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: var(--brand-purple);
    background-color: rgba(121, 40, 202, 0.08);
    padding: 7px 20px;
    border-radius: 30px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 3.8vw, 42px);
    font-weight: 900;
    color: var(--dark-navy);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    word-break: break-word;
}

.section-subtitle {
    font-size: clamp(14.5px, 1.3vw, 17px);
    color: var(--text-muted);
    max-width: 660px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Hizmetler Izgarası */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 30px 26px;
    display: flex;
    align-items: flex-start;
    gap: 22px;
    border: 1px solid rgba(21, 22, 42, 0.05);
    box-shadow: 0 8px 24px rgba(21, 22, 42, 0.03);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    min-width: 0;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--brand-purple);
    transition: height 0.3s ease;
    border-radius: 4px 0 0 4px;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(121, 40, 202, 0.1);
    border-color: rgba(121, 40, 202, 0.18);
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover .service-title {
    color: var(--brand-purple);
}

/* İkon Kutusu */
.service-icon-box {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: #ffffff;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    flex-shrink: 0;
}

.service-card:hover .service-icon-box {
    transform: scale(1.08) rotate(4deg);
}

/* Canlı Renk Gradyanları */
.icon-purple {
    background: linear-gradient(135deg, #a855f7 0%, #7928ca 100%);
    box-shadow: 0 8px 20px rgba(121, 40, 202, 0.32);
}

.icon-orange {
    background: linear-gradient(135deg, #fb923c 0%, #ea580c 100%);
    box-shadow: 0 8px 20px rgba(234, 88, 12, 0.32);
}

.icon-teal {
    background: linear-gradient(135deg, #2dd4bf 0%, #0d9488 100%);
    box-shadow: 0 8px 20px rgba(13, 148, 136, 0.32);
}

.icon-rose {
    background: linear-gradient(135deg, #fb7185 0%, #e11d48 100%);
    box-shadow: 0 8px 20px rgba(225, 29, 72, 0.32);
}

.icon-purple-light {
    background: linear-gradient(135deg, #c084fc 0%, #9333ea 100%);
    box-shadow: 0 8px 20px rgba(147, 51, 234, 0.32);
}

.icon-amber {
    background: linear-gradient(135deg, #fbb024 0%, #d97706 100%);
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.32);
}

.icon-blue {
    background: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
    box-shadow: 0 8px 20px rgba(232, 132, 199, 0.32);
}

.icon-emerald {
    background: linear-gradient(135deg, #34d399 0%, #059669 100%);
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.32);
}

.icon-coral {
    background: linear-gradient(135deg, #f87171 0%, #dc2626 100%);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.32);
}

/* Bilgi Alanı */
.service-info {
    flex: 1;
    min-width: 0;
}

.service-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18.5px;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 8px;
    letter-spacing: -0.2px;
    transition: color 0.25s ease;
    word-break: break-word;
}

.service-desc {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.65;
    font-weight: 400;
    margin-bottom: 4px;
}

.service-more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-purple);
    margin-top: 10px;
    transition: transform 0.25s ease, color 0.25s ease;
}

.service-card:hover .service-more-link {
    color: #9333ea;
    transform: translateX(4px);
}

/* ===================================================
   BLOG BÖLÜMÜ
   =================================================== */
.blog-section {
    background-color: #ffffff;
    padding: 100px 0 120px;
    position: relative;
    z-index: 10;
}

.blog-header {
    margin-bottom: 48px;
}

.blog-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 3.8vw, 42px);
    font-weight: 900;
    color: var(--dark-navy);
    letter-spacing: -0.5px;
}

/* Blog Izgarası */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    align-items: flex-end;
}

.blog-card {
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.35s ease;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    min-width: 0;
}

/* Üst Görsel Alanı ve Pop-out */
.blog-visual-wrapper {
    position: relative;
    width: 100%;
    height: 190px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: -32px;
    z-index: 2;
}

.blog-img {
    height: 180px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    object-position: bottom center;
    display: block;
    filter: drop-shadow(0 12px 24px rgba(21, 22, 42, 0.14));
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 2;
}

.blog-card:hover .blog-img {
    transform: scale(1.08) translateY(-6px);
}

/* Dekoratif Doodle Arka Planı */
.blog-doodle-backdrop {
    position: absolute;
    width: 210px;
    height: 170px;
    background: radial-gradient(circle, rgba(121, 40, 202, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    top: 5px;
    z-index: 1;
    pointer-events: none;
    left: 50%;
    transform: translateX(-50%);
}

.doodle-icon {
    position: absolute;
    font-size: 16px;
    opacity: 0.75;
    transition: transform 0.3s ease;
}

.blog-card:hover .doodle-icon {
    transform: scale(1.2);
}

.doodle-1 {
    top: 10px;
    right: 25px;
    color: #3b82f6;
    transform: rotate(25deg);
}

.doodle-2 {
    top: 35px;
    left: 20px;
    color: #eab308;
    transform: rotate(-15deg);
}

.doodle-3 {
    bottom: 25px;
    left: 10px;
    color: #a855f7;
    transform: rotate(10deg);
}

.doodle-4 {
    bottom: 30px;
    right: 15px;
    color: #06b6d4;
    transform: rotate(-20deg);
}

/* Kart Gövdesi */
.blog-card-body {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 28px 26px;
    border: 1px solid rgba(21, 22, 42, 0.06);
    box-shadow: 0 10px 30px rgba(21, 22, 42, 0.04);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
    position: relative;
    z-index: 1;
}

.blog-card:hover .blog-card-body {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(121, 40, 202, 0.12);
    border-color: rgba(121, 40, 202, 0.2);
}

.blog-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 12px;
    line-height: 1.35;
    transition: color 0.25s ease;
    word-break: break-word;
}

.blog-card:hover .blog-title {
    color: var(--brand-purple);
}

.blog-snippet {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 22px;
    font-weight: 400;
}

.blog-footer {
    border-top: 1px solid #f0f0f5;
    padding-top: 16px;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-author {
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: #1f2030;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-author i {
    color: var(--brand-purple);
    font-size: 14px;
}

.blog-read-more-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    font-weight: 800;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: transform 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.blog-card:hover .blog-read-more-link {
    color: var(--brand-purple);
    transform: translateX(3px);
}

/* ===================================================
   İLETİŞİM / RANDEVU BÖLÜMÜ
   =================================================== */
.contact-section {
    background: linear-gradient(135deg, #15162a 0%, #2a1a52 50%, #1a0e3d 100%);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

/* Arka Plan Dekor Patileri */
.contact-section::before {
    content: '\f1b0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    font-size: 340px;
    color: rgba(255,255,255,0.025);
    bottom: -80px;
    left: -60px;
    transform: rotate(22deg);
    pointer-events: none;
}

.contact-section::after {
    content: '\f1b0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    font-size: 200px;
    color: rgba(255,255,255,0.02);
    top: -30px;
    right: 40px;
    transform: rotate(-18deg);
    pointer-events: none;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
}

/* Sol: Görsel */
.contact-visual {
    position: relative;
    overflow: hidden;
}

.contact-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.contact-visual:hover .contact-img {
    transform: scale(1.04);
}

/* 7/24 Badge */
.contact-badge {
    position: absolute;
    bottom: 32px;
    right: 0;
    background: linear-gradient(135deg, #fba92c 0%, #f79e1b 100%);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    font-weight: 800;
    padding: 12px 22px 12px 18px;
    border-radius: 30px 0 0 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: -6px 6px 22px rgba(247, 158, 27, 0.45);
    letter-spacing: 0.3px;
    z-index: 3;
}

.contact-badge i {
    font-size: 16px;
}

/* Köşe Dekor Noktaları */
.contact-decor-dot {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.dot-top-left {
    top: 20px;
    left: 20px;
    background: radial-gradient(circle, rgba(164, 102, 248, 0.4) 0%, transparent 70%);
    width: 120px;
    height: 120px;
}

.dot-bottom-right {
    bottom: 110px;
    right: 30px;
    background: radial-gradient(circle, rgba(247, 158, 27, 0.3) 0%, transparent 70%);
    width: 80px;
    height: 80px;
}

/* Sağ: Form Paneli */
.contact-form-wrapper {
    padding: 64px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-eyebrow {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #f79e1b;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.contact-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(26px, 3.2vw, 36px);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
    word-break: break-word;
}

.contact-subtitle {
    font-size: clamp(14px, 1.2vw, 15px);
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 34px;
    max-width: 460px;
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.form-input {
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    padding: 14px 18px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px; /* iOS Safari otomatik zoom yapmasını engeller */
    color: #ffffff;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    max-width: 100%;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14.5px;
}

.form-input:focus {
    border-color: #a466f8;
    background: rgba(164, 102, 248, 0.12);
    box-shadow: 0 0 0 3px rgba(164, 102, 248, 0.2);
}

/* Tarih Input Renk Düzeltmesi */
.form-input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1) opacity(0.65);
    cursor: pointer;
}

/* Select Dropdown */
.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgba(255,255,255,0.7)'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
    padding-right: 44px;
    cursor: pointer;
}

.form-select option {
    background-color: #1e1340;
    color: #ffffff;
}

/* Gönder Butonu */
.btn-contact-submit {
    align-self: flex-start;
    background: linear-gradient(135deg, #fba92c 0%, #f79e1b 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    padding: 15px 46px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 12px 28px rgba(247, 158, 27, 0.4);
    margin-top: 6px;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-contact-submit:hover {
    background: linear-gradient(135deg, #f89d18 0%, #e58d0a 100%);
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(247, 158, 27, 0.52);
}

.btn-contact-submit:active {
    transform: translateY(-1px);
}

/* ===================================================
   FOOTER
   =================================================== */

/* --- Footer Hero Banner --- */
.footer-hero {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.footer-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}

.footer-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        rgba(17, 11, 42, 0.9) 0%,
        rgba(41, 14, 98, 0.78) 55%,
        rgba(17, 11, 42, 0.7) 100%);
    z-index: 1;
}

.footer-hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-hero-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.25;
    letter-spacing: -0.3px;
}

.footer-hero-text h2 span {
    color: #f79e1b;
}

/* Randevu Al Butonu */
.btn-footer-randevu {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #7928ca 0%, #a855f7 100%);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 800;
    padding: 14px 26px;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 26px rgba(121, 40, 202, 0.45);
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-footer-randevu:hover {
    background: linear-gradient(135deg, #6820b3 0%, #9333ea 100%);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(121, 40, 202, 0.55);
    color: #ffffff;
}

.randevu-arrow {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background 0.25s ease;
    flex-shrink: 0;
}

.btn-footer-randevu:hover .randevu-arrow {
    background: rgba(255, 255, 255, 0.3);
}

/* --- Footer Ana İçerik --- */
.footer-main {
    background: #0e0b1e;
    padding: 68px 0 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-columns {
    display: grid;
    grid-template-columns: 1.3fr 1.2fr 0.9fr 0.9fr 1.15fr;
    gap: 36px;
}

.footer-col {
    min-width: 0;
}

/* Footer Logo */
.footer-logo {
    width: 125px;
    height: auto;
    margin-bottom: 22px;
    display: block;
    opacity: 0.95;
}

/* İletişim Listesi */
.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.55;
    word-break: break-word;
}

.footer-contact-list i {
    color: #a466f8;
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-list a:hover {
    color: #f79e1b;
}

/* Sosyal Medya Butonları */
.footer-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.social-btn:hover {
    background: #7928ca;
    border-color: #7928ca;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(121, 40, 202, 0.4);
}

/* Footer Kolon Başlıkları */
.footer-col-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 14px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2.5px;
    background: linear-gradient(90deg, #f79e1b, #fba92c);
    border-radius: 2px;
}

/* Footer Linkler */
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
    line-height: 1.5;
}

.footer-links a:hover {
    color: #f79e1b;
    padding-left: 5px;
}

/* Çalışma Saatleri */
.footer-hours {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-hours li {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-hours .day {
    font-size: 12px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-hours .hours {
    font-size: 14px;
    color: #b784fc;
    font-weight: 700;
}

/* YÜKSEK KONTRASTLI 7/24 ACİL VETERİNER HİZMETİ KUTUSU */
.footer-emergency {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(247, 158, 27, 0.22) 0%, rgba(247, 158, 27, 0.1) 100%);
    border: 1.5px solid #f79e1b;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.45;
    box-shadow: 0 4px 20px rgba(247, 158, 27, 0.25), inset 0 0 12px rgba(247, 158, 27, 0.08);
    position: relative;
    overflow: hidden;
}

.footer-emergency::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(247, 158, 27, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.footer-emergency i {
    color: #fba92c;
    font-size: 18px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(247, 158, 27, 0.7));
    animation: emergencyPulse 2s infinite ease-in-out;
}

.footer-emergency span {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.2px;
    position: relative;
    z-index: 1;
}

@keyframes emergencyPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.85;
    }
}

/* --- Footer Alt Bar (Copyright) --- */
.footer-bottom {
    background: #08061a;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer-copyright {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.2px;
}

.footer-brand-badge {
    height: 24px;
    width: auto;
    opacity: 0.55;
    transition: opacity 0.2s ease;
    display: block;
}

.footer-made-by:hover .footer-brand-badge {
    opacity: 0.9;
}


/* ===================================================
   RESPONSIVE MEDIA QUERIES (TÜM EKRANLAR İÇİN)
   =================================================== */

/* --- 1440px ve Üzeri (Geniş Ekranlar) --- */
@media screen and (min-width: 1440px) {
    .header-container {
        max-width: 1400px;
    }
    .hero-title {
        font-size: 68px;
    }
    .hero-visual-wrapper {
        max-width: 650px;
        height: 720px;
    }
    .hero-main-img {
        height: 700px;
    }
}

/* --- 1200px altı (Dizüstü ve Küçük Masaüstü) --- */
@media screen and (max-width: 1200px) {
    .header-container {
        padding: 0 30px;
    }

    .hero-container {
        gap: 30px;
    }

    .hero-visual-wrapper {
        height: 580px;
        max-width: 520px;
    }

    .hero-arch-bg {
        width: 280px;
        height: 390px;
        border-radius: 140px 140px 0 0;
    }

    .hero-arch-bg::before {
        border-radius: 156px 156px 0 0;
    }

    .hero-main-img {
        height: 560px;
        max-width: 480px;
    }

    .footer-columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 34px;
    }

    .footer-col:first-child {
        grid-column: 1 / -1;
    }
}

/* --- 1024px altı (Tablet Yatay) --- */
@media screen and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .contact-form-wrapper {
        padding: 48px 36px;
    }
}

/* --- 992px altı (Tablet Dikey / Hero Dönüşümü) --- */
@media screen and (max-width: 992px) {
    .hero-section {
        padding: 48px 0 64px;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-left {
        max-width: 680px;
        margin: 0 auto;
    }

    .title-highlight {
        justify-content: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-right {
        margin-top: 10px;
    }

    .hero-visual-wrapper {
        height: 500px;
        max-width: 460px;
    }

    .hero-arch-bg {
        width: 250px;
        height: 350px;
        border-radius: 125px 125px 0 0;
    }

    .hero-arch-bg::before {
        border-radius: 141px 141px 0 0;
    }

    .hero-main-img {
        height: 485px;
        max-width: 420px;
    }

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

    .contact-visual {
        height: 320px;
    }

    .contact-form-wrapper {
        padding: 44px 32px 52px;
    }
}

/* --- 868px altı (Mobil Menüye Geçiş) --- */
@media screen and (max-width: 868px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        border-top: 1px solid #f0f0f5;
    }

    .nav-menu.open {
        max-height: 400px;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 20px;
        width: 100%;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: 13px 4px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        font-size: 15px;
    }

    .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .nav-link:not(.home-icon)::after {
        display: none;
    }

    .home-icon {
        padding: 10px 4px;
    }

    .footer-hero {
        height: auto;
        min-height: 190px;
        padding: 36px 0;
    }

    .footer-hero-content {
        position: relative;
        inset: auto;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        padding: 0 20px;
    }

    .footer-hero-text h2 {
        text-align: center;
    }
}

/* --- 768px altı (Tablet Dikey / Büyük Mobil) --- */
@media screen and (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }

    .clinic-about-section {
        padding: 65px 0 75px;
    }

    .services-section {
        padding: 70px 0 85px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .blog-section {
        padding: 70px 0 90px;
    }

    .blog-header {
        margin-bottom: 36px;
    }

    .footer-main {
        padding: 52px 0 40px;
    }

    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-col:first-child {
        grid-column: 1 / -1;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* --- 640px altı (Mobil Cihazlar Grid 1 Kolon) --- */
@media screen and (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-card {
        padding: 22px 18px;
        gap: 16px;
    }

    .service-icon-box {
        width: 54px;
        height: 54px;
        min-width: 54px;
        font-size: 22px;
        border-radius: 14px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .blog-visual-wrapper {
        height: 160px;
        margin-bottom: -28px;
    }

    .blog-img {
        height: 155px;
        max-width: 210px;
    }

    .blog-doodle-backdrop {
        width: 180px;
        height: 145px;
    }

    .blog-card-body {
        padding: 42px 20px 22px;
        min-height: auto;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .btn-contact-submit {
        width: 100%;
        justify-content: center;
    }
}

/* --- 540px altı (Küçük/Orta Telefonlar) --- */
@media screen and (max-width: 540px) {
    .header-container {
        padding: 0 16px;
    }

    .top-bar {
        font-size: 11.5px;
        padding: 7px 0;
    }

    .top-bar-content {
        justify-content: center;
    }

    .contact-info {
        justify-content: center;
        gap: 6px 14px;
    }

    .logo-img {
        height: 44px;
    }

    .hero-section {
        padding: 36px 0 54px;
    }

    .hero-title {
        font-size: 32px;
    }

    .inline-avatar-badge {
        width: 58px;
        height: 38px;
        border-width: 2.5px;
    }

    .hero-description {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .hero-visual-wrapper {
        height: 380px;
        max-width: 310px;
    }

    .hero-arch-bg {
        width: 200px;
        height: 280px;
        border-radius: 100px 100px 0 0;
    }

    .hero-arch-bg::before {
        top: -10px;
        left: -10px;
        right: -10px;
        border-radius: 110px 110px 0 0;
    }

    .hero-main-img {
        height: 365px;
        max-width: 300px;
    }

    .paw-peach {
        top: 14%;
        left: 4px;
        font-size: 28px;
    }

    .paw-teal {
        top: 48%;
        right: 4px;
        font-size: 24px;
    }

    .btn-primary {
        width: 100%;
        max-width: 300px;
        padding: 14px 28px;
        font-size: 15.5px;
    }

    .contact-visual {
        height: 240px;
    }

    .contact-badge {
        bottom: 14px;
        padding: 8px 16px 8px 14px;
        font-size: 12px;
        gap: 6px;
    }

    .contact-form-wrapper {
        padding: 32px 18px 40px;
    }

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

    .btn-footer-randevu {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 12px 22px;
        font-size: 14px;
    }
}

/* --- 360px ve 320px (Ultra Küçük Telefonlar - iPhone SE / Galaxy Mini) --- */
@media screen and (max-width: 360px) {
    .header-container {
        padding: 0 12px;
    }

    .top-bar {
        font-size: 10.5px;
    }

    .contact-info {
        gap: 4px 8px;
    }

    .logo-img {
        height: 38px;
    }

    .hero-title {
        font-size: 27px;
    }

    .inline-avatar-badge {
        width: 48px;
        height: 32px;
    }

    .hero-visual-wrapper {
        height: 300px;
        max-width: 250px;
    }

    .hero-arch-bg {
        width: 160px;
        height: 220px;
        border-radius: 80px 80px 0 0;
    }

    .hero-arch-bg::before {
        top: -8px;
        left: -8px;
        right: -8px;
        border-radius: 88px 88px 0 0;
    }

    .hero-main-img {
        height: 290px;
        max-width: 240px;
    }

    .paw-peach, .paw-teal {
        font-size: 20px;
    }

    .service-card {
        padding: 18px 14px;
        gap: 12px;
    }

    .service-icon-box {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 19px;
        border-radius: 12px;
    }

    .service-title {
        font-size: 16.5px;
    }

    .service-desc {
        font-size: 13.5px;
    }

    .blog-img {
        height: 135px;
        max-width: 180px;
    }

    .blog-card-body {
        padding: 34px 16px 18px;
    }

    .blog-title {
        font-size: 17px;
    }

    .contact-visual {
        height: 200px;
    }

    .contact-form-wrapper {
        padding: 26px 14px 34px;
    }

    .form-input {
        padding: 12px 14px;
    }

    .btn-contact-submit {
        padding: 13px 24px;
        font-size: 15px;
    }

    .footer-hero-text h2 {
        font-size: 19px;
    }

    .footer-emergency {
        padding: 12px 14px;
        font-size: 12px;
    }
}
