/* Şerefbey - Yeni Modern Hero Tasarımı */

.hero-serefbey {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  filter: blur(2px);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.95) 0%,
    rgba(229, 66, 33, 0.1) 50%,
    rgba(26, 26, 46, 0.85) 100%
  );
  z-index: 2;
}

.hero-serefbey .container {
  position: relative;
  z-index: 3;
  padding-top: 100px;
  padding-bottom: 100px;
}

.hero-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left Content - Text */
.hero-text-content {
  animation: slideInLeft 1s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(229, 66, 33, 0.15);
  border: 1px solid rgba(229, 66, 33, 0.3);
  border-radius: 50px;
  color: #ff6b4a;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.hero-badge svg {
  color: #ffd700;
}

.hero-main-title {
  font-size: clamp(48px, 8vw, 84px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 28px;
  font-family: "Georgia", serif;
}

.hero-title-line {
  display: block;
  color: #ffffff;
}

.hero-title-highlight {
  background: linear-gradient(135deg, #e54221 0%, #ff8a5b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-description {
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 560px;
}

/* CTA Buttons */
.hero-cta-group {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #e54221 0%, #ff6b4a 100%);
  color: white;
  font-size: 17px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(229, 66, 33, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s;
}

.btn-primary-hero:hover::before {
  left: 100%;
}

.btn-primary-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(229, 66, 33, 0.4);
}

.btn-secondary-hero {
  padding: 18px 36px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 17px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.btn-secondary-hero:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-item strong {
  font-size: 36px;
  font-weight: 900;
  color: #e54221;
  line-height: 1;
}

.stat-item span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Right Content - Image */
.hero-image-content {
  position: relative;
  animation: slideInRight 1s ease-out;
}

.hero-product-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s ease;
}

.hero-product-card:hover {
  transform: translateY(-10px) scale(1.02);
}

.product-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(229, 66, 33, 0.2) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
  pointer-events: none;
}

.hero-product-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  position: relative;
  z-index: 2;
}

.product-card-badge {
  position: absolute;
  top: 40px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
  z-index: 3;
}

/* Wave Divider */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 4;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-main-title {
    font-size: clamp(40px, 7vw, 64px);
  }

  .hero-description {
    font-size: 18px;
  }

  .hero-stats {
    gap: 32px;
  }

  .stat-item strong {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .hero-serefbey .container {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero-main-title {
    font-size: clamp(36px, 10vw, 48px);
    margin-bottom: 20px;
  }

  .hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary-hero,
  .btn-secondary-hero {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
    font-size: 15px;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .stat-item strong {
    font-size: 24px;
  }

  .stat-item span {
    font-size: 12px;
  }

  .product-card-badge {
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    font-size: 12px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 10px 18px;
  }
}

@media (max-width: 480px) {
  .hero-main-title {
    font-size: 32px;
  }

  .hero-stats {
    padding-top: 30px;
  }

  .stat-item {
    flex: 1 1 100%;
  }
}

/* Features Section - Modern Şerefbey Style */
.features-serefbey {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}

.section-header-serefbey {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.section-label {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(
    135deg,
    rgba(229, 66, 33, 0.1),
    rgba(255, 138, 91, 0.1)
  );
  color: #e54221;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.section-title-serefbey {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  color: #1a1a2e;
  margin-bottom: 16px;
  font-family: "Georgia", serif;
}

.text-gradient {
  background: linear-gradient(135deg, #e54221 0%, #ff8a5b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.6;
}

.features-grid-serefbey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.feature-card-modern {
  background: white;
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #e54221, #ff8a5b);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card-modern:hover::before {
  transform: scaleX(1);
}

.feature-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(229, 66, 33, 0.15);
}

.feature-icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  transition: transform 0.3s ease;
}

.feature-card-modern:hover .feature-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.feature-icon-wrapper.green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.feature-icon-wrapper.blue {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.feature-icon-wrapper.orange {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.feature-icon-wrapper.purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.feature-icon-wrapper svg {
  color: white;
}

.feature-title-modern {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
  line-height: 1.3;
}

.feature-desc-modern {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
}

/* Responsive Features */
@media (max-width: 1200px) {
  .features-grid-serefbey {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 1024px) {
  .features-serefbey {
    padding: 80px 0;
  }

  .section-header-serefbey {
    margin-bottom: 60px;
  }
}

@media (max-width: 768px) {
  .features-serefbey {
    padding: 60px 0;
  }

  .features-grid-serefbey {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card-modern {
    padding: 32px 24px;
  }

  .section-title-serefbey {
    font-size: clamp(28px, 6vw, 36px);
  }

  .section-subtitle {
    font-size: 16px;
  }

  .feature-icon-wrapper {
    width: 64px;
    height: 64px;
  }

  .feature-title-modern {
    font-size: 18px;
  }

  .feature-desc-modern {
    font-size: 14px;
  }
}

/* Page Hero - For Inner Pages */
.page-hero-serefbey {
  position: relative;
  padding: 140px 0 100px;
  background: transparent;
  overflow: hidden;
}

.page-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.page-hero-serefbey .container {
  position: relative;
  z-index: 3;
}

.page-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.page-breadcrumb a {
  color: #e54221;
  text-decoration: none;
  transition: color 0.3s;
}

.page-breadcrumb a:hover {
  color: #ff6b4a;
}

.page-breadcrumb span:last-child {
  color: white;
}

.page-hero-title {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
  font-family: "Georgia", serif;
}

.page-hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-hero-serefbey {
    padding: 100px 0 80px;
  }

  .page-hero-title {
    font-size: clamp(32px, 8vw, 48px);
  }

  .page-hero-subtitle {
    font-size: 16px;
  }
}
