/* 
* İstanbul Dia Dent - Ana Stil Dosyası
* Versiyon: 1.2
*/

/* ====== TEMEL AYARLAR ====== */
:root {
  --color-primary: #2563eb;     /* blue-600 */
  --color-primary-dark: #1e40af; /* blue-800 */
  --color-accent: #10b981;      /* green-500 */
  --color-accent-dark: #059669; /* green-600 */
  --color-accent-light: #d1fae5; /* green-100 */
  --color-light: #f0fdf4;       /* green-50 */
  --color-dark: #1f2937;        /* gray-800 */
  --color-gray: #6b7280;        /* gray-500 */
  --color-gray-light: #e5e7eb;  /* gray-200 */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --border-radius: 0.25rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--color-light);
  color: var(--color-dark);
  line-height: 1.5;
}

/* ====== NAVİGASYON ====== */
.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: white;
  box-shadow: var(--shadow);
  padding: 0.5rem 1rem;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo img {
  height: 5rem;
  width: auto;
  max-width: 300px;
}

.nav-menu {
  display: none;
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex: 1;
    margin: 0 0.5rem;
    gap: 1rem;
  }
}

.nav-link {
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s;
  color: var(--color-dark);
  text-decoration: none;
}

.nav-link:hover {
  color: var(--color-accent);
}

a {
  text-decoration: none;
  color: inherit;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-align: center;
  transition: all 0.2s;
  white-space: nowrap;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--color-primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
}

.btn-accent {
  background-color: var(--color-accent);
  color: white;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  border-radius: 0.3rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-accent:hover {
  background-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  border: 1px solid var(--color-primary-dark);
  color: var(--color-primary-dark);
}

.btn-outline:hover {
  background-color: var(--color-primary-dark);
  color: white;
}

.btn-randevu {
  background-color: var(--color-accent);
  color: white;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  border-radius: 0.3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  text-decoration: none;
}

.btn-randevu svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.btn-randevu:hover {
  background-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Hide the top appointment button on mobile screens */
@media (max-width: 767px) {
  .nav-container > .whatsapp-btn {
    display: none;
  }
}

/* ====== MOBİL MENÜ ====== */
.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--color-dark);
  border-radius: var(--border-radius);
  transition: background-color 0.2s;
}

.mobile-menu-btn:hover {
  background-color: var(--color-gray-light);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: white;
  box-shadow: var(--shadow-lg);
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  overflow-y: auto;
  height: 100vh;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  border-bottom: 1px solid var(--color-gray-light);
}

.mobile-menu-close {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--color-dark);
  border-radius: var(--border-radius);
  transition: background-color 0.2s;
}

.mobile-menu-close:hover {
  background-color: var(--color-gray-light);
}

.mobile-lang-selector {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-lang-option {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--color-gray-light);
  background: white;
  cursor: pointer;
  transition: all 0.2s;
}

.mobile-lang-option.active {
  background-color: var(--color-accent-light);
  border-color: var(--color-accent);
  font-weight: 600;
}

.mobile-lang-option:hover {
  border-color: var(--color-accent);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  display: none;
}

.mobile-menu-links a {
  padding: 1rem 0;
  display: block;
  text-decoration: none;
  color: var(--color-dark);
  font-weight: 500;
  font-size: 1.125rem;
  border-bottom: 1px solid var(--color-gray-light);
}

.mobile-menu-links a:last-child {
  border-bottom: none;
}

.mobile-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent);
  color: white;
  padding: 1rem;
  margin: 0 1.5rem 1.5rem;
  border-radius: var(--border-radius);
  gap: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: all 0.2s;
}

.mobile-whatsapp-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-whatsapp-btn:hover {
  background-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ====== DİL SEÇİCİ ====== */
.lang-selector {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius);
  transition: background-color 0.2s;
  cursor: pointer;
}

.lang-btn:hover {
  background-color: var(--color-accent-light);
}

.lang-flag {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.lang-menu {
  position: absolute;
  left: 0;
  margin-top: 0.5rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  z-index: 50;
  min-width: max-content;
  padding: 0.25rem;
  display: none;
}

.lang-option {
  display: flex;
  align-items: center;
  width: 100%;
  border: none;
  background: none;
  padding: 0.5rem 1rem;
  transition: background-color 0.2s;
  white-space: nowrap;
  cursor: pointer;
}

.lang-option:hover {
  background-color: var(--color-accent-light);
}

/* ====== HERO SECTION ====== */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
  background-color: var(--color-light);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/tooth.png");
  background-size: 20rem;
  background-repeat: no-repeat;
  background-position: 5% 5%;
  opacity: 0.1;
  z-index: 1;
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    padding: 4rem 1.5rem;
  }
  
  .hero::before {
    background-size: 30rem;
    background-position: 5% 50%;
  }
}

.hero-content {
  width: 100%;
  max-width: 36rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .hero-content {
    text-align: left;
    margin-bottom: 0;
    margin-right: 2rem;
  }
}

.hero-title {
  font-size: 2.25rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
    line-height: 1.1;
  }
}

.hero-text {
  color: var(--color-gray);
  margin-bottom: 1.5rem;
  text-align: ce;
}

.hero-image {
  width: 100%;
  max-width: 24rem;
  position: relative;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

/* ====== SECTION STYLES ====== */
.section {
  padding: 3.5rem 1rem;
}

.section-white {
  background-color: white;
}

.section-light {
  background-color: var(--color-light);
}

.container {
  max-width: 72rem;
  margin: 0 auto;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
}

/* ====== TOOTH ICON DIVIDER ====== */
.tooth-icon-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0;
  position: relative;
  margin: -1rem auto 0 auto;
}

.tooth-icon-divider::before,
.tooth-icon-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 80px;
  height: 2px;
  background-color: var(--color-accent-light);
  transform: translateY(-50%);
}

.tooth-icon-divider::before {
  right: calc(50% + 40px);
}

.tooth-icon-divider::after {
  left: calc(50% + 40px);
}

.tooth-icon-divider svg,
.tooth-icon-divider .tooth-icon {
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
  animation: float 3s ease-in-out infinite;
  z-index: 2;
}

.tooth-icon {
  width: 70px;
  height: auto;
  object-fit: contain;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@media (max-width: 640px) {
  .tooth-icon-divider {
    margin-top: -0.5rem;
    margin-bottom: 0.5rem;
  }
  .tooth-icon-divider::before,
  .tooth-icon-divider::after {
    width: 40px;
  }
  .tooth-icon-divider::before {
    right: calc(50% + 35px);
  }
  .tooth-icon-divider::after {
    left: calc(50% + 35px);
  }
}

/* ====== VIDEO CONTAINER ====== */
.video-container {
  width: 90%;
  max-width: 650px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
  background-color: #f9fafb;
  padding: 1rem;
}

.video-container:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  border-radius: 0.25rem;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ====== STATS SECTION ====== */
.stats-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 1.5rem auto 2rem auto;
  max-width: 48rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  background-color: #ebf5ff;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.stat-icon {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  width: 2.5rem;
  height: 2.5rem;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0.25rem 0;
}

.stat-label {
  color: var(--color-gray);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  text-align: center;
}

/* ====== GALLERY ====== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  aspect-ratio: 4/3;
  max-height: 200px;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.5rem;
  font-size: 0.875rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Update for the gallery in About section */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 0.5rem 0;
}

@media (min-width: 640px) {
  .gallery-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-container .gallery-item {
  max-height: 180px;
  aspect-ratio: 4/3;
}

.gallery-container .gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s;
}

.gallery-container .gallery-image:hover {
  transform: scale(1.04);
}

/* Grid Layout Classes */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 640px) {
  .grid-cols-sm-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .grid-cols-md-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-cols-md-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-cols-lg-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ====== CARD STYLES ====== */
.card {
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-image {
  width: 100%;
  height: 13rem;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  margin-bottom: 0.75rem;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--color-dark);
}

.card-subtitle {
  font-size: 0.875rem;
  color: var(--color-gray);
}

/* ====== CONTACT FORM ====== */
.form {
  background-color: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.form-group {
  margin-bottom: 1rem;
  width: 100%;
}

.form-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-gray-light);
  border-radius: var(--border-radius);
  box-sizing: border-box;
}

.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-gray-light);
  border-radius: var(--border-radius);
  min-height: 8rem;
  resize: vertical;
  box-sizing: border-box;
}

.form-footer {
  padding-top: 1rem;
  text-align: center;
}

.form-footer .btn {
  margin-bottom: 1rem;
}

.form-logo {
  width: 16rem;
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

.contact-info-card {
  background-color: #ebf5ff; /* açık mavi */
  padding: 1.25rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  margin-bottom: 1rem;
}

/* WhatsApp butonu için özel stiller */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent);
  color: white;
  border-radius: 0.3rem;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  text-decoration: none;
  gap: 0.5rem;
}

.whatsapp-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.whatsapp-btn:hover {
  background-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ====== FOOTER ====== */
.footer {
  background-color: var(--color-light);
  padding: 1.25rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-gray);
}

/* ====== UTILITY CLASSES ====== */
.hidden {
  display: none;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.rounded {
  border-radius: var(--border-radius);
}

.shadow {
  box-shadow: var(--shadow);
}

.shadow-md {
  box-shadow: var(--shadow-md);
}

.gap-4 {
  gap: 1rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-10 {
  gap: 2.5rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

/* ====== BLOG ====== */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.blog-card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.blog-image-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #f0f0f0;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.blog-card:hover .blog-image {
  transform: scale(1.05);
}

.blog-content {
  padding: 1.25rem 1.25rem 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-primary-dark);
}

.blog-desc {
  color: var(--color-gray);
  font-size: 0.98rem;
  margin-bottom: 1.25rem;
  flex: 1;
}

.blog-readmore {
  align-self: flex-start;
  background: var(--color-accent);
  color: #fff;
  padding: 0.5rem 1.1rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: var(--shadow-sm);
}

.blog-readmore:hover {
  background: var(--color-accent-dark);
  color: #fff;
}

/* Blog Post Styles */
.blog-post-section {
  padding-top: 8rem;
}

.blog-post-container {
  max-width: 800px;
  margin: 0 auto;
}

.blog-post-header {
  margin-bottom: 2rem;
}

.blog-post-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: #6b7280;
  font-size: 0.95rem;
}

.blog-post-featured-image {
  margin-bottom: 2.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
}

.blog-image-full {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.blog-post-content {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #1f2937;
}

.blog-post-content h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.blog-post-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: #1f2937;
}

.blog-post-content p {
  margin-bottom: 1.25rem;
}

.blog-post-content ul, .blog-post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.blog-post-content li {
  margin-bottom: 0.5rem;
}

.blog-post-content .alert-note {
  background-color: #f3f4f6;
  border-left: 4px solid #3b82f6;
  padding: 1rem;
  margin: 1.5rem 0;
  border-radius: 0.25rem;
}

.blog-post-content .alert-cta {
  background-color: #dbeafe;
  border-left: 4px solid #2563eb;
  padding: 1.25rem;
  margin: 2rem 0;
  border-radius: 0.25rem;
}

.blog-related-posts {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.related-post-card {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.related-post-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.related-post-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.related-post-title {
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

.blog-cta {
  margin-top: 3rem;
  padding: 2rem;
  background-color: #f9fafb;
  border-radius: 0.5rem;
  text-align: center;
}

.blog-cta h3 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

/* Responsive styles */
@media (max-width: 768px) {
  .blog-post-section {
    padding-top: 6rem;
  }
  
  .blog-post-title {
    font-size: 2rem;
  }
  
  .blog-post-content {
    font-size: 1rem;
  }
  
  .blog-post-content h2 {
    font-size: 1.6rem;
  }
  
  .blog-post-content h3 {
    font-size: 1.3rem;
  }
  
  .related-post-image {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .blog-post-section {
    padding-top: 5rem;
  }
  
  .blog-post-title {
    font-size: 1.75rem;
  }
  
  .blog-post-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-cta {
    padding: 1.5rem 1rem;
  }
} 