/* ============================================
   Ferhatlar Kurban — Page-Specific Styles (Nature Theme)
   ============================================ */

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #152515;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/hero_meadow_new.png');
  background-size: cover;
  background-position: center 60%;
  filter: brightness(0.65) saturate(1.2);
  transform: scale(1.05);
  animation: hero-zoom 22s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
  0%   { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 20, 8, 0.55) 0%,
    rgba(10, 20, 10, 0.10) 30%,
    rgba(5, 15, 5, 0.70) 100%
  );
}

/* Floating golden particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-particles span {
  position: absolute;
  bottom: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,81,0.6), transparent 70%);
  width: var(--size, 4px);
  height: var(--size, 4px);
  left: var(--x, 50%);
  opacity: 0;
  animation: rise-particle var(--dur, 14s) linear var(--delay, 0s) infinite;
}

@keyframes rise-particle {
  0%   { transform: translateY(0) scale(0.5); opacity: 0; }
  8%   { opacity: 0.8; }
  85%  { opacity: 0.2; }
  100% { transform: translateY(-100vh) scale(1.5); opacity: 0; }
}

/* Light beams */
.hero-beam {
  position: absolute;
  top: -250px; right: 140px;
  width: 2px; height: 700px;
  background: linear-gradient(to bottom, transparent, rgba(200,169,81,0.08), transparent);
  transform: rotate(22deg);
  pointer-events: none;
}

.hero-beam-2 {
  position: absolute;
  top: -150px; right: 220px;
  width: 1px; height: 500px;
  background: linear-gradient(to bottom, transparent, rgba(200,169,81,0.05), transparent);
  transform: rotate(22deg);
  pointer-events: none;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: 0 var(--container-padding);
}

/* Year badge */
.hero-year-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  background: rgba(200,169,81,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(200,169,81,0.25);
  border-radius: 40px;
  color: var(--accent-warm);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
  animation: float-badge 3.5s ease-in-out infinite;
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* Hero title */
.hero-title {
  font-size: 3.75rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.4);
}

.hero-title .highlight {
  display: block;
  font-size: inherit;
  background: linear-gradient(135deg, #FFD54F 0%, #C8A951 55%, #9a6e1a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtitle bar */
.hero-subtitle-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 28px;
  max-width: 520px;
}

.hero-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
}

.hero-subtitle-text {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* Description */
.hero-description {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin: 0 auto 36px;
  max-width: 540px;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: scroll-bounce 2s ease infinite;
}

.hero-scroll i {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.35);
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

@media (max-width: 992px) {
  .hero-beam, .hero-beam-2 { display: none; }
  .hero-title { font-size: 3rem; }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
  }
  .hero-description {
    font-size: 0.92rem;
    margin-bottom: 28px;
    line-height: 1.7;
  }
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }
  .hero-subtitle-text {
    font-size: 0.72rem;
    letter-spacing: 0.5px;
  }
  .hero-subtitle-bar {
    gap: 10px;
    margin-bottom: 20px;
  }
  .hero-year-badge {
    font-size: 0.68rem;
    padding: 6px 16px;
    margin-bottom: 24px;
    letter-spacing: 1px;
  }
  .hero-buttons {
    margin-bottom: 36px;
    gap: 10px;
  }
  .hero-content {
    padding: 0 16px;
  }
}

@media (max-width: 400px) {
  .hero-title {
    font-size: 1.75rem;
    margin-bottom: 12px;
  }
  .hero-description {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }
  .hero-subtitle-text {
    font-size: 0.65rem;
    white-space: normal;
    text-align: center;
  }
  .hero-subtitle-bar {
    flex-direction: column;
    gap: 6px;
  }
  .hero-line {
    width: 60px;
  }
  .hero-year-badge {
    font-size: 0.62rem;
    padding: 5px 12px;
    margin-bottom: 18px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-bottom: 28px;
  }
  .hero-content {
    padding: 0 12px;
  }
}


/* ========== TRUST SECTION ========== */
.trust-section {
  padding: 100px 0;
  background: var(--bg-section);
  position: relative;
}

.trust-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%232E7D32' stroke-width='0.5' opacity='0.03'%3E%3Cpath d='M40 0 L80 40 L40 80 L0 40 Z'/%3E%3Cpath d='M40 10 L70 40 L40 70 L10 40 Z'/%3E%3Cpath d='M40 20 L60 40 L40 60 L20 40 Z'/%3E%3Ccircle cx='40' cy='40' r='15'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
  pointer-events: none;
}

@media (max-width: 768px) {
  .trust-section {
    padding: 60px 0;
  }
}


/* ========== HOW IT WORKS SECTION ========== */
.how-section {
  padding: 100px 0;
  background: var(--bg-main);
  position: relative;
}

@media (max-width: 768px) {
  .how-section {
    padding: 60px 0;
  }
}


/* ========== ANIMAL SELECTION SECTION ========== */
.animal-section {
  padding: 100px 0;
  background: var(--bg-section);
}

.animal-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .animal-section {
    padding: 60px 0;
  }
  .animal-cards-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}


/* ========== GALLERY SECTION ========== */
.gallery-section {
  padding: 100px 0;
  background: var(--bg-main);
}

.gallery-filter-bar {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-section);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 60px 0;
  }
  .gallery-filter-bar {
    gap: 6px;
    margin-bottom: 24px;
  }
  .filter-btn {
    padding: 6px 14px;
    font-size: 0.8rem;
  }
}


/* ========== CTA SECTION ========== */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1A3A1A 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23C8A951' stroke-width='0.5' opacity='0.04'%3E%3Cpath d='M40 0 L80 40 L40 80 L0 40 Z'/%3E%3Cpath d='M40 15 L65 40 L40 65 L15 40 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.cta-emoji {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .cta-section {
    padding: 60px 0;
  }
  .cta-title {
    font-size: 1.65rem;
  }
  .cta-subtitle {
    font-size: 0.92rem;
    margin-bottom: 28px;
  }
  .cta-emoji {
    font-size: 2rem;
    margin-bottom: 12px;
  }
}

@media (max-width: 400px) {
  .cta-title {
    font-size: 1.35rem;
  }
  .cta-subtitle {
    font-size: 0.85rem;
    margin-bottom: 24px;
  }
}


/* ========== HISSELER (INFO) PAGE ========== */
.hisseler-page {
  padding-top: calc(var(--navbar-height) + 40px);
}

.hisse-cta-box {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 40px;
  border-radius: var(--border-radius-xl);
  text-align: center;
  color: white;
}

@media (max-width: 768px) {
  .hisseler-page {
    padding-top: calc(var(--navbar-height) + 20px);
  }
  .hisse-cta-box {
    padding: 28px 20px;
    border-radius: var(--border-radius-lg);
  }
  .hisse-cta-box h3 {
    font-size: 1.2rem !important;
  }
  .hisse-cta-box p {
    font-size: 0.9rem !important;
  }
}


/* ========== TAKIP PAGE ========== */
.takip-page {
  padding-top: calc(var(--navbar-height) + 40px);
}

@media (max-width: 768px) {
  .takip-page {
    padding-top: calc(var(--navbar-height) + 20px);
  }
}


/* ========== GALERI PAGE ========== */
.galeri-page {
  padding-top: calc(var(--navbar-height) + 40px);
}

@media (max-width: 768px) {
  .galeri-page {
    padding-top: calc(var(--navbar-height) + 20px);
  }
}


/* ========== ILETISIM PAGE ========== */
.iletisim-page {
  padding-top: calc(var(--navbar-height) + 40px);
}

@media (max-width: 768px) {
  .iletisim-page {
    padding-top: calc(var(--navbar-height) + 20px);
  }
}


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

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

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

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}


/* ========== EVE TESLİMAT BANNER ========== */
.delivery-banner {
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 50%, #388E3C 100%);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.delivery-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.delivery-banner-inner {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.delivery-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.delivery-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  animation: pulse-delivery 2s ease-in-out infinite;
}

@keyframes pulse-delivery {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0.2); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 12px rgba(255,255,255,0); }
}

.delivery-text-wrap {
  text-align: center;
  color: white;
  padding: 0 var(--container-padding);
}

.delivery-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: white;
}

.delivery-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

.delivery-features-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 900px;
  padding: 0 var(--container-padding);
}

.delivery-feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 40px;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.delivery-feature-chip:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

.delivery-feature-chip i {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

@media (max-width: 768px) {
  .delivery-banner-inner {
    padding: 32px 0;
    gap: 16px;
  }
  .delivery-icon-circle {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }
  .delivery-title {
    font-size: 1.2rem;
  }
  .delivery-desc {
    font-size: 0.88rem;
  }
  .delivery-features-row {
    gap: 8px;
  }
  .delivery-feature-chip {
    font-size: 0.75rem;
    padding: 6px 12px;
    gap: 5px;
  }
}

@media (max-width: 400px) {
  .delivery-banner-inner {
    padding: 24px 0;
    gap: 12px;
  }
  .delivery-title {
    font-size: 1.05rem;
  }
  .delivery-desc {
    font-size: 0.82rem;
  }
  .delivery-feature-chip {
    font-size: 0.7rem;
    padding: 5px 10px;
  }
}


/* ========== 3-COLUMN ANIMAL GRID ========== */
.animal-cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.animal-card-tag {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 500;
}

.bagis-animal-card {
  border-color: var(--accent) !important;
}

.bagis-ribbon {
  position: absolute;
  top: 16px;
  right: -8px;
  background: linear-gradient(135deg, #C0392B, #E74C3C);
  color: white;
  padding: 6px 20px 6px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 4px 0 0 4px;
  box-shadow: 0 4px 12px rgba(192, 57, 43, 0.3);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
}

.bagis-ribbon::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 0;
  border: 4px solid transparent;
  border-left-color: #922B21;
  border-top-color: #922B21;
}

@media (max-width: 992px) {
  .animal-cards-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .animal-cards-grid-3 {
    grid-template-columns: 1fr;
    max-width: 380px;
    gap: 16px;
  }
  .bagis-ribbon {
    font-size: 0.75rem;
    padding: 5px 14px 5px 10px;
  }
}


/* ========== BAĞIŞ KURBAN SECTION ========== */
.bagis-kurban-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1B4D1E 0%, #14371A 60%, #1B4D1E 100%);
  border-top: 1px solid rgba(200,169,81,0.15);
  border-bottom: 1px solid rgba(200,169,81,0.15);
  position: relative;
  overflow: hidden;
}

.bagis-kurban-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%238D6E37' stroke-width='0.5' opacity='0.04'%3E%3Cpath d='M40 0 L80 40 L40 80 L0 40 Z'/%3E%3Cpath d='M40 15 L65 40 L40 65 L15 40 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
  pointer-events: none;
}

.bagis-kurban-card {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.bagis-left {
  min-width: 0;
}

.bagis-right {
  min-width: 0;
}

.bagis-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(200,169,81,0.1);
  color: var(--accent);
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  border: 1px solid rgba(200,169,81,0.2);
}

.bagis-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.75rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 28px;
}

.bagis-title span {
  color: #7ED87E;
  font-style: italic;
}

.bagis-hadis {
  background: rgba(255,255,255,0.08);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  border-left: 4px solid rgba(200,169,81,0.6);
  margin-bottom: 24px;
}

.bagis-hadis p {
  font-family: 'Amiri', serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  font-style: italic;
  margin: 8px 0;
}

.bagis-hadis span {
  font-size: 0.85rem;
  color: var(--accent-warm);
  font-weight: 600;
}

.bagis-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.bagis-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

.bagis-feature-item i {
  color: #6ED87E;
  flex-shrink: 0;
}

/* Btn-outline override inside dark bagis sections */
.bagis-inline-right .btn-outline,
.bagis-right .btn-outline {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.25);
  background: transparent;
}
.bagis-inline-right .btn-outline:hover,
.bagis-right .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  border-color: rgba(255,255,255,0.5);
  box-shadow: none;
}

/* Bağış Price Card */
.bagis-price-card {
  background: var(--bg-card);
  border-radius: var(--border-radius-xl);
  padding: 40px 32px;
  text-align: center;
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.bagis-price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}

.bagis-price-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.bagis-price-value {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.bagis-price-note {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
}

.bagis-brand-tag {
  text-align: center;
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--text-light);
  font-style: italic;
  letter-spacing: 0.5px;
  opacity: 0.7;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.bagis-brand-tag i {
  color: var(--primary);
}

@media (max-width: 1024px) {
  .bagis-kurban-card {
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
  }
  .bagis-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {
  .bagis-kurban-section {
    padding: 64px 0;
  }
  .bagis-kurban-card {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .bagis-title {
    font-size: 1.75rem;
    margin-bottom: 18px;
  }
  .bagis-badge {
    font-size: 0.78rem;
    padding: 6px 16px;
  }
  .bagis-hadis {
    padding: 18px;
  }
  .bagis-hadis p {
    font-size: 0.92rem;
  }
  .bagis-price-value {
    font-size: 2.5rem;
  }
  .bagis-price-card {
    padding: 32px 24px;
  }
  .bagis-features {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .bagis-feature-item {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .bagis-kurban-section {
    padding: 48px 0;
  }
  .bagis-title {
    font-size: 1.45rem;
  }
  .bagis-features {
    grid-template-columns: 1fr;
  }
  .bagis-price-value {
    font-size: 2rem;
  }
  .bagis-price-card {
    padding: 28px 20px;
  }
}


/* ========== EVE TESLİMAT MINI BANNER (Hisseler Page) ========== */
.eve-teslimat-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.06), rgba(46, 125, 50, 0.02));
  border: 1.5px solid rgba(46, 125, 50, 0.15);
  border-radius: var(--border-radius);
  margin-bottom: 32px;
  animation: shimmer-border 3s ease-in-out infinite;
}

@keyframes shimmer-border {
  0%, 100% { border-color: rgba(46, 125, 50, 0.15); }
  50% { border-color: rgba(46, 125, 50, 0.35); }
}

.eve-teslimat-mini i {
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.eve-teslimat-mini span {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .eve-teslimat-mini {
    padding: 12px 16px;
    gap: 10px;
    margin-bottom: 24px;
  }
  .eve-teslimat-mini i {
    font-size: 1.2rem;
  }
  .eve-teslimat-mini span {
    font-size: 0.82rem;
  }
}


/* ========== BAĞIŞ KURBAN INLINE (Hisseler Tab) ========== */
.bagis-kurban-inline {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 56px;
  align-items: center;
  background: linear-gradient(135deg, #1B4D1E 0%, #14371A 60%, #1B4D1E 100%);
  border-radius: var(--border-radius-xl);
  padding: 56px 48px;
  border: 1px solid rgba(200,169,81,0.2);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.bagis-kurban-inline::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%238D6E37' stroke-width='0.5' opacity='0.04'%3E%3Cpath d='M40 0 L80 40 L40 80 L0 40 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
  pointer-events: none;
}

.bagis-inline-left {
  min-width: 0;
  position: relative;
  z-index: 1;
}

.bagis-inline-right {
  min-width: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.bagis-kurban-inline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(200,169,81,0.6), transparent);
  z-index: 2;
}

.bagis-inline-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 18px;
  background: rgba(200,169,81,0.12);
  color: var(--accent);
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  border: 1px solid rgba(200,169,81,0.25);
}

.bagis-inline-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.25;
}

.bagis-inline-hadis {
  background: rgba(255,255,255,0.07);
  border-radius: var(--border-radius);
  padding: 20px;
  border-left: 3px solid rgba(200,169,81,0.55);
  margin-bottom: 24px;
}

.bagis-inline-hadis p {
  font-family: 'Amiri', serif;
  font-size: 0.98rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.7;
  font-style: italic;
  margin: 6px 0;
}

.bagis-inline-hadis span {
  font-size: 0.8rem;
  color: var(--accent-warm);
  font-weight: 600;
}

.bagis-inline-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.bagis-inline-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}

.bagis-inline-feature i {
  color: #6ED87E;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.bagis-inline-price-box {
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 2px solid var(--accent);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  position: relative;
  overflow: hidden;
}

.bagis-inline-price-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}

.bagis-inline-price-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.bagis-inline-price {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.bagis-inline-price-note {
  font-size: 0.88rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .bagis-kurban-inline {
    grid-template-columns: 1.4fr 1fr;
    gap: 36px;
    padding: 44px 36px;
  }
  .bagis-inline-title {
    font-size: 1.7rem;
  }
}

@media (max-width: 768px) {
  .bagis-kurban-inline {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 24px;
    border-radius: var(--border-radius-lg);
  }
  .bagis-inline-title {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }
  .bagis-inline-hadis {
    padding: 14px;
  }
  .bagis-inline-hadis p {
    font-size: 0.88rem;
  }
  .bagis-inline-features {
    grid-template-columns: 1fr;
  }
  .bagis-inline-price {
    font-size: 2.25rem;
  }
  .bagis-inline-price-box {
    padding: 24px 18px;
  }
  .bagis-inline-feature {
    font-size: 0.82rem;
  }
}

@media (max-width: 400px) {
  .bagis-kurban-inline {
    padding: 18px;
    gap: 18px;
  }
  .bagis-inline-title {
    font-size: 1.05rem;
  }
  .bagis-inline-price {
    font-size: 1.75rem;
  }
}
