/* =====================================================
   MURAT ALTINDIS - KISISEL WEB SITESI
   Ana Stil Dosyasi
   ===================================================== */

/* ----- CSS Variables ----- */
:root {
  --color-black: #1a1a1a;
  --color-white: #ffffff;
  --color-light-gray: #999999;
  --color-border: #e0e0e0;
  --color-bg-gray: #f5f5f5;
  
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Cormorant Garamond', Georgia, serif;
  
  --container-width: 1200px;
  --section-padding: 100px;
}

/* ----- Reset & Base ----- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-black);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ----- Container ----- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* ----- Utilities ----- */
.section-padding {
  padding: 60px 0;
}

.link-underline {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--color-black);
  font-size: 0.95rem;
  transition: opacity 0.3s;
}

.link-underline:hover {
  opacity: 0.7;
}

/* =====================================================
   HEADER
   ===================================================== */
.header {
  padding: 30px 0;
  position: relative;
  z-index: 100;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 75px;
  width: 75px;
  object-fit: contain;
}

/* Header Right - Dil + Arama */
.header__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.lang-switch a {
  font-size: 0.85rem;
  color: var(--color-light-gray);
}

.lang-switch a.active {
  color: var(--color-black);
}

.search-trigger {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--color-black);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__link {
  font-size: 1.1rem;
  color: var(--color-black);
  position: relative;
  padding-bottom: 4px;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-black);
  transition: width 0.3s ease;
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

/* Language Switch */
.lang-switch {
  font-size: 0.85rem;
  color: var(--color-light-gray);
}

.lang-switch a {
  color: var(--color-light-gray);
  transition: color 0.3s;
}

.lang-switch a.active,
.lang-switch a:hover {
  color: var(--color-black);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-black);
  transition: all 0.3s;
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.mobile-nav a {
  font-size: 1.5rem;
  font-family: var(--font-heading);
}

.mobile-nav.active {
  display: flex;
}

/* =====================================================
   HERO SLIDER
   ===================================================== */
.hero {
  padding: 0;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero__slide {
  display: none;
  animation: fadeIn 0.6s ease;
}

.hero__slide.active {
  display: block;
}

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

.hero__quote-mark {
  font-size: 6rem;
  line-height: 1;
  color: var(--color-black);
  font-family: var(--font-heading);
  display: block;
  margin-bottom: -20px;
}

.hero__quote {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 20px;
}

.hero__author {
  font-size: 0.9rem;
  color: var(--color-light-gray);
}

/* Hero Dots */
.hero__dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.hero__dot {
  width: 40px;
  height: 2px;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.hero__dot.active {
  background: var(--color-black);
}

/* =====================================================
   PAGE HEADER
   ===================================================== */
.page-header {
  padding: 60px 0 40px;
}

.page-header__title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-header__desc {
  font-size: 1.1rem;
  color: var(--color-light-gray);
  line-height: 1.7;
  max-width: 100%;
  text-align: justify;
}

/* =====================================================
   BLOG SECTION (Homepage)
   ===================================================== */
.blog-section {
  padding: 60px 0;
}

.blog-section__inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
}

/* Blog Sidebar */
.blog-sidebar__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 20px;
}

.blog-sidebar__categories {
  list-style: none;
  margin-bottom: 30px;
}

.blog-sidebar__categories li {
  margin-bottom: 10px;
}

.blog-sidebar__categories a {
  font-style: italic;
  color: var(--color-light-gray);
  transition: color 0.3s;
}

.blog-sidebar__categories a:hover {
  color: var(--color-black);
}

.blog-sidebar__link {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--color-black);
  font-size: 0.9rem;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* =====================================================
   PROJELERIM SECTION (Homepage)
   ===================================================== */
.projects-section {
  padding: 80px 0;
}

.projects-section__header {
  text-align: center;
  margin-bottom: 50px;
}

.projects-section__title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
}

.projects-section__footer {
  text-align: right;
  margin-top: 40px;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

/* Büyük kart (sol taraf) - 2 satır kaplar */
.projects-grid__left {
  grid-row: 1 / 3;
  grid-column: 1;
  min-height: 0;
}

.projects-grid__left .card {
  position: relative;
  height: 100%;
  min-height: 0;
}

.projects-grid__left .card__image {
  height: 100%;
  min-height: 0;
  margin-bottom: 0;
}

.projects-grid__left .card__image img,
.projects-grid__left .card__image svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.projects-grid__left .card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 25px;
  background: rgba(128, 128, 128, 0.85);
  color: var(--color-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.projects-grid__left .card__title {
  color: var(--color-white);
  font-size: 1.4rem;
  margin-bottom: 0;
  font-weight: 500;
}

.projects-grid__left .card__link {
  color: var(--color-white);
  font-style: italic;
  font-size: 0.95rem;
  white-space: nowrap;
}

.projects-grid__left .card__text {
  display: none;
}

/* Küçük kartlar (sağ taraf) */
.projects-grid__right {
  grid-row: 1 / 3;
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-height: 0;
}

.projects-grid__right .card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
  flex: 1 1 0;
  min-height: 0;
  overflow: hidden;
}

.projects-grid__right .card__image {
  height: 100%;
  min-height: 0;
  margin-bottom: 0;
  background: var(--color-bg-gray);
}

.projects-grid__right .card__image img,
.projects-grid__right .card__image svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.projects-grid__right .card__info {
  padding-top: 5px;
  overflow: hidden;
}

.projects-grid__right .card__title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 500;
}

.projects-grid__right .card__text {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 12px;
  color: var(--color-light-gray);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.projects-grid__right .card__link {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--color-light-gray);
}

/* =====================================================
   LIST SECTION (Blog/Proje List)
   ===================================================== */
.list-section {
  padding: 40px 0 80px;
}

.list-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.list-grid .card--alt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.list-grid .card--alt:nth-child(even) .card__image {
  order: 2;
}

/* =====================================================
   CARD
   ===================================================== */
.card {
  position: relative;
}

.card__image {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--color-bg-gray);
  overflow: hidden;
  margin-bottom: 20px;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card__image img {
  transform: scale(1.05);
}

.card__placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  color: var(--color-light-gray);
}

.card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.card__text {
  font-size: 0.95rem;
  color: var(--color-light-gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.card__link {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--color-light-gray);
  transition: color 0.3s;
}

.card__link:hover {
  color: var(--color-black);
}

/* Card with overlay */
.card--overlay {
  position: relative;
}

.card--overlay .card__image {
  margin-bottom: 0;
}

.card--overlay .card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--color-white);
}

.card--overlay .card__title {
  color: var(--color-white);
}

.card--overlay .card__link {
  color: rgba(255,255,255,0.8);
}

/* =====================================================
   SLIDER SECTION
   ===================================================== */
.slider-section {
  padding: 80px 0;
}

.slider-section__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}

.slider-section__title {
  font-family: var(--font-heading);
  font-size: 2rem;
}

.slider-nav {
  display: flex;
  gap: 16px;
  visibility: visible;
}

.slider-nav__btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-black);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
  visibility: visible;
  opacity: 1;
}

.slider-nav__btn:hover {
  border-color: var(--color-black);
  background: var(--color-black);
  color: var(--color-white);
}

.slider-nav__btn {
  opacity: 1;
  pointer-events: auto;
}

.slider-nav__btn[aria-disabled="true"] {
  opacity: 0.3;
  cursor: not-allowed;
}

.slider-nav__btn[aria-disabled="true"]:hover {
  border-color: var(--color-border);
  background: var(--color-white);
  color: var(--color-black);
}

.slider-track {
  display: flex;
  gap: 30px;
  overflow: hidden;
}

.slider-track .card {
  flex: 0 0 calc((100% - 60px) / 3);
  min-width: 0;
}

/* =====================================================
   GALAXY BANNER
   ===================================================== */
.galaxy-banner {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.galaxy-banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.galaxy-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}

.galaxy-banner__quote {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 700px;
  padding: 0 40px;
}

.galaxy-banner__quote p {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.7;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
  padding: 80px 0;
}

.cta-section__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--color-border);
}

.cta-section__title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  line-height: 1.2;
}

.cta-section__email {
  font-size: 1.2rem;
  color: var(--color-light-gray);
}

/* =====================================================
   FOOTER CTA
   ===================================================== */
.footer-cta {
  padding: 80px 0;
}

.footer-cta__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--color-border);
}

.footer-cta__title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  line-height: 1.2;
  text-align: left;
}

.footer-cta__email {
  font-size: 1.2rem;
  color: var(--color-light-gray);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  padding: 60px 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer__col-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--color-black);
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  font-size: 1.1rem;
  color: #666666;
  transition: color 0.3s;
}

.footer__links a:hover {
  color: var(--color-black);
}

.footer__bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--color-border);
}

.footer__copyright,
.footer__notice {
  font-size: 0.85rem;
  color: var(--color-black);
}

/* =====================================================
   PAGINATION
   ===================================================== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
}

.pagination__arrow {
  font-size: 1.2rem;
  color: var(--color-light-gray);
  transition: color 0.3s;
}

.pagination__arrow:hover {
  color: var(--color-black);
}

.pagination__numbers {
  display: flex;
  gap: 8px;
}

.pagination__num {
  font-size: 0.9rem;
  color: var(--color-light-gray);
  transition: color 0.3s;
}

.pagination__num.active {
  color: var(--color-black);
}

.pagination__num:hover {
  color: var(--color-black);
}

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.about-hero {
  padding: 80px 0 40px;
  text-align: center;
}

.about-hero__quote-mark {
  font-size: 8rem;
  line-height: 1;
  font-family: var(--font-heading);
  display: block;
  margin-bottom: -30px;
}

.about-hero__quote {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 1.4;
}

.about-hero__author {
  font-size: 0.95rem;
  color: var(--color-black);
  font-weight: 600;
}

.about-photo {
  padding: 40px 0;
  text-align: center;
}

.about-photo img {
  max-width: 350px;
  width: 100%;
  margin: 0 auto;
}

.about-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 0 60px;
}

.about-content__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-style: italic;
  text-align: center;
  margin-bottom: 40px;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 24px;
  text-align: justify;
}

.about-social {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 40px 0 60px;
}

.about-social a {
  font-size: 0.95rem;
  color: var(--color-black);
  transition: opacity 0.3s;
}

.about-social a:hover {
  opacity: 0.6;
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-section {
  padding: 40px 0 80px;
}

.contact-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info__title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.contact-info__text {
  color: var(--color-light-gray);
  margin-bottom: 30px;
}

.contact-info__email {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #666666;
}

.contact-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-social a {
  color: #666666;
  transition: color 0.3s;
}

.contact-social a:hover {
  color: var(--color-black);
}

/* Contact Form */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form__group {
  position: relative;
}

.contact-form__group--full {
  grid-column: span 2;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 16px 0;
  border: none;
  border-bottom: 1px solid var(--color-border);
  background: none;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: var(--color-black);
}

.contact-form__textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form__checkboxes {
  grid-column: span 2;
  display: flex;
  gap: 30px;
  margin: 10px 0;
}

.contact-form__checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--color-light-gray);
  cursor: pointer;
}

.contact-form__checkbox input[type="checkbox"] {
  display: none;
}

.contact-form__checkbox .checkmark {
  width: 18px;
  height: 18px;
  border: 1px solid var(--color-light-gray);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.contact-form__checkbox .checkmark::after {
  content: '';
  width: 5px;
  height: 9px;
  border: solid var(--color-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
  opacity: 0;
  transition: opacity 0.2s;
}

.contact-form__checkbox input[type="checkbox"]:checked + .checkmark {
  background: var(--color-black);
  border-color: var(--color-black);
}

.contact-form__checkbox input[type="checkbox"]:checked + .checkmark::after {
  opacity: 1;
}

.contact-form__checkbox a {
  color: var(--color-light-gray);
  text-decoration: underline;
}

.contact-form__checkbox a:hover {
  color: var(--color-black);
}

.contact-form__submit {
  grid-column: span 2;
  justify-self: start;
  padding: 14px 40px;
  background: var(--color-black);
  color: var(--color-white);
  border: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form__submit:hover {
  background: #333;
}

/* =====================================================
   DETAIL PAGE
   ===================================================== */
.detail-header {
  padding: 60px 0 40px;
}

.detail-header__meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--color-light-gray);
}

.detail-header__title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.detail-header__image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  margin-bottom: 40px;
}

.detail-content {
  max-width: 700px;
  margin: 0 auto;
  padding-bottom: 80px;
}

.detail-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #444;
}

/* =====================================================
   SEARCH OVERLAY (Beyaz Şeffaf)
   ===================================================== */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9998;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-overlay__inner {
  width: 100%;
  max-width: 600px;
  padding: 0 20px;
}

.search-overlay__form {
  position: relative;
}

.search-overlay__input {
  width: 100%;
  padding: 20px 60px 20px 20px;
  font-size: 1.3rem;
  font-family: var(--font-body);
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  color: #1a1a1a;
  outline: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: border-color 0.3s ease;
}

.search-overlay__input:focus {
  border-color: #1a1a1a;
}

.search-overlay__input::placeholder {
  color: #999;
}

.search-overlay__submit {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #666;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 8px;
}

.search-overlay__submit:hover {
  color: #1a1a1a;
}

.search-overlay__close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 50%;
  color: #666;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.search-overlay__close:hover {
  border-color: #1a1a1a;
  color: #1a1a1a;
}

.search-overlay__results {
  margin-top: 20px;
  max-height: 60vh;
  overflow-y: auto;
}

.search-result__item {
  display: block;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.search-result__item:hover {
  border-color: #1a1a1a;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.search-result__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.search-result__type {
  font-size: 0.8rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.search-result__excerpt {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

.search-result__empty {
  text-align: center;
  padding: 40px;
  color: #666;
  font-size: 1rem;
}

.search-trigger {
  background: none;
  border: none;
  color: var(--color-light-gray);
  font-size: 1rem;
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s ease;
}

.search-trigger:hover {
  color: var(--color-black);
}

/* =====================================================
   COOKIE CONSENT
   ===================================================== */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  max-width: 380px;
  width: 100%;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  animation: cookieSlideIn 0.4s ease;
}

@keyframes cookieSlideIn {
  from { transform: translateX(-120%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.cookie-consent__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-consent__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.cookie-consent__text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.cookie-consent__text a {
  color: #fff;
  text-decoration: underline;
}

.cookie-consent__actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  flex: 1;
}

.cookie-btn--primary {
  background: #fff;
  color: #1a1a1a;
}

.cookie-btn--primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.cookie-btn--secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn--secondary:hover {
  border-color: #fff;
  color: #fff;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .blog-section__inner {
    grid-template-columns: 1fr;
  }
  
  .blog-sidebar {
    display: flex;
    gap: 40px;
    align-items: flex-start;
  }
  
  .projects-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  
  .projects-grid__left {
    grid-row: 1 / 3;
    grid-column: 1;
  }
  
  .projects-grid__left .card__image {
    aspect-ratio: 1/1;
    height: 100%;
  }
  
  .projects-grid__right {
    grid-row: 1 / 3;
    grid-column: 2;
    flex-direction: column;
  }
  
  .projects-grid__right .card {
    grid-template-columns: 1fr 1fr;
    flex: 1 1 0;
  }

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  
  .logo img {
    height: 50px;
    width: 50px;
  }
  
  .header__right {
    gap: 12px;
  }
  
  .lang-switch {
    font-size: 0.75rem;
  }
  
  .nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .hero__quote {
    font-size: 1.3rem;
  }
  
  .page-header__title {
    font-size: 2rem;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  
  .projects-grid__left {
    grid-row: auto;
    grid-column: 1;
  }
  
  .projects-grid__left .card__image {
    aspect-ratio: 4/3;
    height: auto;
  }
  
  .projects-grid__right {
    grid-row: auto;
    grid-column: 1;
    flex-direction: column;
  }
  
  .projects-grid__right .card {
    grid-template-columns: 1fr;
    flex: none;
  }
  
  .projects-section__footer {
    text-align: center;
  }
  
  .slider-track .card {
    flex: 0 0 calc((100% - 30px) / 2);
  }
  
  .list-grid .card--alt {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .list-grid .card--alt:nth-child(even) .card__image {
    order: 0;
  }
  
  .cta-section__inner,
  .footer-cta__inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-cta__title {
    text-align: center;
  }
  
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-section__inner {
    grid-template-columns: 1fr;
  }
  
  .search-overlay {
    padding-top: 80px;
  }
  
  .search-overlay__input {
    font-size: 1rem;
    padding: 16px 50px 16px 16px;
  }
}

@media (max-width: 480px) {
  .slider-track .card {
    flex: 0 0 100%;
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-consent {
    bottom: 10px;
    left: 10px;
    right: 10px;
    max-width: none;
    width: auto;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .contact-form__group--full,
  .contact-form__checkboxes,
  .contact-form__submit {
    grid-column: span 1;
  }
}




/* Blog icerigindeki basliklara anchor offset */
.detail-content h2[id],
.detail-content h3[id],
.detail-content h4[id] {
  scroll-margin-top: 100px;
}
