@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
  /* Color Palette */
  --primary: #62B790;
  --primary-light: #e6f5ef;
  --primary-dark: #133F6F;
  --secondary: #133F6F;

  --bg-color: #f6f8fa;
  --bg-white: #ffffff;

  --text-main: #77828E;
  --text-heading: #133F6F;
  --text-muted: #77828E;

  /* Borders & Shadows */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --shadow-sm:
    0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md:
    0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
  --shadow-lg:
    0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
  --shadow-hover:
    0 25px 30px -5px rgba(2, 132, 199, 0.15),
    0 15px 15px -5px rgba(2, 132, 199, 0.05);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--text-main);
  background-color: var(--bg-color);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
.stat-number {
  font-family: "Outfit", sans-serif;
  color: var(--text-heading);
}

h1 {
  letter-spacing: -0.03em;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}

a:hover {
  text-decoration: none;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* =========================================
   SECTIONS — common
   ========================================= */
section {
  padding: 100px 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin: 0 auto 56px;
  border-radius: 4px;
}

/* =========================================
   SPLIT HERO SECTION (4 COLUMNS)
   ========================================= */
.hero-split {
  height: 100vh;
  width: 100%;
  display: flex;
  overflow: hidden;
  padding: 0; /* No navbar offset needed since it's full screen */
  position: relative; /* Context for fixed inner layouts */
  z-index: 1;
}

/* Base style for each panel */
.split-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}

.split-panel:last-child {
  border-right: none;
}

/* Background image setup */
.split-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  transform: scale(1.1); /* initially slightly zoomed in */
  z-index: 1;
}

/* Overlay for text visibility and hover darkening */
.split-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6); /* Dark navy overlay */
  transition: background 0.6s ease;
  z-index: 2;
}

/* Content wrapper */
.split-content {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: white;
}

.split-content h2 {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: transform 0.6s ease, text-shadow 0.6s ease;
  text-align: center;
}

.split-icon {
  background: #62b7902e;
  padding: 30px;
  border-radius: 90px;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 16px;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s ease;
}

.split-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  text-align: center;
  margin-top: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  max-width: 80%;
}

/* Hover Effects */
.split-panel:hover {
  flex: 1.3; /* expands slightly */
}

.split-panel:hover .split-bg {
  transform: scale(1); /* smooth zoom out effect (Ken Burns reverse) */
}

.split-panel:hover .split-overlay {
  background: rgba(15, 23, 42, 0.4); /* Darkens slightly to make text more readable */
}

.split-panel:hover .split-content h2 {
  transform: scale(1.1);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.split-panel:hover .split-subtitle {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive for mobile - stacks them instead */
@media (max-width: 768px) {
  .hero-split {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
  }
  .split-panel {
    flex: none;
    height: 25vh; /* each panel takes 25% of viewport height */
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .split-panel:last-child {
    border-bottom: none;
  }
  .split-panel:hover {
    flex: none;
  }
  .split-content h2 {
    font-size: 1.5rem;
  }
}

/* =========================================
   HERO / PROFILE SECTION
   ========================================= */
.profile-section {
  padding: 160px 0 100px;
  background: linear-gradient(180deg, #f0f9ff 0%, var(--bg-white) 100%);
  position: relative;
  overflow: hidden;
}

.profile-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(13, 148, 136, 0.1) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.profile-grid.new-layout {
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
}

.profile-content.new-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.profile-badge {
  display: inline-block;
  align-self: flex-start;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.85rem;
  border: 1px solid rgba(19, 63, 111, 0.15);
  padding: 6px 20px;
  border-radius: 30px;
  margin-bottom: 24px;
}

.profile-content.new-content h1 {
  font-size: 3rem;
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.profile-content.new-content h1 .highlight-green {
  color: var(--primary);
}

.profile-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.profile-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-pill, .btn-pill-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
}

.btn-pill {
  background-color: var(--primary);
  color: var(--bg-white);
  border: 1px solid var(--primary);
}

.btn-pill:hover {
  background-color: #52a680;
  border-color: #52a680;
  box-shadow: var(--shadow-md);
  color: white;
}

.btn-pill-outline {
  background-color: transparent;
  color: var(--primary-dark);
  border: 1px solid rgba(19, 63, 111, 0.2);
}

.btn-pill-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--bg-white);
}

.profile-image-container {
  display: flex;
  justify-content: center;
}

.profile-photo {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  object-fit: contain; /* changed from cover to keep aspect realistic if it is cutout */
}

/* =========================================
   STATS SECTION
   ========================================= */
.stats-section {
  background: var(--bg-white);
  padding: 60px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.stat-card {
  text-align: center;
  padding: 32px;
  border-radius: var(--radius-md);
  background: var(--bg-color);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  align-self: flex-end;
  margin-top: auto;
  transition: color 0.3s ease;
}
.read-more-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* =========================================
   TEDAVİ YÖNTEMLERİ (ACCORDION)
   ========================================= */
.tedavi-layout {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.tedavi-accordion {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 450px;
}

.tedavi-item {
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-white);
  transition: all 0.3s ease;
}

.tedavi-item.active {
  border-color: var(--primary);
}

.tedavi-header {
  padding: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--primary-dark);
  transition: background 0.3s ease;
}

.tedavi-header:hover {
  background: var(--bg-color);
}

.tedavi-header i {
  transition: transform 0.3s ease;
  color: #a0aec0;
}

.tedavi-item.active .tedavi-header i {
  transform: rotate(180deg);
  color: var(--primary);
}

.tedavi-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 24px;
  color: var(--text-muted);
  line-height: 1.6;
}

.tedavi-item.active .tedavi-content {
  max-height: 500px;
  padding-bottom: 24px;
}

.tedavi-image-container {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 450px;
  background: var(--bg-color);
}

.tedavi-image {
  position: absolute;
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.tedavi-image.active {
  opacity: 1;
}

@media (max-width: 900px) {
  .tedavi-layout {
    flex-direction: column;
  }
  .tedavi-image-container {
    min-height: 300px;
    width: 100%;
  }
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-section {
  background: var(--bg-color);
}

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

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
}

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

.service-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover img {
  transform: scale(1.03);
}

.service-card-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-body h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.service-card-body p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
  flex-grow: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  background-color: var(--primary);
  color: var(--bg-white);
  border: 1px solid var(--primary);
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  align-self: flex-start;
}

.btn:hover {
  background-color: #52a680;
  border-color: #52a680;
  box-shadow: var(--shadow-md);
  color: white;
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-dark);
  border: 1px solid rgba(19, 63, 111, 0.2);
  border-radius: 40px;
  box-shadow: none;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: var(--bg-white);
  box-shadow: var(--shadow-md);
}

/* =========================================
   ARTICLES PREVIEW
   ========================================= */
.articles-section {
  background: var(--bg-white);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.article-card {
  background: var(--bg-color);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  background: var(--bg-white);
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.article-date {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.article-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.article-card p {
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.articles-cta {
  text-align: center;
  margin-top: 56px;
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-section {
  background: var(--bg-color);
}

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

.profile-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-color);
  color: var(--text-muted);
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
}

.profile-photo-bg {
  width: 100%;
  height: 440px;
  margin-top: 60px;
  background-size: cover;
  background-position: center bottom;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form {
  background: var(--bg-white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-form h3,
.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  background: var(--bg-color);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-heading);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--bg-white);
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.1);
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-info-item:hover .contact-icon {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.contact-info-item strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text-heading);
  margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.contact-info-item a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: #0f172a;
  padding: 40px 0;
  color: #94a3b8;
}

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

.footer-copy,
.footer-credit {
  font-size: 0.95rem;
}

.footer-credit a {
  color: #f8fafc;
  font-weight: 500;
}

.footer-credit a:hover {
  color: var(--primary-light);
}

/* =========================================
   BLOG PAGE & POST PAGE
   ========================================= */
.page-header {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 160px 0 80px;
  text-align: center;
}

.page-header h1 {
  color: white;
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.page-header p {
  color: #94a3b8;
  font-size: 1.25rem;
}

.blog-layout,
.post-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  padding: 80px 0;
}

.blog-post-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: var(--transition);
}

.blog-post-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.blog-post-card h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.blog-post-meta,
.post-meta {
  font-size: 0.9rem;
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.blog-post-card p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* Sidebar */
.sidebar-widget {
  background: var(--bg-white);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.sidebar-widget h4 {
  font-size: 1.2rem;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-light);
}

.sidebar-widget ul li {
  padding: 12px 0;
  border-bottom: 1px solid var(--bg-color);
}

.sidebar-widget ul li:last-child {
  border-bottom: none;
}

.sidebar-widget ul li a {
  color: var(--text-muted);
  font-weight: 500;
}

.sidebar-widget ul li a:hover {
  color: var(--primary);
  padding-left: 8px;
}

/* Post Article Styles */
.post-article h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.2;
}

.post-meta {
  border-bottom: 1px solid var(--bg-color);
  padding-bottom: 24px;
  margin-bottom: 40px;
}

.post-body h2 {
  font-size: 1.8rem;
  margin: 40px 0 20px;
}

.post-body h3 {
  font-size: 1.4rem;
  margin: 32px 0 16px;
}

.post-body p {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 24px;
}

.post-body ul,
.post-body ol {
  padding-left: 24px;
  margin-bottom: 24px;
  font-size: 1.1rem;
  color: var(--text-main);
}

.post-body li {
  margin-bottom: 12px;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .profile-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

  .blog-layout,
  .post-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .profile-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .profile-tags {
    justify-content: center;
  }

  .profile-content h1 {
    font-size: 2.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }

  .footer .container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

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

/* =========================================
   ÖZGEÇMİŞ 
   ========================================= */
.resume-section {
  background-color: var(--bg-white);
  padding: 100px 0;
}

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

.resume-column-title {
  font-size: 1.6rem;
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.resume-column-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 50px;
  background-color: var(--primary);
}

.resume-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.resume-list li {
  background: var(--bg-color);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: var(--transition);
}

.resume-list li:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(98, 183, 144, 0.2);
}

.resume-list h4 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-heading);
}

.resume-list p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.resume-date {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary);
  background: var(--primary-light);
  padding: 4px 12px;
  border-radius: 20px;
}

.resume-list.courses {
  gap: 55px;
}

.resume-list.courses li {
  padding: 16px 20px;
  font-size: 0.95rem;
  color: var(--text-main);
  background: transparent;
  border: none;
  border-left: 2px solid var(--primary-light);
  border-radius: 0;
  position: relative;
  transition: var(--transition);
}

.resume-list.courses li::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 24px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--bg-white);
}

.resume-list.courses li:hover {
  transform: translateX(10px);
  box-shadow: none;
  border-color: var(--primary);
}

/* =========================================
   MODERN POST SHARE
   ========================================= */
.post-share-modern {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 32px;
  margin-top: 48px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.post-share-modern span {
  font-weight: 600;
  color: var(--primary-dark);
}

.post-share-modern .share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--primary-dark);
  background: var(--bg-color);
  border: 1px solid rgba(19, 63, 111, 0.1);
  transition: var(--transition);
  text-decoration: none;
  font-size: 1rem;
}

.post-share-modern .share-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
