/*
Theme Name: Hande Şahin Law
Theme URI: https://example.com
Author: Hande Şahin
Author URI: https://example.com
Description: Modern, clean one-page layout for a law firm with hero, services, FAQ and CTA sections.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: handesahin-law
*/

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Helvetica Neue", Arial, sans-serif;
  color: #0f172a;
  background: linear-gradient(135deg, #0a0f1a 0%, #0f172a 50%, #0a0f1a 100%);
}

/* WordPress Gutenberg Columns Düzeltmeleri */
.wp-block-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin: 24px 0;
}

.wp-block-column {
  min-width: 0;
  word-break: break-word;
  overflow-wrap: break-word;
}

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

.wp-block-columns.has-3-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wp-block-columns.has-4-columns {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wp-block-columns.has-5-columns {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.wp-block-columns.has-6-columns {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

/* Grid container'lar için genel düzeltme */
[class*="grid"],
[class*="columns"] {
  display: grid;
  box-sizing: border-box;
}

/* Responsive columns */
@media (max-width: 960px) {
  .wp-block-columns.has-3-columns,
  .wp-block-columns.has-4-columns,
  .wp-block-columns.has-5-columns,
  .wp-block-columns.has-6-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .wp-block-columns {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  
  .wp-block-columns.has-2-columns,
  .wp-block-columns.has-3-columns,
  .wp-block-columns.has-4-columns,
  .wp-block-columns.has-5-columns,
  .wp-block-columns.has-6-columns {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

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

.page-wrapper {
  min-height: 100vh;
  background: radial-gradient(
    ellipse at top,
    #4a0f1e 0%,     /* Bordo vurgu */
    #6e7075 20%,    /* Bordo-gri geçiş */
    #5f5f62 45%,    /* Koyu gri */
    #838386 70%,    /* Çok koyu gri */
    #59595e 100%   ); /* Neredeyse siyah */
  color: #e5e7eb;
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 13px;
  color: #facc15;
  display: flex;
  align-items: center;
}

.navbar-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.navbar-logo img {
  max-height: 60px;
  width: auto;
  height: auto;
  display: block;
}

.navbar-logo-text {
  color: #facc15;
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
}

/* WordPress Menü Stilleri */
.navbar-nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.navbar-nav li {
  margin: 0;
  padding: 0;
  position: relative;
}

.navbar-nav > ul > li {
  position: relative;
}

.navbar-nav a {
  color: #e5e7eb;
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
  padding: 8px 0;
  white-space: nowrap;
}

.navbar-nav a:hover {
  color: #facc15;
}

.navbar-nav .current-menu-item > a,
.navbar-nav .current_page_item > a {
  color: #facc15;
}

/* Dropdown Alt Menü Stilleri */
.navbar-nav ul ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 12px;
  padding: 8px 0;
  margin-top: 8px;
  min-width: 220px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  flex-direction: column;
  gap: 0;
  z-index: 1000;
}

.navbar-nav ul li:hover > ul,
.navbar-nav ul li:focus-within > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar-nav ul ul li {
  margin: 0;
  padding: 0;
  width: 100%;
}

.navbar-nav ul ul a {
  padding: 12px 20px;
  color: #e5e7eb;
  font-size: 14px;
  border-radius: 0;
  transition: all 0.2s ease;
  position: relative;
}

.navbar-nav ul ul a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: #facc15;
  transition: height 0.2s ease;
  border-radius: 0 2px 2px 0;
}

.navbar-nav ul ul a:hover {
  color: #facc15;
  background: rgba(250, 204, 21, 0.1);
  padding-left: 24px;
}

.navbar-nav ul ul a:hover::before {
  height: 60%;
}

.navbar-nav ul ul .current-menu-item > a,
.navbar-nav ul ul .current_page_item > a {
  color: #facc15;
  background: rgba(250, 204, 21, 0.1);
  padding-left: 24px;
}

.navbar-nav ul ul .current-menu-item > a::before,
.navbar-nav ul ul .current_page_item > a::before {
  height: 60%;
}

/* Alt menüdeki alt menü (3. seviye) */
.navbar-nav ul ul ul {
  top: 0;
  left: 100%;
  margin-top: 0;
  margin-left: 8px;
}

.navbar-nav ul ul ul::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 8px 6px 0;
  border-color: transparent rgba(148, 163, 184, 0.3) transparent transparent;
}

/* Dropdown ok işareti */
.navbar-nav > ul > li.menu-item-has-children > a::after {
  content: '▼';
  font-size: 8px;
  margin-left: 6px;
  display: inline-block;
  transition: transform 0.3s ease;
  vertical-align: middle;
  opacity: 0.7;
}

.navbar-nav > ul > li.menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
  opacity: 1;
}

.navbar-nav ul ul li.menu-item-has-children > a::after {
  content: '▶';
  font-size: 8px;
  margin-left: auto;
  float: right;
  opacity: 0.7;
}

.navbar-nav ul ul li.menu-item-has-children:hover > a::after {
  opacity: 1;
}

.navbar-actions {
  display: flex;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease,
    color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: #facc15;
  color: #111827;
  box-shadow: 0 18px 45px rgba(250, 204, 21, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 55px rgba(234, 179, 8, 0.45);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.5);
  color: #e5e7eb;
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.9);
}

.hero {
  max-width: 1200px;
  margin: 40px auto 80px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.45);
  color: #fde68a;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-heading-large {
  font-size: 52px;
  line-height: 1.05;
  font-weight: 800;
  color: #f9fafb;
  margin-bottom: 6px;
}

.hero-heading-script {
  font-size: 40px;
  font-family: "Times New Roman", Georgia, "Playfair Display", serif;
  font-style: italic;
  color: #facc15;
  margin-bottom: 18px;
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: #cbd5f5;
  max-width: 520px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.hero-meta {
  display: flex;
  gap: 24px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
}

.hero-meta strong {
  display: block;
  font-size: 18px;
  color: #fde68a;
  letter-spacing: 0;
}

.hero-media-wrapper {
  position: relative;
}

.hero-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1a2332 25%, #1e293b 50%, #1a2332 75%, #0a0f1a 100%);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.85);
}

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

.hero-stats {
  position: absolute;
  left: 26px;
  bottom: 22px;
  right: 26px;
  padding: 14px 20px;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.95);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #e5e7eb;
}

.hero-stat {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
}

.hero-stat strong {
  display: block;
  font-size: 20px;
  letter-spacing: 0;
  color: #fde68a;
}

.section {
  background: #f3f4f6;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
}

.about-section {
  background: #f9fafb;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.35fr);
  gap: 56px;
  align-items: center;
}

.about-media {
  display: flex;
  justify-content: center;
}

.about-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.2);
  background: linear-gradient(135deg, #0f172a 0%, #1a2332 25%, #1e293b 50%, #1a2332 75%, #0a0f1a 100%);
}

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

.about-stats {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  padding: 14px 18px;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.98);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.about-content {
  max-width: 620px;
}

.about-title {
  font-size: 38px;
  font-weight: 800;
  color: #0f172a;
  margin: 6px 0 16px;
}

.about-text {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 10px;
}

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

.section-eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #a16207;
  margin-bottom: 12px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  color: #6b7280;
  max-width: 560px;
  margin: 0 auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* Testimonials Section - Anasayfa tasarımına uygun */
/* new-services-section ve new-services-grid stillerini kullanıyor */

.testimonial-card {
  /* new-service-card stillerini kullanıyor */
  position: relative;
  text-align: left;
}

.testimonial-card .new-service-card-bg-icon .material-symbols-outlined {
  color: var(--gray-200);
}

.testimonial-card:hover .new-service-card-bg-icon .material-symbols-outlined {
  color: var(--gray-300);
}

.testimonial-rating {
  color: #facc15;
  font-size: 18px;
  margin-bottom: 16px;
  line-height: 1;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-700);
  margin: 0 0 24px 0;
  font-style: italic;
}

.testimonial-meta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

.testimonial-name {
  font-weight: 700;
  color: var(--gray-900);
  font-size: 14px;
  margin-bottom: 4px;
}

.testimonial-label {
  font-size: 12px;
  color: var(--gray-600);
  margin: 0;
}

.gmaps-reviews-block {
  margin-top: 64px;
  padding-top: 0px;
  border-top: 1px solid var(--gray-200);
}

.gmaps-reviews-header {
  text-align: center;
  max-width: 768px;
  margin: 0 auto 48px;
}

.gmaps-reviews-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.gmaps-reviews-subtitle {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

.gmaps-reviews-content {
  min-height: 120px;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.gmaps-placeholder {
  font-size: 14px;
  color: var(--gray-500);
  text-align: center;
}

@media (max-width: 768px) {
  .gmaps-reviews-block {
    margin-top: 48px;
    padding-top: 48px;
  }
  
  .gmaps-reviews-title {
    font-size: 24px;
  }
  
  .gmaps-reviews-content {
    padding: 24px;
  }
}

.card {
  background: white;
  border-radius: 24px;
  padding: 28px 26px 26px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(148, 163, 184, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(234, 179, 8, 0.1);
  color: #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}

.card-body {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
}

.card-link {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #a16207;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.card-link::after {
  content: "→";
  font-size: 14px;
}

/* FAQ Section - Anasayfa tasarımına uygun */
/* new-services-section stillerini kullanıyor */

.faq-layout {
  max-width: 800px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: white;
  border-radius: 12px;
  padding: 0;
  border: 1px solid var(--gray-200);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-top-color: var(--primary);
  transform: translateY(-2px);
}

.faq-header {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.faq-question {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-900);
  margin: 0;
  flex: 1;
  line-height: 1.4;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: var(--gray-50);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-toggle .material-symbols-outlined {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-item:hover .faq-toggle {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  border-top: 1px solid var(--gray-200);
  transition: max-height 0.3s ease, opacity 0.3s ease, padding-top 0.3s ease, padding-bottom 0.3s ease;
  opacity: 0;
}

.faq-answer p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
  margin: 0;
}

.faq-item.is-open {
  border-top-color: var(--primary);
}

.faq-item.is-open .faq-answer {
  max-height: 500px;
  padding-top: 16px;
  padding-bottom: 20px;
  opacity: 1;
}

.faq-item.is-open .faq-toggle {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.faq-item.is-open .faq-toggle .material-symbols-outlined {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .faq-layout {
    max-width: 100%;
  }
  
  .faq-header {
    padding: 16px 20px;
  }
  
  .faq-question {
    font-size: 16px;
  }
  
  .faq-answer {
    padding: 0 20px;
  }
  
  .faq-item.is-open .faq-answer {
    padding-top: 12px;
    padding-bottom: 16px;
  }
}

/* Eski contact-section CSS kaldırıldı - artık kullanılmıyor */

.footer-bar {
  background: linear-gradient(180deg, #0a0f1a 0%, #080c14 50%, #050810 100%);
  border-top: 1px solid rgba(51, 65, 85, 0.9);
}

.site-footer {
  background: linear-gradient(180deg, #0f172a 0%, #0d141f 30%, #0a0f1a 70%, #050810 100%);
  color: #e5e7eb;
}

.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 24px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 40px;
}

.footer-column {
  font-size: 14px;
}

.footer-logo {
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 14px;
  color: #facc15;
}

.footer-logo-image {
  max-width: 200px;
  height: auto;
  display: block;
  margin-bottom: 14px;
}

.footer-logo a {
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-logo a:hover {
  opacity: 0.8;
}

.footer-text {
  color: #9ca3af;
  line-height: 1.7;
  max-width: 360px;
}

.footer-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #9ca3af;
}

.footer-links a {
  color: inherit;
}

.footer-links a:hover {
  color: #facc15;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #9ca3af;
  font-size: 13px;
}

.footer-chat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #facc15;
  color: #111827;
  font-size: 13px;
  font-weight: 600;
}

.footer-chat-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-media-wrapper {
    order: -1;
  }

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

  .faq-layout {
    grid-template-columns: minmax(0, 1fr);
  }

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

/* Mobil Menü Toggle Butonu */
.navbar-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.5);
  border-radius: 8px;
  padding: 8px 12px;
  color: #e5e7eb;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.2s ease;
}

.navbar-toggle:hover {
  background: rgba(15, 23, 42, 0.9);
  border-color: #facc15;
  color: #facc15;
}

@media (max-width: 720px) {
  .navbar {
    padding-inline: 16px;
    flex-wrap: wrap;
  }
  
  .navbar-toggle {
    display: block;
    order: 2;
  }
  
  .navbar-nav {
    display: none;
    width: 100%;
    order: 3;
    margin-top: 16px;
    padding: 16px 0;
    border-top: 1px solid rgba(148, 163, 184, 0.3);
  }
  
  .navbar-nav.is-active {
    display: block;
  }
  
  .navbar-nav ul {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  
  .navbar-nav > ul > li {
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  }
  
  .navbar-nav > ul > li:last-child {
    border-bottom: none;
  }
  
  .navbar-nav a {
    padding: 14px 16px;
    width: 100%;
  }
  
  /* Mobil menü için dropdown stilleri */
  .navbar-nav ul ul {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(15, 23, 42, 0.5);
    margin-top: 0;
    margin-left: 0;
    padding-left: 20px;
    border-radius: 0;
    min-width: auto;
    width: 100%;
  }
  
  .navbar-nav ul ul a {
    padding: 12px 20px;
    font-size: 13px;
  }
  
  .navbar-nav ul ul a::before {
    display: none;
  }
  
  .navbar-nav > ul > li.menu-item-has-children > a::after {
    transform: none;
    float: right;
  }
  
  .navbar-actions {
    display: none;
    order: 1;
    margin-left: auto;
    margin-right: 12px;
  }
  
  .navbar-actions .btn-ghost {
    display: none;
  }

  .hero {
    padding-inline: 16px;
    margin-top: 28px;
  }

  .hero-heading-large {
    font-size: 36px;
  }

  .hero-heading-script {
    font-size: 28px;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-inner {
    padding-inline: 16px;
  }

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

  .contact-split {
    border-radius: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-right {
    padding: 32px 20px 36px;
  }

  .contact-info {
    padding: 32px 20px;
  }

  .site-footer-inner {
    padding-inline: 16px;
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    padding-inline: 16px;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

/* Hizmet İçerik Sayfası Stilleri */
.service-detail-hero {
  background: #f9fafb;
  color: #0f172a;
}

.service-detail-hero .section-inner {
  padding-top: 40px;
  padding-bottom: 40px;
}

.breadcrumb {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb a {
  color: #a16207;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #f59e0b;
  text-decoration: underline;
}

.breadcrumb span {
  color: #9ca3af;
}

.service-detail-header {
  text-align: left;
}

.service-detail-hero .section-title {
  color: #0f172a;
  margin-bottom: 12px;
}

.service-detail-hero .section-subtitle {
  color: #4b5563;
  margin-left: 0;
  text-align: left;
}

.service-detail-content {
  background: #ffffff;
  color: #0f172a;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.service-detail-main {
  max-width: 800px;
  margin: 0;
}

.service-article {
  background: transparent;
}

.service-article-content {
  font-size: 16px;
  line-height: 1.8;
  color: #1f2937;
}

.service-article-content h2 {
  font-size: 28px;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 48px;
  margin-bottom: 20px;
  line-height: 1.35;
  letter-spacing: -0.015em;
  position: relative;
  padding-bottom: 14px;
}

.service-article-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #800020 0%, rgba(128, 0, 32, 0.3) 100%);
  border-radius: 2px;
}

.service-article-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: #111827;
  margin-top: 32px;
  margin-bottom: 12px;
}

.service-article-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin-top: 24px;
  margin-bottom: 10px;
}

.service-article-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 16px;
}

.service-article-content ul,
.service-article-content ol {
  margin: 16px 0;
  padding-left: 24px;
  color: #374151;
}

.service-article-content li {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 8px;
}

.service-article-content a {
  color: #a16207;
  text-decoration: underline;
}

.service-article-content a:hover {
  color: #f59e0b;
}

.service-article-content strong {
  font-weight: 600;
  color: #0f172a;
}

.service-article-content blockquote {
  border-left: 4px solid #facc15;
  padding-left: 20px;
  margin: 24px 0;
  font-style: italic;
  color: #4b5563;
}

.service-article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 24px 0;
}

@media (max-width: 720px) {
  .service-detail-main {
    max-width: 100%;
  }
  
  .service-article-content h2 {
    font-size: 24px;
  }
  
  .service-article-content h3 {
    font-size: 20px;
  }
}

/* Blog Arşiv Sayfası Stilleri */
.blog-archive-hero {
  background: #f9fafb;
  color: #0f172a;
}

.blog-archive-hero .section-inner {
  padding-top: 40px;
  padding-bottom: 40px;
}

.blog-archive-header {
  text-align: left;
}

.blog-archive-hero .section-title {
  color: #0f172a;
  margin-bottom: 12px;
}

.blog-archive-hero .section-subtitle {
  color: #4b5563;
  margin-left: 0;
  text-align: left;
}

.blog-archive-content {
  background: #ffffff;
  color: #0f172a;
}

.blog-archive-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: start;
}

.blog-archive-main {
  max-width: 100%;
}

/* Kategori Arşiv Üst İçerik */
.category-archive-top-content {
  margin-bottom: 40px;
  padding: 24px;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
}

.category-archive-top-content p {
  margin-bottom: 16px;
  line-height: 1.7;
  color: #475569;
  font-size: 16px;
}

.category-archive-top-content p:last-child {
  margin-bottom: 0;
}

.category-archive-top-content h2,
.category-archive-top-content h3,
.category-archive-top-content h4 {
  margin-top: 24px;
  margin-bottom: 12px;
  color: #1e293b;
  font-weight: 600;
}

.category-archive-top-content h2 {
  font-size: 26px;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 32px;
  margin-bottom: 16px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 12px;
}

.category-archive-top-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 2px;
  background: linear-gradient(90deg, #800020 0%, rgba(128, 0, 32, 0.3) 100%);
  border-radius: 2px;
}

.category-archive-top-content h3 {
  font-size: 20px;
}

.category-archive-top-content h4 {
  font-size: 18px;
}

.category-archive-top-content ul,
.category-archive-top-content ol {
  margin: 16px 0;
  padding-left: 24px;
}

.category-archive-top-content li {
  margin-bottom: 8px;
  color: #475569;
}

.category-archive-top-content a {
  color: #2563eb;
  text-decoration: underline;
}

.category-archive-top-content a:hover {
  color: #1d4ed8;
}

.category-archive-top-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 16px 0;
}

.category-archive-top-content blockquote {
  margin: 20px 0;
  padding: 16px 20px;
  border-left: 4px solid #3b82f6;
  background: #f1f5f9;
  border-radius: 4px;
  font-style: italic;
  color: #475569;
}

.category-archive-top-content blockquote p {
  margin-bottom: 0;
}

.category-archive-top-content strong,
.category-archive-top-content b {
  font-weight: 600;
  color: #1e293b;
}

.category-archive-top-content em,
.category-archive-top-content i {
  font-style: italic;
}

.category-archive-top-content code {
  background: #e2e8f0;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 14px;
  color: #1e293b;
}

.category-archive-top-content pre {
  background: #f1f5f9;
  padding: 16px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 16px 0;
}

.category-archive-top-content pre code {
  background: transparent;
  padding: 0;
}

.category-archive-top-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.category-archive-top-content table th,
.category-archive-top-content table td {
  padding: 12px;
  border: 1px solid #e2e8f0;
  text-align: left;
}

.category-archive-top-content table th {
  background: #f8fafc;
  font-weight: 600;
  color: #1e293b;
}

.category-archive-top-content table tr:nth-child(even) {
  background: #f8fafc;
}

.category-archive-top-content hr {
  border: none;
  border-top: 2px solid #e2e8f0;
  margin: 24px 0;
}

.category-archive-top-content .wp-block-image {
  margin: 20px 0;
}

.category-archive-top-content .wp-block-quote {
  margin: 20px 0;
  padding: 16px 20px;
  border-left: 4px solid #3b82f6;
  background: #f1f5f9;
  border-radius: 4px;
}

.category-archive-top-content .wp-block-group {
  margin: 20px 0;
}

@media (max-width: 768px) {
  .category-archive-top-content {
    padding: 20px;
    margin-bottom: 32px;
  }
  
  .category-archive-top-content p {
    font-size: 15px;
  }
  
  .category-archive-top-content h2 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 14px;
  }
  
  .category-archive-top-content h2::after {
    width: 40px;
  }
  
  .category-archive-top-content h3 {
    font-size: 18px;
  }
  
  .category-archive-top-content h4 {
    font-size: 16px;
  }
}

.blog-archive-sidebar {
  position: sticky;
  top: 24px;
  align-self: start;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.blog-post-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(229, 231, 235, 0.8);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.blog-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.blog-post-thumbnail {
  width: 100%;
  overflow: hidden;
  background: #f3f4f6;
}

.blog-post-thumbnail img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.blog-post-card:hover .blog-post-thumbnail img {
  transform: scale(1.05);
}

.blog-post-thumbnail-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.blog-post-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.blog-post-date {
  color: #6b7280;
}

.blog-post-category a {
  color: #a16207;
  text-decoration: none;
  font-weight: 500;
  padding: 4px 10px;
  background: rgba(250, 204, 21, 0.1);
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
}

.blog-post-category a:hover {
  background: rgba(250, 204, 21, 0.2);
  color: #f59e0b;
}

.blog-post-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.blog-post-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-post-title a:hover {
  color: #a16207;
}

.blog-post-excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
  margin: 0 0 16px 0;
  flex-grow: 1;
}

.blog-post-link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #a16207;
  text-decoration: none;
  margin-top: auto;
  transition: color 0.2s ease, gap 0.2s ease;
  gap: 4px;
}

.blog-post-link:hover {
  color: #f59e0b;
  gap: 8px;
}

.blog-pagination {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(229, 231, 235, 0.8);
}

.blog-pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #4b5563;
  text-decoration: none;
  background: #f9fafb;
  border: 1px solid rgba(229, 231, 235, 0.8);
  transition: all 0.2s ease;
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background: #facc15;
  color: #0f172a;
  border-color: #facc15;
}

.blog-pagination .page-numbers.prev,
.blog-pagination .page-numbers.next {
  font-weight: 600;
}

.blog-no-posts {
  text-align: center;
  padding: 60px 20px;
  max-width: 500px;
  margin: 0 auto;
}

.blog-no-posts h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.blog-no-posts p {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 24px;
}

@media (max-width: 960px) {
  .blog-archive-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
  
  .blog-archive-sidebar {
    position: static;
  }
  
  .blog-posts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (max-width: 720px) {
  .blog-archive-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
  
  .blog-archive-sidebar {
    position: static;
  }
  
  .blog-posts-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
  
  .blog-post-thumbnail img {
    height: 180px;
  }
  
  .blog-post-content {
    padding: 20px;
  }
  
  .blog-post-title {
    font-size: 18px;
  }
}

/* Blog Yazı Detay Sayfası Stilleri */
.blog-single-hero {
  background: #f9fafb;
  color: #0f172a;
}

.blog-single-hero .section-inner {
  padding-top: 40px;
  padding-bottom: 40px;
}

.blog-single-header {
  text-align: left;
}

.blog-single-category {
  margin-bottom: 16px;
}

.blog-single-category a {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(250, 204, 21, 0.1);
  color: #a16207;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.blog-single-category a:hover {
  background: rgba(250, 204, 21, 0.2);
  color: #f59e0b;
}

.blog-single-title {
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin: 0 0 24px 0;
}

.blog-single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(229, 231, 235, 0.8);
  font-size: 14px;
}

.blog-single-author,
.blog-single-date,
.blog-single-updated,
.blog-single-tags {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-meta-label {
  color: #6b7280;
  font-weight: 500;
}

.blog-meta-value {
  color: #1f2937;
  font-weight: 500;
}

.blog-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(250, 204, 21, 0.1);
  color: #a16207;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.blog-tag:hover {
  background: rgba(250, 204, 21, 0.2);
  color: #f59e0b;
}

.blog-single-featured-image {
  background: #ffffff;
  padding: 0;
}

.blog-single-featured-image .section-inner {
  padding: 0;
  max-width: 100%;
}

.blog-featured-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 500px;
  object-fit: cover;
}

.blog-single-content {
  background: #ffffff;
  color: #0f172a;
}

.blog-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: start;
}

.blog-single-main {
  max-width: 100%;
}

.blog-single-article {
  background: transparent;
}

.blog-single-article-content {
  font-size: 18px;
  line-height: 1.9;
  color: #1f2937;
}

.blog-single-article-content p {
  font-size: 18px;
  line-height: 1.9;
  color: #374151;
  margin-bottom: 24px;
}

.blog-single-article-content h2,
.article-content h2 {
  font-size: 22px;
  font-weight: 400;
  color: #1a1a1a;
  margin-top: 56px;
  margin-bottom: 24px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: 16px;
}

.blog-single-article-content h2::after,
.article-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #800020 0%, rgba(128, 0, 32, 0.3) 100%);
  border-radius: 2px;
}

.blog-single-article-content h3 {
  font-size: 26px;
  font-weight: 600;
  color: #111827;
  margin-top: 40px;
  margin-bottom: 16px;
  line-height: 1.4;
}

.blog-single-article-content h4 {
  font-size: 22px;
  font-weight: 600;
  color: #1f2937;
  margin-top: 32px;
  margin-bottom: 12px;
}

.blog-single-article-content ul,
.blog-single-article-content ol {
  margin: 24px 0;
  padding-left: 28px;
  color: #374151;
}

.blog-single-article-content li {
  font-size: 18px;
  line-height: 1.9;
  color: #374151;
  margin-bottom: 12px;
}

.blog-single-article-content a {
  color: #a16207;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.blog-single-article-content a:hover {
  color: #f59e0b;
}

.blog-single-article-content strong {
  font-weight: 600;
  color: #0f172a;
}

.blog-single-article-content blockquote {
  border-left: 4px solid #facc15;
  padding-left: 24px;
  margin: 32px 0;
  font-style: italic;
  color: #4b5563;
  font-size: 20px;
  line-height: 1.7;
}

.blog-single-article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 32px 0;
}

.blog-single-article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
}

.blog-single-article-content table th,
.blog-single-article-content table td {
  padding: 12px;
  border: 1px solid rgba(229, 231, 235, 0.8);
  text-align: left;
}

.blog-single-article-content table th {
  background: #f9fafb;
  font-weight: 600;
  color: #0f172a;
}

.blog-page-links {
  margin: 32px 0;
  padding: 20px 0;
  border-top: 1px solid rgba(229, 231, 235, 0.8);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.blog-page-links-title {
  font-weight: 600;
  color: #0f172a;
  margin-right: 12px;
}

.blog-page-links .page-numbers {
  display: inline-block;
  padding: 6px 12px;
  margin: 0 4px;
  background: #f9fafb;
  color: #a16207;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.blog-page-links .page-numbers:hover,
.blog-page-links .page-numbers.current {
  background: #facc15;
  color: #0f172a;
}

.blog-single-footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(229, 231, 235, 0.8);
}

.blog-single-footer-section {
  margin-bottom: 24px;
}

.blog-single-footer-section h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
}

.blog-categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-category {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(250, 204, 21, 0.1);
  color: #a16207;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.blog-category:hover {
  background: rgba(250, 204, 21, 0.2);
  color: #f59e0b;
}

/* Avukat Kartı */
.author-card {
  margin-top: 48px;
  padding: 32px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}

.author-card-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
}

.author-card-image {
  flex-shrink: 0;
}

.author-card-image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffffff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
}

.author-card-info {
  flex: 1;
}

.author-card-name {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 8px 0;
}

.author-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #3b82f6;
  margin: 0 0 12px 0;
}

.author-card-description {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  margin: 0 0 20px 0;
}

.author-card-button {
  display: inline-block;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .author-card {
    padding: 24px;
    margin-top: 32px;
  }

  .author-card-content {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .author-card-image {
    margin: 0 auto;
  }

  .author-card-image img {
    width: 100px;
    height: 100px;
  }

  .author-card-name {
    font-size: 20px;
  }

  .author-card-title {
    font-size: 14px;
  }

  .author-card-description {
    font-size: 14px;
  }
}

.blog-post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(229, 231, 235, 0.8);
}

.blog-nav-prev,
.blog-nav-next {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-nav-next {
  text-align: right;
}

.blog-nav-label {
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
}

.blog-nav-title {
  font-size: 16px;
  font-weight: 600;
  color: #a16207;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-nav-title:hover {
  color: #f59e0b;
}

.blog-related-posts {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(229, 231, 235, 0.8);
}

.blog-related-title {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 24px;
}

.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.blog-related-card {
  background: #f9fafb;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}

.blog-related-thumbnail {
  width: 100%;
  overflow: hidden;
}

.blog-related-thumbnail img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.blog-related-content {
  padding: 16px;
}

.blog-related-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.blog-related-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-related-card-title a:hover {
  color: #a16207;
}

.blog-related-date {
  font-size: 12px;
  color: #6b7280;
}

.blog-single-sidebar {
  position: sticky;
  top: 24px;
  align-self: start;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}

.sidebar-card {
  background: #f9fafb;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid rgba(229, 231, 235, 0.8);
}

.sidebar-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 16px 0;
}

.sidebar-categories,
.sidebar-posts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-categories li,
.sidebar-posts li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}

.sidebar-categories li:last-child,
.sidebar-posts li:last-child {
  border-bottom: none;
}

.sidebar-categories a,
.sidebar-posts a {
  color: #374151;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
  flex-grow: 1;
}

.sidebar-categories a:hover,
.sidebar-posts a:hover {
  color: #a16207;
}

.category-count {
  color: #9ca3af;
  font-size: 13px;
}

.sidebar-post-date {
  color: #9ca3af;
  font-size: 12px;
}

.sidebar-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: #374151;
}

.sidebar-contact a {
  color: #a16207;
  text-decoration: none;
}

.sidebar-contact a:hover {
  color: #f59e0b;
  text-decoration: underline;
}

.sidebar-contact-link {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 16px;
  background: #facc15;
  color: #0f172a;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

.sidebar-contact-link:hover {
  background: #f59e0b;
  text-decoration: none;
}

@media (max-width: 960px) {
  .blog-single-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
  
  .blog-single-sidebar {
    position: static;
  }
  
  .blog-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .blog-post-navigation {
    grid-template-columns: minmax(0, 1fr);
  }
  
  .blog-nav-next {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .blog-single-title {
    font-size: 32px;
  }
  
  .blog-single-article-content {
    font-size: 16px;
  }
  
  .blog-single-article-content p {
    font-size: 16px;
  }
  
  .blog-single-article-content h2,
  .article-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  
  .blog-single-article-content h2::after,
  .article-content h2::after {
    width: 50px;
    height: 2px;
  }
  
  .blog-single-article-content h3 {
    font-size: 22px;
  }
  
  .blog-single-meta {
    flex-direction: column;
    gap: 16px;
  }
  
  .blog-related-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  
  .blog-featured-img {
    max-height: 300px;
  }
}

/* Hakkımızda Sayfası Stilleri */
.about-page-hero {
  background: #f9fafb;
  color: #0f172a;
}

.about-page-hero .section-inner {
  padding-top: 40px;
  padding-bottom: 40px;
}

.about-page-header {
  text-align: left;
}

.about-page-hero .section-title {
  color: #0f172a;
  margin-bottom: 12px;
}

.about-page-hero .section-subtitle {
  color: #4b5563;
  margin-left: 0;
  text-align: left;
}

.about-page-featured-image {
  background: #ffffff;
  padding: 0;
}

.about-page-featured-image .section-inner {
  padding: 0;
  max-width: 100%;
}

.about-featured-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 500px;
  object-fit: cover;
}

.about-page-content {
  background: #ffffff;
  color: #0f172a;
}

.about-page-layout {
  max-width: 1000px;
  margin: 0 auto;
}

.about-page-main {
  max-width: 100%;
}

.about-page-article {
  background: transparent;
  margin-bottom: 60px;
}

.about-page-article-content {
  font-size: 18px;
  line-height: 1.9;
  color: #1f2937;
}

.about-page-article-content p {
  font-size: 18px;
  line-height: 1.9;
  color: #374151;
  margin-bottom: 24px;
}

.about-page-article-content h2 {
  font-size: 32px;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 56px;
  margin-bottom: 24px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: 16px;
}

.about-page-article-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #800020 0%, rgba(128, 0, 32, 0.3) 100%);
  border-radius: 2px;
}

.about-page-article-content h3 {
  font-size: 26px;
  font-weight: 600;
  color: #111827;
  margin-top: 40px;
  margin-bottom: 16px;
}

.about-page-article-content ul,
.about-page-article-content ol {
  margin: 24px 0;
  padding-left: 28px;
  color: #374151;
}

.about-page-article-content li {
  font-size: 18px;
  line-height: 1.9;
  color: #374151;
  margin-bottom: 12px;
}

.about-page-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin: 60px 0;
  padding: 40px 0;
  border-top: 1px solid rgba(229, 231, 235, 0.8);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.about-stat-card {
  text-align: center;
  padding: 20px;
}

.about-stat-number {
  font-size: 42px;
  font-weight: 800;
  color: #facc15;
  margin-bottom: 8px;
  line-height: 1;
}

.about-stat-label {
  font-size: 14px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.about-page-values {
  margin: 60px 0;
}

.about-values-title {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 32px;
  text-align: center;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.about-value-card {
  background: #f9fafb;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  border: 1px solid rgba(229, 231, 235, 0.8);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}

.about-value-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.about-value-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.about-value-text {
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
  margin: 0;
}

.about-page-mission {
  margin: 60px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  padding: 48px;
  background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
  border-radius: 20px;
}

.about-mission-content,
.about-vision-content {
  padding: 0;
}

.about-mission-title,
.about-vision-title {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.about-mission-text,
.about-vision-text {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
  margin: 0;
}

@media (max-width: 960px) {
  .about-page-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .about-values-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  
  .about-page-mission {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    padding: 32px;
  }
}

@media (max-width: 720px) {
  .about-page-article-content {
    font-size: 16px;
  }
  
  .about-page-article-content p {
    font-size: 16px;
  }
  
  .about-page-article-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  
  .about-page-article-content h2::after {
    width: 50px;
    height: 2px;
  }
  
  .about-page-article-content h3 {
    font-size: 22px;
  }
  
  .about-page-stats {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    padding: 32px 0;
  }
  
  .about-stat-number {
    font-size: 36px;
  }
  
  .about-values-title {
    font-size: 28px;
  }
  
  .about-value-card {
    padding: 24px;
  }
  
  .about-mission-title,
  .about-vision-title {
    font-size: 24px;
  }
  
  .about-featured-img {
    max-height: 300px;
  }
}

/* Çekmeköy Avukat Hizmetleri Bölümü */
/* Çekmeköy Services Section - Anasayfa tasarımına uygun */
/* new-services-section stillerini kullanıyor */

.cekmekoy-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.cekmekoy-service-card {
  /* new-service-card stillerini kullanıyor */
  text-align: left;
}

.cekmekoy-service-card .new-service-text {
  /* Açıklama metni varsa gösterilir */
  display: block;
}

@media (min-width: 768px) {
  .cekmekoy-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cekmekoy-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .cekmekoy-services-grid {
    grid-template-columns: 1fr;
  }
}

/* İletişim Sayfası - Artık inline style kullanılıyor, CSS kaldırıldı */

/* Contact Form 7 Stilleri */
.contact-form-7-wrapper {
  margin-top: 0;
}

/* Avukat Randevu Formu - Minimal Stiller */
.form-input-minimal {
  padding: 11px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 15px;
  transition: all 0.2s ease;
  background: #ffffff;
  color: #1a1a1a;
  font-family: inherit;
  width: 100%;
  box-sizing: border-box;
}

.form-input-minimal textarea {
  min-height: 100px;
  resize: vertical;
}

.form-input-minimal:focus {
  border-color: #800020;
  outline: none;
  box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.08);
}

.form-input-minimal::placeholder {
  color: #9ca3af;
}

.form-select-minimal {
  padding: 11px 14px;
  padding-right: 36px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 15px;
  transition: all 0.2s ease;
  background: #ffffff;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  color: #1a1a1a;
  font-family: inherit;
  width: 100%;
  box-sizing: border-box;
}

.form-select-minimal:focus {
  border-color: #800020;
  outline: none;
  box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.08);
}

.form-date-minimal {
  position: relative;
  color-scheme: light;
}

.form-date-minimal::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.5;
  filter: invert(0.3);
  width: 18px;
  height: 18px;
}

.form-date-minimal::-webkit-calendar-picker-indicator:hover {
  opacity: 0.8;
}

.form-date-minimal::-webkit-datetime-edit-text {
  color: #6b7280;
  padding: 0 2px;
}

.form-date-minimal::-webkit-datetime-edit-month-field,
.form-date-minimal::-webkit-datetime-edit-day-field,
.form-date-minimal::-webkit-datetime-edit-year-field {
  color: #1a1a1a;
}

/* Checkbox - Modern ve Kullanıcı Dostu */
.form-checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: #f9fafb;
  border-radius: 8px;
  margin-top: 4px;
  transition: background 0.2s ease;
}

.form-checkbox-wrapper:hover {
  background: #f3f4f6;
}

.form-checkbox-custom {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin: 0;
  margin-top: 2px;
  cursor: pointer;
  appearance: none;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  background: #ffffff;
  position: relative;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.form-checkbox-custom:checked {
  background: #800020;
  border-color: #800020;
}

.form-checkbox-custom:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-checkbox-custom:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.1);
}

.form-checkbox-wrapper label {
  font-size: 13px;
  line-height: 1.5;
  color: #4b5563;
  cursor: pointer;
  margin: 0;
  font-weight: normal;
  user-select: none;
}

.form-checkbox-wrapper label a {
  color: #800020;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.form-checkbox-wrapper label a:hover {
  color: #6b0019;
}

/* Submit Button - Minimal */
.form-submit-minimal {
  padding: 13px 24px;
  background: #800020;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 8px;
  font-family: inherit;
}

.form-submit-minimal:hover {
  background: #6b0019;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(128, 0, 32, 0.2);
}

.form-submit-minimal:active {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .appointment-form > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  
  .form-input-minimal,
  .form-select-minimal {
    font-size: 16px; /* iOS zoom önleme */
  }
}

.contact-form-7-wrapper .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form-7-wrapper .wpcf7-form p {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form-7-wrapper .wpcf7-form label {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
}

.contact-form-7-wrapper .wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.contact-form-7-wrapper .wpcf7-form input[type="text"],
.contact-form-7-wrapper .wpcf7-form input[type="email"],
.contact-form-7-wrapper .wpcf7-form input[type="tel"],
.contact-form-7-wrapper .wpcf7-form input[type="url"],
.contact-form-7-wrapper .wpcf7-form input[type="number"],
.contact-form-7-wrapper .wpcf7-form textarea,
.contact-form-7-wrapper .wpcf7-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  color: #1e293b;
  background: #ffffff;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.contact-form-7-wrapper .wpcf7-form input[type="text"]:focus,
.contact-form-7-wrapper .wpcf7-form input[type="email"]:focus,
.contact-form-7-wrapper .wpcf7-form input[type="tel"]:focus,
.contact-form-7-wrapper .wpcf7-form input[type="url"]:focus,
.contact-form-7-wrapper .wpcf7-form input[type="number"]:focus,
.contact-form-7-wrapper .wpcf7-form textarea:focus,
.contact-form-7-wrapper .wpcf7-form select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact-form-7-wrapper .wpcf7-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form-7-wrapper .wpcf7-form .wpcf7-submit {
  width: 100%;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  background: #6b0019;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.contact-form-7-wrapper .wpcf7-form .wpcf7-submit:hover {
  background: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.contact-form-7-wrapper .wpcf7-form .wpcf7-submit:active {
  transform: translateY(0);
}

.contact-form-7-wrapper .wpcf7-response-output {
  padding: 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-top: 16px;
}

.contact-form-7-wrapper .wpcf7-mail-sent-ok {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.contact-form-7-wrapper .wpcf7-mail-sent-ng,
.contact-form-7-wrapper .wpcf7-aborted,
.contact-form-7-wrapper .wpcf7-spam,
.contact-form-7-wrapper .wpcf7-validation-errors {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.contact-form-7-wrapper .wpcf7-not-valid-tip {
  color: #ef4444;
  font-size: 12px;
  margin-top: 4px;
}

.contact-form-7-wrapper .wpcf7-form-control.wpcf7-not-valid {
  border-color: #ef4444;
}

.contact-form-7-wrapper .wpcf7-form-control.wpcf7-not-valid:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.contact-form-7-wrapper .wpcf7-checkbox,
.contact-form-7-wrapper .wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form-7-wrapper .wpcf7-checkbox label,
.contact-form-7-wrapper .wpcf7-radio label {
  font-weight: normal;
  display: flex;
  align-items: center;
  gap: 8px;
}

  .contact-form-7-wrapper .wpcf7-checkbox input[type="checkbox"],
  .contact-form-7-wrapper .wpcf7-radio input[type="radio"] {
    width: auto;
    margin: 0;
  }

/* Contact Form 7 Dark Theme (Anasayfa Contact Section) */
.contact-form-7-dark .wpcf7-form input[type="text"],
.contact-form-7-dark .wpcf7-form input[type="email"],
.contact-form-7-dark .wpcf7-form input[type="tel"],
.contact-form-7-dark .wpcf7-form input[type="url"],
.contact-form-7-dark .wpcf7-form input[type="number"],
.contact-form-7-dark .wpcf7-form textarea,
.contact-form-7-dark .wpcf7-form select {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.contact-form-7-dark .wpcf7-form input[type="text"]::placeholder,
.contact-form-7-dark .wpcf7-form input[type="email"]::placeholder,
.contact-form-7-dark .wpcf7-form input[type="tel"]::placeholder,
.contact-form-7-dark .wpcf7-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact-form-7-dark .wpcf7-form input[type="text"]:focus,
.contact-form-7-dark .wpcf7-form input[type="email"]:focus,
.contact-form-7-dark .wpcf7-form input[type="tel"]:focus,
.contact-form-7-dark .wpcf7-form input[type="url"]:focus,
.contact-form-7-dark .wpcf7-form input[type="number"]:focus,
.contact-form-7-dark .wpcf7-form textarea:focus,
.contact-form-7-dark .wpcf7-form select:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.contact-form-7-dark .wpcf7-form label {
  color: #ffffff;
}

.contact-form-7-dark .wpcf7-form .wpcf7-submit {
  background: #fef3c7;
  color: #111827;
}

.contact-form-7-dark .wpcf7-form .wpcf7-submit:hover {
  background: #fde68a;
}

.contact-form-7-dark .wpcf7-not-valid-tip {
  color: #fca5a5;
}

.contact-form-7-dark .wpcf7-form-control.wpcf7-not-valid {
  border-color: #fca5a5;
}

.contact-form-7-dark .wpcf7-response-output {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.contact-form-7-dark .wpcf7-mail-sent-ok {
  background: rgba(209, 250, 229, 0.2);
  color: #d1fae5;
  border-color: rgba(110, 231, 183, 0.3);
}

.contact-form-7-dark .wpcf7-mail-sent-ng,
.contact-form-7-dark .wpcf7-aborted,
.contact-form-7-dark .wpcf7-spam,
.contact-form-7-dark .wpcf7-validation-errors {
  background: rgba(254, 226, 226, 0.2);
  color: #fee2e2;
  border-color: rgba(252, 165, 165, 0.3);
}

@media (max-width: 768px) {
  .contact-form-7-wrapper .wpcf7-form {
    gap: 20px;
  }
  
  .contact-form-7-wrapper .wpcf7-form input[type="text"],
  .contact-form-7-wrapper .wpcf7-form input[type="email"],
  .contact-form-7-wrapper .wpcf7-form input[type="tel"],
  .contact-form-7-wrapper .wpcf7-form textarea {
    font-size: 16px;
  }
}

/* ============================================
   YENİ TASARIM - BORDO & MODERN LAYOUT
   ============================================ */

/* Material Icons */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga';
}

/* Font Families */
.font-serif {
  font-family: 'Playfair Display', serif;
}

.font-sans {
  font-family: 'Lato', sans-serif;
}

/* Color Variables */
:root {
  --primary: #800020;
  --primary-dark: #5a0016;
  --secondary: #4a5568;
  --background-light: #f8f9fa;
  --background-dark: #1a202c;
  --surface-light: #ffffff;
  --surface-dark: #2d3748;
  --gold: #c5a059;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
}

/* ============================================
   NAVBAR
   ============================================ */
.new-navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid rgba(229, 231, 235, 0.2);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.new-navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 96px;
}

.new-navbar-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.new-navbar-logo-link:hover {
  color: var(--primary);
}

.new-navbar-logo-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.new-navbar-logo-link:hover .new-navbar-logo-icon {
  background: var(--primary-dark);
}

.new-navbar-logo-icon .material-symbols-outlined {
  font-size: 32px;
}

.new-navbar-logo-text {
  display: flex;
  flex-direction: column;
}

.new-navbar-logo-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: var(--gray-900);
  margin: 0;
  transition: color 0.3s ease;
}

.new-navbar-logo-subtitle {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

.new-navbar-menu {
  display: none;
  position: relative;
}

.new-navbar-menu-list {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.new-navbar-menu-list li {
  margin: 0;
  position: relative;
}

/* Alt Menü (Submenu) Stilleri */
.new-navbar-menu-list .sub-menu,
.new-navbar-menu-list .children {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 100;
  border-top: 2px solid var(--primary);
}

.new-navbar-menu-list li:hover > .sub-menu,
.new-navbar-menu-list li:hover > .children,
.new-navbar-menu-list li:focus-within > .sub-menu,
.new-navbar-menu-list li:focus-within > .children {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.new-navbar-menu-list .sub-menu li,
.new-navbar-menu-list .children li {
  border-bottom: 1px solid var(--gray-200);
}

.new-navbar-menu-list .sub-menu li:last-child,
.new-navbar-menu-list .children li:last-child {
  border-bottom: none;
}

.new-navbar-menu-list .sub-menu a,
.new-navbar-menu-list .children a {
  padding: 12px 20px;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--gray-700);
  display: block;
}

.new-navbar-menu-list .sub-menu a:hover,
.new-navbar-menu-list .children a:hover,
.new-navbar-menu-list .sub-menu .current-menu-item > a,
.new-navbar-menu-list .children .current-menu-item > a {
  background: var(--gray-50);
  color: var(--primary);
  padding-left: 24px;
}

.new-navbar-menu-list .sub-menu a::after,
.new-navbar-menu-list .children a::after {
  display: none;
}

.new-navbar-menu-list a {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-600);
  text-decoration: none;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
  display: block;
}

.new-navbar-menu-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.new-navbar-menu-list a:hover,
.new-navbar-menu-list a:focus,
.new-navbar-menu-list .current-menu-item > a,
.new-navbar-menu-list .current_page_item > a {
  color: var(--primary);
}

.new-navbar-menu-list a:hover::after,
.new-navbar-menu-list .current-menu-item > a::after,
.new-navbar-menu-list .current_page_item > a::after {
  width: 100%;
}

.new-navbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.new-navbar-btn {
  display: none;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 24px;
  background: var(--primary);
  color: white;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid transparent;
}

.new-navbar-btn:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  border-color: rgba(197, 160, 89, 0.3);
}

.new-navbar-mobile-toggle {
  display: block;
  padding: 8px;
  background: none;
  border: none;
  color: var(--gray-600);
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 100;
}

.new-navbar-mobile-toggle:hover {
  color: var(--primary);
}

.new-navbar-mobile-toggle .material-symbols-outlined {
  font-size: 28px;
  transition: transform 0.3s ease;
}

.new-navbar-mobile-toggle.is-active .material-symbols-outlined {
  transform: rotate(90deg);
}

/* Mobil Menü Stilleri */
@media (max-width: 767px) {
  .new-navbar-menu {
    display: block;
    position: fixed;
    top: 96px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    z-index: 99;
  }
  
  .new-navbar-menu.is-active {
    max-height: 500px;
    opacity: 1;
  }
  
  .new-navbar-menu-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
  }
  
  .new-navbar-menu-list li {
    border-bottom: 1px solid var(--gray-200);
  }
  
  .new-navbar-menu-list li:last-child {
    border-bottom: none;
  }
  
  .new-navbar-menu-list a {
    padding: 16px 0;
    display: block;
    width: 100%;
  }
  
  .new-navbar-menu-list a::after {
    display: none;
  }
  
  .new-navbar-menu-list a:hover,
  .new-navbar-menu-list .current-menu-item > a,
  .new-navbar-menu-list .current_page_item > a {
    background: var(--gray-50);
    padding-left: 16px;
    border-left: 4px solid var(--primary);
  }
  
  /* Mobil alt menü */
  .new-navbar-menu-list .sub-menu,
  .new-navbar-menu-list .children {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--gray-50);
    margin-left: 16px;
    border-top: none;
    border-left: 2px solid var(--primary);
    padding: 8px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .new-navbar-menu-list li.menu-item-has-children > a::after {
    content: '+';
    float: right;
    font-size: 18px;
    font-weight: 300;
    transition: transform 0.3s ease;
  }
  
  .new-navbar-menu-list li.menu-item-has-children.active > a::after {
    transform: rotate(45deg);
  }
  
  .new-navbar-menu-list li.menu-item-has-children.active > .sub-menu,
  .new-navbar-menu-list li.menu-item-has-children.active > .children {
    max-height: 500px;
  }
  
  .new-navbar-menu-list .sub-menu a,
  .new-navbar-menu-list .children a {
    padding: 12px 16px;
    font-size: 13px;
  }
}

@media (min-width: 768px) {
  .new-navbar-menu {
    display: block;
  }
  
  .new-navbar-btn {
    display: flex;
  }
  
  .new-navbar-mobile-toggle {
    display: none;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.new-hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: white;
}

.new-hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: var(--gray-50);
  opacity: 0.5;
  pointer-events: none;
}

.new-hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 16px;
  position: relative;
  z-index: 10;
}

.new-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}

.new-hero-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}

.new-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: var(--gray-100);
  border-left: 4px solid var(--primary);
  color: var(--gray-700);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  width: fit-content;
  margin: 0 auto;
}

.new-hero-badge-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}

.new-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--gray-900);
  margin: 0;
}

.new-hero-title-highlight {
  color: var(--primary);
  font-style: italic;
  position: relative;
  display: inline-block;
}

.new-hero-title-underline {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold);
  opacity: 0.6;
}

.new-hero-subtitle {
  font-size: 20px;
  line-height: 1.7;
  color: var(--gray-600);
  font-weight: 300;
  max-width: 640px;
  margin: 0 auto;
  padding-left: 24px;
  border-left: 1px solid var(--gray-300);
}

.new-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  padding-top: 24px;
}

.new-hero-btn-primary,
.new-hero-btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 56px;
  padding: 0 40px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.new-hero-btn-primary {
  background: var(--gray-900);
  color: white;
}

.new-hero-btn-primary:hover {
  background: var(--primary);
}

.new-hero-btn-primary .material-symbols-outlined {
  transition: transform 0.3s ease;
}

.new-hero-btn-primary:hover .material-symbols-outlined {
  transform: translateX(4px);
}

.new-hero-btn-secondary {
  background: transparent;
  border: 2px solid var(--gray-900);
  color: var(--gray-900);
}

.new-hero-btn-secondary:hover {
  background: var(--gray-900);
  color: white;
}

.new-hero-image-wrapper {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.new-hero-image-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.new-hero-decoration-1 {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 128px;
  height: 128px;
  background: rgba(197, 160, 89, 0.2);
  border-radius: 50%;
  filter: blur(60px);
}

.new-hero-decoration-2 {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  background: rgba(128, 0, 32, 0.2);
  border-radius: 50%;
  filter: blur(60px);
}

.new-hero-image-container {
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 8px solid white;
}

.new-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.new-hero-image-container:hover .new-hero-image {
  transform: scale(1.05);
}

.new-hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent, transparent);
}

.new-hero-image-quote {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  color: white;
  padding: 24px;
  border-left: 4px solid var(--gold);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
}

.new-hero-quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-style: italic;
  margin: 0 0 8px 0;
}

.new-hero-quote-author {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-300);
  font-weight: 700;
  margin: 0;
}

.new-hero-stat-card {
  position: absolute;
  top: 40px;
  left: -24px;
  z-index: 20;
  background: var(--primary);
  color: white;
  padding: 24px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  border-radius: 0 8px 8px 0;
  border-left: 4px solid var(--gold);
}

.new-hero-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  margin: 0;
}

.new-hero-stat-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin: 4px 0 0 0;
  opacity: 0.9;
}

@media (min-width: 1024px) {
  .new-hero-container {
    padding: 32px 16px;
  }
  
  .new-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  
  .new-hero-content {
    text-align: left;
  }
  
  .new-hero-badge {
    margin: 0;
  }
  
  .new-hero-actions {
    flex-direction: row;
    justify-content: flex-start;
  }
  
  .new-hero-title {
    font-size: 64px;
  }
}

@media (max-width: 768px) {
  .new-hero-title {
    font-size: 36px;
  }
  
  .new-hero-subtitle {
    font-size: 18px;
    padding-left: 16px;
  }
  
  .new-hero-image-wrapper {
    height: 400px;
  }
  
  .new-hero-stat-card {
    position: absolute;
    top: 16px;
    right: 16px;
    left: auto;
    margin-top: 0;
    border-radius: 8px;
    z-index: 10;
    padding: 12px 16px !important;
    min-width: auto;
  }
  
  .new-hero-stat-number {
    font-size: 20px !important;
    line-height: 1.2;
  }
  
  .new-hero-stat-label {
    font-size: 10px !important;
    line-height: 1.3;
  }
}

/* ============================================
   STATS SECTION
   ============================================ */
.new-stats-section {
  padding: 64px 0;
  background: var(--gray-900);
  color: white;
  border-bottom: 4px solid var(--primary);
}

.new-stats-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.new-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.new-stat-item {
  text-align: center;
  padding: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 32px;
}

.new-stat-icon {
  color: var(--gold);
  font-size: 48px;
  margin-bottom: 16px;
}

.new-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.new-stat-label {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

@media (min-width: 768px) {
  .new-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .new-stat-item {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .new-stat-item:first-child {
    border-left: none;
  }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.new-services-section {
  position: relative;
  padding: 96px 0;
  background: var(--gray-50);
  overflow: hidden;
}

.new-services-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
  opacity: 0.05;
  pointer-events: none;
}

.new-services-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  z-index: 10;
}

.new-services-header {
  text-align: center;
  max-width: 768px;
  margin: 0 auto 80px;
}

.new-services-eyebrow {
  display: block;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 16px;
}

.new-services-title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 400;
  color: var(--gray-900);
  margin: 0 0 24px 0;
}

.new-services-title-line {
  width: 80px;
  height: 4px;
  background: var(--primary);
  margin: 0 auto 24px;
}

.new-services-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-600);
  font-weight: 300;
  margin: 0;
}

.new-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 40px;
}

.new-service-card {
  position: relative;
  background: white;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
  overflow: hidden;
}

.new-service-card:hover {
  box-shadow: 0 20px 40px rgba(128, 0, 32, 0.1);
  border-top-color: var(--primary);
  transform: translateY(-4px);
}

.new-service-card-bg-icon {
  position: absolute;
  right: 0;
  top: 0;
  padding: 16px;
  opacity: 0.05;
  transition: opacity 0.3s ease;
}

.new-service-card:hover .new-service-card-bg-icon {
  opacity: 0.1;
}

.new-service-card-bg-icon .material-symbols-outlined {
  font-size: 100px;
  color: var(--gray-400);
}

.new-service-icon {
  width: 64px;
  height: 64px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.new-service-card:hover .new-service-icon {
  background: var(--primary);
  color: white;
}

.new-service-icon .material-symbols-outlined {
  font-size: 32px;
}

.new-service-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 12px 0;
}

.new-service-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-600);
  margin: 0 0 24px 0;
}

.new-service-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.3s ease;
}

.new-service-link:hover {
  color: var(--primary-dark);
}

.new-service-link .material-symbols-outlined {
  font-size: 16px;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.new-service-link:hover .material-symbols-outlined {
  transform: translateX(4px);
}

@media (min-width: 768px) {
  .new-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .new-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.new-about-section {
  padding: 96px 0;
  background: white;
  overflow: hidden;
}

.new-about-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.new-about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  align-items: center;
}

.new-about-image-wrapper {
  position: relative;
}

.new-about-image-decor-1 {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 128px;
  height: 128px;
  background: rgba(128, 0, 32, 0.1);
  z-index: 0;
}

.new-about-image-decor-2 {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gray-200);
  z-index: 0;
}

.new-about-image {
  width: 100%;
  height: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 10;
  filter: grayscale(100%);
  transition: filter 0.7s ease;
}

.new-about-image:hover {
  filter: grayscale(0%);
}

.new-about-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.new-about-eyebrow {
  display: block;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
  text-align:center ;
  margin-bottom: 8px;
}

.new-about-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--gray-900);
  margin: 0;
  line-height: 1.3;
  text-align:center ;
}

.new-about-title-highlight {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

.new-about-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-600);
  font-weight: 300;
  margin: 0;
  text-align: center;
;
}

.new-about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 16px;
}

.new-about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--gray-50);
  border-left: 2px solid var(--primary);
}

.new-about-feature-icon {
  color: var(--primary);
  font-size: 24px;
  flex-shrink: 0;
}

.new-about-feature-title {
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 4px 0;
}

.new-about-feature-text {
  font-size: 12px;
  color: var(--gray-500);
  margin: 0;
}

.new-about-btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: var(--gray-900);
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  width: fit-content;
}

.new-about-btn:hover {
  background: var(--primary);
}

@media (min-width: 1024px) {
  .new-about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
  
  .new-about-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   CTA SECTION
   ============================================ */
.new-cta-section {
  position: relative;
  padding: 96px 0;
  background: var(--primary);
  overflow: hidden;
}

.new-cta-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.new-cta-bg-skew {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 33.333%;
  background: rgba(255, 255, 255, 0.05);
  transform: skewX(-12deg);
  transform-origin: top right;
}

.new-cta-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  z-index: 10;
  text-align: center;
}

.new-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 400;
  color: white;
  margin: 0 0 24px 0;
}

.new-cta-title-line {
  width: 96px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 auto 32px;
}

.new-cta-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 300;
  max-width: 640px;
  margin: 0 auto 48px;
}

.new-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

.new-cta-btn-primary,
.new-cta-btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 56px;
  padding: 0 40px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.new-cta-btn-primary {
  background: white;
  color: var(--primary);
}

.new-cta-btn-primary:hover {
  background: var(--gray-100);
}

.new-cta-btn-secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

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

@media (min-width: 640px) {
  .new-cta-actions {
    flex-direction: row;
  }
  
  .new-cta-title {
    font-size: 48px;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.new-footer {
  background: var(--background-dark);
  color: var(--gray-400);
  padding: 64px 0;
  border-top: 1px solid var(--gray-800);
  font-weight: 300;
}

.new-footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.new-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.new-footer-column {
  display: flex;
  flex-direction: column;
}

.new-footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.new-footer-logo-img {
  max-height: 50px;
  width: auto;
  object-fit: contain;
}

.new-footer-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}

.new-footer-logo-icon .material-symbols-outlined {
  color: white;
  font-size: 24px;
}

.new-footer-logo-text {
  display: flex;
  flex-direction: column;
}

.new-footer-logo-title {
  font-size: 20px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: white;
  display: block;
}

.new-footer-logo-subtitle {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray-400);
}

.new-footer-description {
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 32px 0;
  padding-left: 16px;
  border-left: 2px solid var(--primary);
}

.new-footer-social {
  display: flex;
  gap: 16px;
}

.new-footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-800);
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  transition: all 0.3s ease;
}

.new-footer-social-link:hover {
  background: var(--primary);
  color: white;
}

.new-footer-title {
  color: white;
  font-weight: 700;
  font-size: 18px;
  font-family: 'Playfair Display', serif;
  margin: 0 0 32px 0;
}

.new-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.new-footer-links li {
  margin: 0;
}

.new-footer-links a {
  font-size: 14px;
  color: var(--gray-400);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.new-footer-links a::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.new-footer-links a:hover {
  color: var(--primary);
  padding-left: 8px;
}

.new-footer-links a:hover::before {
  opacity: 1;
}

.new-footer-content {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-400);
}

.new-footer-content p {
  margin: 0 0 12px 0;
  color: var(--gray-400);
}

.new-footer-content p:last-child {
  margin-bottom: 0;
}

.new-footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.new-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 0;
}

.new-footer-contact .material-symbols-outlined {
  color: var(--primary);
  font-size: 20px;
  margin-top: 2px;
  transition: color 0.3s ease;
}

.new-footer-contact li:hover .material-symbols-outlined {
  color: white;
}

.new-footer-contact span:not(.material-symbols-outlined),
.new-footer-contact a {
  font-size: 14px;
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.3s ease;
}

.new-footer-contact li:hover span:not(.material-symbols-outlined),
.new-footer-contact li:hover a {
  color: white;
}

.new-footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}

.new-footer-copyright {
  font-size: 12px;
  color: var(--gray-500);
  margin: 0;
}

.new-footer-bottom-links {
  display: flex;
  gap: 32px;
}

.new-footer-bottom-links a {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.3s ease;
}

.new-footer-bottom-links a:hover {
  color: white;
}

@media (min-width: 768px) {
  .new-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .new-footer-bottom {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .new-footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   BLOG SINGLE AUTHOR CARD
   ============================================ */
.blog-author-card-wrapper {
  margin-top: 64px;
  margin-bottom: 32px;
}

.blog-author-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.blog-author-card-image {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  position: relative;
}

.blog-author-card-image img,
.blog-author-card-image .blog-author-card-avatar-img,
.blog-author-card-image img.avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background: #ffd4a3;
  border: none;
  margin: 0;
}

.blog-author-card-image .blog-author-card-avatar-img,
.blog-author-card-image img.avatar {
  background: #ffd4a3 !important;
}

.blog-author-card-avatar-placeholder {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #ffd4a3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-author-card-avatar-placeholder .material-symbols-outlined {
  font-size: 64px;
  color: #8b4513;
}

.blog-author-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.blog-author-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.3;
}

.blog-author-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: #8b4513;
  margin: 0;
  line-height: 1.4;
}

.blog-author-card-description {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a1a;
  margin: 8px 0 0 0;
}

.blog-author-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: #8b4513;
  text-decoration: none;
  margin-top: 8px;
  transition: color 0.3s ease, gap 0.3s ease;
}

.blog-author-card-link:hover {
  color: #a0522d;
  gap: 12px;
}

.blog-author-card-link .material-symbols-outlined {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.blog-author-card-link:hover .material-symbols-outlined {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .blog-author-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
    gap: 24px;
  }
  
  .blog-author-card-image {
    width: 120px;
    height: 120px;
  }
  
  .blog-author-card-image img,
  .blog-author-card-image .blog-author-card-avatar-img,
  .blog-author-card-image img.avatar {
    width: 120px;
    height: 120px;
  }
  
  .blog-author-card-avatar-placeholder {
    width: 120px;
    height: 120px;
  }
  
  .blog-author-card-name {
    font-size: 24px;
  }
  
  .blog-author-card-title {
    font-size: 16px;
  }
  
  .blog-author-card-description {
    font-size: 15px;
  }
  
  .blog-author-card-link {
    justify-content: center;
  }
}


