@import url("https://fonts.googleapis.com/css2?family=Prociono&display=swap"); /* alt BAŞLIK İÇİN */
@import url("https://fonts.googleapis.com/css2?family=Audiowide&display=swap");
/*BAŞLIK İÇİN */
@import url("https://fonts.googleapis.com/css2?family=Agdasima:wght@400;700&display=swap");
/* GENEL STILLER */

/* FEATURES MODERN CSS */
:root {
  --primary: #1d908b;
  --primary-dark: #16716d;
  --primary-light: #25b2ac;
  --secondary: #ffa600;
  --secondary-dark: #e69500;
  --dark: #2d3142;
  --gray-dark: #4f5567;
  --gray: #7b7e8c;
  --gray-light: #eaeaea;
  --bg-light: #f9fafb;
  --white: #ffffff;

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.12);

  --radius-sm: 6px;
  --radius: 8px;
  --radius-lg: 12px;

  --transition: all 0.3s ease;

  --font-main: "Inter", sans-serif;
  --font-heading: "Montserrat", sans-serif;
  --gradient-primary: linear-gradient(135deg, #ffa600, #ff8c00);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.scrolling-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000; /* Header'dan daha yüksek z-index */
  background: var(--gradient-primary);
  color: white;
  padding: 10px 0;
  overflow: hidden;
}
.scrolling-text {
  display: inline-block;
  white-space: nowrap;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buton Düzeltmesi - Tüm butonları eşit hizalama */
.container .btn,
.container a[href*="raporlama"],
.container a[href*="muhasebe"] {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  height: 45px;
  padding: 0 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  vertical-align: middle;
  text-decoration: none;
  margin: 10px 5px;
  white-space: nowrap;
}

/* Butonların hover durumu */
.container .btn:hover,
.container a[href*="raporlama"]:hover,
.container a[href*="muhasebe"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Buton içindeki ikonların hizalaması */
.container .btn i,
.container a[href*="raporlama"] i,
.container a[href*="muhasebe"] i {
  margin-right: 8px;
  font-size: 18px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
}

main p {
  margin-bottom: 1rem;
}

main a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}

main ul {
  list-style: none;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  color: var(--white);
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 6px 15px rgba(29, 144, 139, 0.25);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(29, 144, 139, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--white);
  color: var(--dark);
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--gray-light);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary i {
  color: var(--secondary);
  font-size: 18px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.25);
  transition: var(--transition);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp i {
  font-size: 18px;
}

/* Section Styles */
.section-badge {
  display: inline-block;
  background-color: rgba(29, 144, 139, 0.1);
  color: #1d908b;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #2d3142;
  margin-bottom: 20px;
}

.section-description {
  max-width: 700px;
  margin: 0 auto;
  color: #4f5567;
  font-size: 16px;
  line-height: 1.7;
}

/* Hero Section */
.hero-features {
  position: relative;
  background: linear-gradient(135deg, #f9fafb 0%, #ecf0f3 100%);
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 30px;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1;
  max-width: 550px;
  z-index: 2;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
}

.hero-label .dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  margin-right: 10px;
}

.hero-label .label-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 2px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--gray-dark);
  margin-bottom: 30px;
  max-width: 90%;
}

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-image {
  max-width: 100%;
  height: auto;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.floating-element {
  position: absolute;
  display: flex;
  align-items: center;
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 12px 15px;
  box-shadow: var(--shadow);
  gap: 10px;
  z-index: 3;
}

.fe-1 {
  top: 20%;
  right: 5%;
  animation: float 5s ease-in-out infinite;
}

.fe-2 {
  bottom: 25%;
  left: 10%;
  animation: float 4s ease-in-out infinite 1s;
}

.fe-3 {
  bottom: 15%;
  right: 25%;
  animation: float 6s ease-in-out infinite 2s;
}

.fe-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(29, 144, 139, 0.1);
  color: var(--primary);
  border-radius: 50%;
}

.fe-text {
  font-weight: 500;
  font-size: 14px;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(
    135deg,
    rgba(29, 144, 139, 0.05) 0%,
    rgba(29, 144, 139, 0.1) 100%
  );
  top: -100px;
  right: -50px;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(
    135deg,
    rgba(255, 166, 0, 0.05) 0%,
    rgba(255, 166, 0, 0.1) 100%
  );
  bottom: -70px;
  left: 10%;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(
    135deg,
    rgba(41, 98, 255, 0.05) 0%,
    rgba(41, 98, 255, 0.1) 100%
  );
  top: 20%;
  left: -50px;
}

.scroll-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gray);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  z-index: 5;
}

.scroll-down span {
  margin-bottom: 8px;
}

.scroll-down i {
  animation: bounce 2s infinite;
}

.scroll-down:hover {
  color: var(--primary);
}
/**/

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
}

.cta-shape.shape-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.05) 70%
  );
  top: -100px;
  right: -100px;
}

.cta-shape.shape-2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.05) 70%
  );
  bottom: -50px;
  left: -50px;
}

/* Modern Özellik Kartları CSS */

/* Bölüm Başlığı */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.features-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f3 100%);
  overflow: hidden;
  position: relative;
}

.section-badge {
  display: inline-block;
  background-color: rgba(29, 144, 139, 0.1);
  color: #1d908b;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #2d3142;
  margin-bottom: 20px;
}

.section-description {
  max-width: 700px;
  margin: 0 auto;
  color: #4f5567;
  font-size: 16px;
  line-height: 1.7;
}

/* Filtre Butonları */
.features-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 10px 20px;
  background-color: transparent;
  border: 1px solid #e0e0e0;
  border-radius: 30px;
  color: #4f5567;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active {
  background-color: #1d908b;
  color: #fff;
  border-color: #1d908b;
  box-shadow: 0 4px 15px rgba(29, 144, 139, 0.2);
}

.filter-btn:hover:not(.active) {
  background-color: #f5f5f5;
  border-color: #d0d0d0;
}

/* Özellik Kartları Container */
.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

/* Özellik Kartı Tasarımı */
.feature-card {
  position: relative;
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  height: 220px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-icon {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1d908b 0%, #25b2ac 100%);
  color: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 8px 20px rgba(29, 144, 139, 0.2);
  transition: all 0.3s ease;
  z-index: 2;
}

.feature-card:hover .card-icon {
  transform: scale(1.1) rotate(10deg);
  width: 30px;
  height: 30px;
  top: 10px;
}

.card-content {
  padding: 30px 30px 30px 110px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.feature-card:hover .card-content {
  opacity: 0;
  transform: translateY(-20px);
}

.card-content h3 {
  margin: 0 0 10px 0;
  font-size: 20px;
  font-weight: 600;
  color: #2d3142;
}

.card-content p {
  color: #7b7e8c;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  color: #1d908b;
  font-weight: 600;
  font-size: 14px;
  margin-top: auto;
  transition: all 0.3s ease;
}

.card-link i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.card-link:hover i {
  transform: translateX(5px);
}

/* Card Details (Hover State) */
.card-details {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  border-radius: 16px;
}

.feature-card:hover .card-details {
  opacity: 1;
  transform: translateY(0);
}

.card-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-details li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 14px;
  color: #4f5567;
}

.card-details li:last-child {
  margin-bottom: 0;
}

.card-details li i {
  color: #1d908b;
  margin-right: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Filtreleme Animasyonu */
.feature-card.hide {
  display: none;
  transform: scale(0.8);
  pointer-events: none;
  height: 0;
  margin: 0;
  padding: 0;
}

.feature-card.show {
  display: flex;

  transform: scale(1);
  transition: all 0.5s ease;
}

/* Responsive Stiller */
@media (max-width: 1200px) {
  .features-container {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 992px) {
  .features-container {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .features-filter {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 15px;
  }

  .filter-btn {
    white-space: nowrap;
  }

  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 70px 0;
  }

  .features-container {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  .section-title {
    font-size: 28px;
  }

  .card-content {
    padding: 25px 25px 25px 100px;
  }

  .card-icon {
    top: 25px;
    left: 25px;
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .features-section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 24px;
  }

  .card-content {
    padding: 70px 20px 20px 20px;
  }

  .card-icon {
    top: 20px;
    left: 20px;
  }

  .card-details {
    padding: 20px;
  }
}
