/* ========================
   GTK Studio - Home Page Enhancements
   Creative & Minimal Steps Section Additions
   Version: 2.1 - Updated: 2025-11-30 - Lighting Section Fixed
   ======================== */

/* Steps Section - Additional Background Enhancement */
.steps-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(125, 216, 125, 0.2), transparent);
  z-index: 1;
}

/* Particle effect background - subtle */
.steps-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(125, 216, 125, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(44, 44, 44, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Step Card - Additional Creative Elements */
/* Counter Badge - Circular number badge */
.step-card::before {
  content: attr(data-step);
  position: absolute;
  top: -18px;
  left: 35px;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--accent-green) 0%, #6bc96b 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(125, 216, 125, 0.4);
  z-index: 10;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 3px solid white;
}

.step-card:hover::before {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 6px 20px rgba(125, 216, 125, 0.6);
}

/* Decorative corner gradient on card inner */
.step-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(125, 216, 125, 0.06), transparent);
  border-radius: 24px 0 50px 0;
  transition: all 0.4s ease;
  z-index: 0;
}

.step-card:hover .step-card-inner::before {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, rgba(125, 216, 125, 0.1), transparent);
}

/* Enhanced accent line with glow */
.step-card:hover .step-card-accent {
  box-shadow: 0 0 20px rgba(125, 216, 125, 0.6);
}

/* Title underline animation on hover */
.steps-section .step-card-title {
  position: relative;
  display: inline-block;
}

.steps-section .step-card-title::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-green), transparent);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.steps-section .step-card:hover .step-card-title::after {
  width: 60%;
}

/* Responsive adjustments for badge */
@media (max-width: 992px) {
  .step-card::before {
    top: -14px;
    left: 25px;
    width: 36px;
    height: 36px;
    font-size: 0.875rem;
  }
}

@media (max-width: 576px) {
  .step-card::before {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
    border-width: 2px;
  }
  
  .step-card-inner::before {
    width: 50px;
    height: 50px;
  }
  
  .step-card:hover .step-card-inner::before {
    width: 60px;
    height: 60px;
  }
}

/* ========================
   Landscape Lighting Section
   ======================== */

.lighting-section {
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.lighting-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(125, 216, 125, 0.3), transparent);
  z-index: 1;
}

.lighting-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 15% 25%, rgba(255, 184, 0, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(255, 184, 0, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Header */
.lighting-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.lighting-header-decoration {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.lighting-title {
  margin-bottom: 1rem;
  color: var(--text-primary);
  animation: fadeInUp 0.6s ease 0.1s forwards;
  opacity: 0;
}

.lighting-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

/* Content Wrapper */
.lighting-content-wrapper {
  position: relative;
  z-index: 1;
}

.lighting-main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: start;
}

/* Image Container */
.lighting-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  min-height: 500px;
}

.lighting-image-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.lighting-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lighting-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.lighting-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.lighting-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.lighting-badge svg {
  color: #7DD87D;
}

.lighting-badge span {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.938rem;
}

/* Text Content */
.lighting-text-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.lighting-intro {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.lighting-description {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0;
}

/* Features */
.lighting-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.lighting-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.lighting-feature-item:hover {
  border-color: rgba(125, 216, 125, 0.3);
  box-shadow: 0 8px 24px rgba(125, 216, 125, 0.08);
  transform: translateX(5px);
}

.lighting-feature-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(125, 216, 125, 0.1) 0%, rgba(125, 216, 125, 0.05) 100%);
  border-radius: 12px;
  color: #7DD87D;
  transition: all 0.3s ease;
}

.lighting-feature-item:hover .lighting-feature-icon {
  background: linear-gradient(135deg, rgba(125, 216, 125, 0.15) 0%, rgba(125, 216, 125, 0.08) 100%);
  transform: scale(1.05);
}

.lighting-feature-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.lighting-feature-content p {
  margin: 0;
  font-size: 0.938rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Products Section */
.lighting-products {
  background: white;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.lighting-products-title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2.5rem;
  position: relative;
  display: inline-block;
  width: 100%;
}

.lighting-products-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #7DD87D, transparent);
  border-radius: 2px;
}

.lighting-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.lighting-product-card {
  position: relative;
  padding: 2rem;
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
  border-radius: 20px;
  border: 2px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  overflow: hidden;
}

.lighting-product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #7DD87D, #95E095);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.lighting-product-card:hover::before {
  transform: scaleX(1);
}

.lighting-product-card:hover {
  border-color: rgba(125, 216, 125, 0.2);
  box-shadow: 0 12px 32px rgba(125, 216, 125, 0.12);
  transform: translateY(-8px);
}

.lighting-product-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(125, 216, 125, 0.12) 0%, rgba(125, 216, 125, 0.06) 100%);
  border-radius: 20px;
  margin-bottom: 1.5rem;
  color: #7DD87D;
  transition: all 0.4s ease;
}

.lighting-product-card:hover .lighting-product-icon {
  background: linear-gradient(135deg, rgba(125, 216, 125, 0.2) 0%, rgba(125, 216, 125, 0.1) 100%);
  transform: rotate(5deg) scale(1.05);
}

.lighting-feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.lighting-product-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.lighting-product-desc {
  font-size: 0.938rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  min-height: 60px;
}

.lighting-product-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(125, 216, 125, 0.1);
  border-radius: 50%;
  color: #7DD87D;
  transition: all 0.3s ease;
}

.lighting-product-card:hover .lighting-product-arrow {
  background: #7DD87D;
  color: white;
  transform: translateX(5px);
}

/* CTA */
.lighting-cta {
  text-align: center;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(125, 216, 125, 0.08) 0%, rgba(125, 216, 125, 0.04) 100%);
  border-radius: 16px;
  border: 1px solid rgba(125, 216, 125, 0.15);
}

.lighting-cta-text {
  font-size: 1.125rem;
  color: var(--text-primary);
  margin: 0 0 1.5rem 0;
  font-weight: 500;
}

.btn-lighting-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #7DD87D 0%, #95E095 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(125, 216, 125, 0.3);
}

.btn-lighting-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(125, 216, 125, 0.4);
  color: white;
}

.btn-lighting-primary svg {
  transition: transform 0.3s ease;
}

.btn-lighting-primary:hover svg {
  transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .lighting-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .lighting-main-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .lighting-image-container {
    min-height: 400px;
  }

  .lighting-products {
    padding: 2rem;
  }

  .lighting-products-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .lighting-header {
    margin-bottom: 3rem;
  }

  .lighting-products-grid {
    grid-template-columns: 1fr;
  }

  .lighting-product-card {
    padding: 1.75rem;
  }

  .lighting-image-container {
    min-height: 350px;
  }

  .lighting-cta {
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  .lighting-feature-item {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }

  .lighting-feature-icon {
    width: 48px;
    height: 48px;
  }

  .lighting-products {
    padding: 1.5rem;
  }

  .lighting-products-title {
    font-size: 1.5rem;
  }

  .btn-lighting-primary {
    width: 100%;
    justify-content: center;
  }
}

/* ========================
   Landscape Lighting Section (Peyzaj Aydınlatma)
   ======================== */

.landscape-lighting-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.landscape-lighting-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(125, 216, 125, 0.3), transparent);
}

.lighting-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lighting-image-wrapper:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.lighting-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.lighting-image-wrapper:hover .lighting-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(125, 216, 125, 0.1) 0%, rgba(44, 44, 44, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lighting-image-wrapper:hover .image-overlay {
  opacity: 1;
}

.lighting-content {
  padding: 2rem 0 2rem 3rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(125, 216, 125, 0.1) 0%, rgba(125, 216, 125, 0.05) 100%);
  color: var(--accent-green);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(125, 216, 125, 0.2);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-description {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.lighting-features {
  margin: 2.5rem 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  padding: 1.25rem;
  background: white;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(125, 216, 125, 0.3);
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent-green) 0%, #6bc96b 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 8px 20px rgba(125, 216, 125, 0.4);
}

.feature-text h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}

.feature-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

.lighting-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
}

.btn {
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-green) 0%, #6bc96b 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(125, 216, 125, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(125, 216, 125, 0.4);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary-dark);
}

.btn-outline:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 991px) {
  .lighting-content {
    padding: 2rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .lighting-cta {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .landscape-lighting-section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .feature-item {
    padding: 1rem;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
  }
}


