/*--------------------------------------------------------------
# Genel Stiller
--------------------------------------------------------------*/
:root {
  --primary-color: #4f4649;
  --secondary-color: #eab8a8;
  --accent-color-1: #b2c9df;
  --accent-color-2: #81a297;
  --text-color: #4f4649;
  --light-text: #ffffff;
  --dark-bg: #635c5f;
  --light-bg: #ffffff;
  --section-bg: #f8f9fa;
  --border-color: #e4e4e4;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-color);
  background-color: #fff;
  overflow-x: hidden;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover, a:active, a:focus {
  color: var(--secondary-color);
  outline: none;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin: 0 0 20px 0;
  padding: 0;
  color: var(--primary-color);
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

.section-bg {
  background-color: var(--section-bg);
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
  color: var(--primary-color);
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--secondary-color);
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
  font-size: 18px;
  color: #777777;
}

/*--------------------------------------------------------------
# Hero Banner
--------------------------------------------------------------*/
.hero-banner {
  padding: 120px 0 80px 0;
  background: linear-gradient(135deg, var(--accent-color-1) 0%, var(--accent-color-2) 100%);
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.banner-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.banner-content p {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.banner-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.banner-buttons .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.banner-buttons .btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.banner-buttons .btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
}

.banner-buttons .btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.banner-buttons .btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.banner-image {
  text-align: center;
}

.banner-image img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.banner-image img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .hero-banner {
    padding: 100px 0 60px 0;
    text-align: center;
  }
  
  .banner-content h2 {
    font-size: 2rem;
  }
  
  .banner-content p {
    font-size: 1rem;
  }
  
  .banner-buttons {
    justify-content: center;
  }
  
  .banner-image {
    margin-top: 2rem;
  }
}

/*--------------------------------------------------------------
# Navbar
--------------------------------------------------------------*/
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  transition: all 0.3s ease-in-out;
}

.navbar-brand img {
  max-height: 40px;
}

.navbar-light .navbar-nav .nav-link {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  padding: 10px 15px;
  color: var(--primary-color);
  transition: 0.3s;
  font-size: 16px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--secondary-color);
}

.navbar-light .navbar-toggler {
  color: var(--primary-color);
  border-color: rgba(79, 70, 73, 0.1);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(79, 70, 73, 0.7)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Dropdown Menu */
.navbar .dropdown {
  position: relative;
}

.navbar .dropdown-menu {
  border: none;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-top: 10px;
  padding: 15px 0;
  min-width: 250px;
  background-color: #fff;
  display: none;
  z-index: 1000;
}

.navbar .dropdown-item {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  padding: 10px 20px;
  color: var(--primary-color);
  transition: all 0.3s ease;
  position: relative;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus,
.navbar .dropdown-item.active {
  background-color: transparent;
  color: var(--secondary-color);
  padding-left: 25px;
}

.navbar .dropdown-item:hover::before,
.navbar .dropdown-item.active::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--secondary-color);
}

.navbar .dropdown-toggle::after {
  vertical-align: middle;
  margin-left: 5px;
}

/* Hover ile dropdown görünümünü devre dışı bırakıyoruz */
.navbar .dropdown:hover .dropdown-menu {
  display: none;
}

/* Sadece tıklama ile menu açılmasını sağlıyoruz */
.navbar .dropdown-menu.show {
  display: block;
  animation: fadeIn 0.3s;
  -webkit-animation: fadeIn 0.3s;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@-webkit-keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Sadece tıklama ile menünün açılmasını sağlıyoruz */
/* Bootstrap ile tıklama işlevselliğini yönetiyoruz */
@media (max-width: 991px) {
  .navbar .dropdown-menu {
    border: none;
    box-shadow: none;
    margin-top: 0;
    padding: 0 0 0 15px;
    background-color: transparent;
  }
  
  .navbar .dropdown-item {
    padding: 8px 15px;
  }
  
  .navbar .dropdown-item:hover,
  .navbar .dropdown-item:focus,
  .navbar .dropdown-item.active {
    background-color: transparent;
  }
}



/*--------------------------------------------------------------
# Hizmetler Section
--------------------------------------------------------------*/
.services {
  padding: 100px 0 80px 0;
}

/* Modern Service Box Styles */
.modern-service {
  background: #fff;
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
  margin-bottom: 40px;
}

.modern-service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color-1), var(--accent-color-2));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.modern-service:hover::before {
  transform: scaleX(1);
}

.modern-service:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 30px 20px 30px;
  transition: all 0.3s ease;
}

.service-icon i {
  font-size: 32px;
  color: #fff;
  transition: all 0.3s ease;
}

.modern-service:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-content {
  padding: 0 30px 30px 30px;
}

.service-content h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.service-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 15px;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.feature-tag {
  background: rgba(178, 201, 223, 0.2);
  color: var(--primary-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(178, 201, 223, 0.3);
  transition: all 0.3s ease;
}

.modern-service:hover .feature-tag {
  background: var(--accent-color-1);
  color: #fff;
  border-color: var(--accent-color-1);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 10px 0;
  position: relative;
}

.service-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: width 0.3s ease;
}

.service-link:hover {
  color: var(--secondary-color);
}

.service-link:hover::after {
  width: 100%;
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(5px);
}

.modern-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color-2));
  color: #fff;
  border: none;
  padding: 18px 45px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

.modern-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  color: #fff;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color-1));
}

.modern-btn i {
  transition: transform 0.3s ease;
}

.modern-btn:hover i {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .modern-service {
    margin-bottom: 1px;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    margin: 20px 20px 15px 20px;
  }
  
  .service-icon i {
    font-size: 24px;
  }
  
  .service-content {
    padding: 0 20px 20px 20px;
  }
  
  .service-content h4 {
    font-size: 20px;
  }
  
  .service-features {
    gap: 6px;
  }
  
  .feature-tag {
    font-size: 11px;
    padding: 4px 10px;
  }
  
  .contact .contact-info {
    margin-bottom: 15px;
  }
}

/* Legacy Service Box Styles (for backward compatibility) */
.service-detail-btn {
  display: inline-block;
  padding: 8px 20px;
  margin-top: 15px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.service-detail-btn:hover {
  background-color: var(--secondary-color);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.service-detail-btn i {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.service-detail-btn:hover i {
  margin-left: 10px;
}

/*--------------------------------------------------------------
# Teknolojiler Section
--------------------------------------------------------------*/
.technologies {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(79, 70, 73, 0.05) 0%, rgba(234, 184, 168, 0.05) 100%);
}

.tech-slider-container {
  position: relative;
  padding: 0 20px;
}

.tech-swiper {
  padding: 20px 0;
}

.tech-swiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
  width: auto;
}

.tech-card {
  background: #fff;
  border-radius: 25px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 15px 50px rgba(79, 70, 73, 0.08);
  transition: all 0.4s ease;
  border: 2px solid rgba(234, 184, 168, 0.05);
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tech-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(135deg, #eab8a8, #b2c9df);
  border-radius: 25px 25px 0 0;
}

.tech-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 80px rgba(79, 70, 73, 0.12);
  border-color: rgba(234, 184, 168, 0.2);
}

.tech-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #eab8a8, #b2c9df);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 10px 30px rgba(234, 184, 168, 0.3);
}

.tech-icon::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #eab8a8, #b2c9df);
  border-radius: 28px;
  z-index: -1;
  opacity: 0.2;
  transition: all 0.4s ease;
}

.tech-card:hover .tech-icon::after {
  opacity: 0.4;
  transform: scale(1.1);
}

.tech-icon i {
  font-size: 32px;
  color: #fff;
  transition: all 0.4s ease;
}

.tech-card:hover .tech-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 15px 40px rgba(234, 184, 168, 0.4);
}

.tech-card h5 {
  font-size: 20px;
  font-weight: 700;
  color: #4f4649;
  margin-bottom: 12px;
  line-height: 1.3;
  transition: all 0.3s ease;
}

.tech-card p {
  font-size: 14px;
  color: #81a297;
  margin-bottom: 0;
  line-height: 1.5;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tech-card:hover h5 {
  color: #eab8a8;
}

.tech-card:hover p {
  color: #4f4649;
}



/* Responsive Design for Technologies */
@media (max-width: 768px) {
  .technologies {
    padding: 50px 0;
  }
  
  .tech-slider-container {
    padding: 0 10px;
  }
  
  .tech-swiper {
    padding: 10px 0;
  }
  
  .tech-card {
    padding: 20px 15px;
    margin: 0 5px;
  }
  
  .tech-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }
  
  .tech-icon i {
    font-size: 20px;
  }
  
  .tech-card h5 {
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  .tech-card p {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .technologies {
    padding: 40px 0;
  }
  
  .tech-slider-container {
    padding: 0 5px;
  }
  
  .tech-swiper {
    padding: 5px 0;
  }
  
  .tech-card {
    padding: 15px 10px;
    margin: 0 2px;
    min-width: 120px;
  }
  
  .tech-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
  }
  
  .tech-icon i {
    font-size: 16px;
  }
  
  .tech-card h5 {
    font-size: 12px;
    margin-bottom: 5px;
  }
  
  .tech-card p {
    font-size: 9px;
  }
}

@media (max-width: 320px) {
  .tech-card {
    padding: 12px 8px;
    min-width: 100px;
  }
  
  .tech-icon {
    width: 35px;
    height: 35px;
    margin-bottom: 6px;
  }
  
  .tech-icon i {
    font-size: 14px;
  }
  
  .tech-card h5 {
    font-size: 11px;
  }
  
  .tech-card p {
    font-size: 8px;
  }
}

/*--------------------------------------------------------------
# Blog Section
--------------------------------------------------------------*/
.blog {
  padding: 80px 0;
}

.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(79, 70, 73, 0.1);
  transition: all 0.4s ease;
  border: 1px solid rgba(234, 184, 168, 0.1);
  height: 100%;
  position: relative;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(79, 70, 73, 0.2);
  border-color: var(--secondary-color);
}

.blog-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color-1));
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.blog-content {
  padding: 25px;
}

.blog-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 12px;
  color: #666;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-meta i {
  color: var(--secondary-color);
  font-size: 14px;
}

.blog-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 0;
  position: relative;
}

.blog-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: width 0.3s ease;
}

.blog-link:hover {
  color: var(--secondary-color);
}

.blog-link:hover::after {
  width: 100%;
}

.blog-link i {
  transition: transform 0.3s ease;
}

.blog-link:hover i {
  transform: translateX(5px);
}

/* Responsive Design for Blog */
@media (max-width: 768px) {
  .blog {
    padding: 60px 0;
  }
  
  .blog-card {
    margin-bottom: 30px;
  }
  
  .blog-image {
    height: 180px;
  }
  
  .blog-content {
    padding: 20px;
  }
  
  .blog-card h4 {
    font-size: 16px;
  }
  
  .blog-card p {
    font-size: 13px;
  }
  
  .blog-meta {
    font-size: 11px;
    gap: 12px;
  }
}

/*--------------------------------------------------------------
# AI Service Specific Styles
--------------------------------------------------------------*/
.tech-item {
  background: #fff;
  border-radius: 15px;
  padding: 25px 15px;
  box-shadow: 0 5px 25px rgba(79, 70, 73, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(234, 184, 168, 0.1);
  height: 100%;
}

.tech-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(79, 70, 73, 0.2);
  border-color: var(--secondary-color);
}

.tech-item i {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
  display: block;
}

.tech-item h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.tech-item p {
  font-size: 12px;
  color: #666;
  margin: 0;
}

.use-case-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(79, 70, 73, 0.1);
  transition: all 0.4s ease;
  border: 1px solid rgba(234, 184, 168, 0.1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.use-case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color-1));
}

.use-case-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(79, 70, 73, 0.2);
  border-color: var(--secondary-color);
}

.use-case-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color-1));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.use-case-icon i {
  font-size: 1.8rem;
  color: #fff;
}

.use-case-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.use-case-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.use-case-card ul li {
  padding: 8px 0;
  color: #666;
  font-size: 14px;
  position: relative;
  padding-left: 20px;
}

.use-case-card ul li::before {
  content: '•';
  color: var(--secondary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Responsive Design for AI Service */
@media (max-width: 768px) {
  .tech-item {
    padding: 20px 10px;
  }
  
  .tech-item i {
    font-size: 2rem;
  }
  
  .tech-item h5 {
    font-size: 14px;
  }
  
  .tech-item p {
    font-size: 11px;
  }
  
  .use-case-card {
    padding: 25px;
    margin-bottom: 20px;
  }
  
  .use-case-icon {
    width: 50px;
    height: 50px;
  }
  
  .use-case-icon i {
    font-size: 1.5rem;
  }
  
  .use-case-card h4 {
    font-size: 16px;
  }
  
  .use-case-card ul li {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# E-Commerce Styles
--------------------------------------------------------------*/
.ecommerce-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, rgba(79, 70, 73, 0.05) 0%, rgba(234, 184, 168, 0.1) 100%);
  position: relative;
  overflow: hidden;
}

.ecommerce-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23eab8a8" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.ecommerce-hero .hero-content h2 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.ecommerce-hero .hero-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.ecommerce-hero .hero-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.ecommerce-hero .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: 500;
}

.ecommerce-hero .feature-item i {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color-1));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}

.ecommerce-hero .hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.ecommerce-hero .btn {
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ecommerce-hero .btn-primary {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color-1));
  border: none;
  color: #fff;
}

.ecommerce-hero .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(234, 184, 168, 0.3);
}

.ecommerce-hero .btn-outline-primary {
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
  background: transparent;
}

.ecommerce-hero .btn-outline-primary:hover {
  background: var(--secondary-color);
  color: #fff;
  transform: translateY(-2px);
}

/* E-commerce Mockup */
.ecommerce-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.store-mockup {
  width: 400px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}

.store-header {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color-1));
  padding: 20px;
  color: #fff;
}

.store-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.store-nav .logo {
  font-size: 1.3rem;
  font-weight: 700;
}

.store-nav .nav-items {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
}

.store-nav .nav-items span {
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.store-nav .nav-items span:hover {
  opacity: 0.8;
}

.cart-icon {
  position: relative;
  font-size: 1.2rem;
  cursor: pointer;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ff4757;
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 10px;
  font-weight: 600;
}

.store-content {
  padding: 20px;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.product-card {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-image {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color-1));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  color: #fff;
  font-size: 1.5rem;
}

.product-info h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.product-info .price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.add-to-cart {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color-1));
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.add-to-cart:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(234, 184, 168, 0.3);
}

/* E-commerce Features */
.ecommerce-features {
  padding: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--secondary-color);
}

.feature-card .feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color-1));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* E-commerce Success Metrics */
.success-metrics {
  padding: 80px 0;
}

.metric-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color-1));
  border-radius: 2px;
}

.metric-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--secondary-color);
}

.metric-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color-1));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.metric-card:hover .metric-icon {
  transform: scale(1.1) rotate(5deg);
}

.metric-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.metric-content p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.metric-progress {
  width: 100%;
  height: 8px;
  background: #f0f0f0;
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color-1));
  border-radius: 4px;
  transition: width 1s ease;
}

/* Payment Solutions */
.payment-solutions {
  padding: 80px 0;
}

.payment-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.payment-content p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.payment-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.payment-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.payment-feature .feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color-1));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.payment-feature .feature-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.payment-feature .feature-content p {
  color: #666;
  margin: 0;
  font-size: 1rem;
}

/* Payment Mockup */
.payment-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.payment-mockup {
  width: 400px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.checkout-header {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color-1));
  padding: 20px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checkout-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
}

.secure-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}

.checkout-content {
  padding: 20px;
}

.payment-method {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.method-card {
  flex: 1;
  background: #f8f9fa;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.method-card.selected {
  border-color: var(--secondary-color);
  background: rgba(234, 184, 168, 0.1);
}

.method-card i {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 8px;
  display: block;
}

.method-card span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
}

.order-summary {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 20px;
}

.order-summary h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.summary-item span:first-child {
  color: #666;
}

.summary-item span:last-child {
  font-weight: 600;
  color: var(--primary-color);
}

.summary-total {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 2px solid #e0e0e0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary-color);
}

/* Product Price Styling */
.product-info .price {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 10px;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .ecommerce-hero .hero-content h2 {
    font-size: 2.5rem;
  }
  
  .ecommerce-hero .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .store-mockup {
    width: 320px;
  }
  
  .store-nav .nav-items {
    gap: 10px;
    font-size: 0.8rem;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .ecommerce-hero .hero-buttons {
    flex-direction: column;
  }
  
  .ecommerce-hero .btn {
    width: 100%;
    text-align: center;
  }
  
  .payment-mockup {
    width: 320px;
  }
  
  .payment-method {
    flex-direction: column;
  }
  
  .metric-content h3 {
    font-size: 2rem;
  }
  
  .payment-content h2 {
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
# Mobile App Development Styles
--------------------------------------------------------------*/
.mobile-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, rgba(79, 70, 73, 0.05) 0%, rgba(234, 184, 168, 0.1) 100%);
  position: relative;
  overflow: hidden;
}

.mobile-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(234,184,168,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-content h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: 600;
}

.feature-item i {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color-1));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.mobile-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-mockup {
  width: 280px;
  height: 560px;
  background: linear-gradient(145deg, #2c2c2c, #1a1a1a);
  border-radius: 40px;
  padding: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #333;
  border-radius: 2px;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}

.app-interface {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.app-header {
  padding: 20px 20px 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.status-icons {
  display: flex;
  gap: 4px;
}

.status-icons i {
  font-size: 12px;
}

.app-content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.app-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
}

.card-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color-1));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.card-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 4px 0;
}

.card-content p {
  font-size: 12px;
  color: #666;
  margin: 0;
}

/* Platform Cards */
.platforms {
  padding: 80px 0;
}

.platform-card {
  background: #fff;
  border-radius: 30px;
  padding: 35px;
  box-shadow: 0 20px 60px rgba(79, 70, 73, 0.08);
  transition: all 0.4s ease;
  border: 2px solid rgba(234, 184, 168, 0.05);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.platform-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(135deg, #eab8a8, #b2c9df);
  border-radius: 30px 30px 0 0;
}

.platform-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 90px rgba(79, 70, 73, 0.12);
  border-color: rgba(234, 184, 168, 0.2);
}

.platform-header {
  text-align: center;
  margin-bottom: 25px;
  position: relative;
}

.platform-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #eab8a8, #b2c9df);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2.8rem;
  color: #fff;
  box-shadow: 0 15px 40px rgba(234, 184, 168, 0.3);
  transition: all 0.4s ease;
}

.platform-card:hover .platform-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 20px 50px rgba(234, 184, 168, 0.4);
}

.platform-card.android .platform-icon {
  background: linear-gradient(135deg, #eab8a8, #81a297);
}

.platform-card.cross-platform .platform-icon {
  background: linear-gradient(135deg, #b2c9df, #81a297);
}

.platform-header h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #4f4649;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.platform-card:hover .platform-header h3 {
  color: #eab8a8;
}

.platform-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: linear-gradient(135deg, #eab8a8, #b2c9df);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(234, 184, 168, 0.3);
}

.platform-features ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.platform-features li {
  padding: 8px 0;
  color: #666;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.platform-features i {
  color: var(--secondary-color);
  font-size: 16px;
}

.platform-stats {
  display: flex;
  gap: 15px;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 15px;
  background: rgba(234, 184, 168, 0.1);
  border-radius: 15px;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 12px;
  color: #666;
  font-weight: 500;
}

/* Development Process */
.development-process {
  padding: 80px 0;
}

.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color-1));
  border-radius: 2px;
}

.process-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color-1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-right: 30px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.step-content {
  flex: 1;
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 40px rgba(79, 70, 73, 0.1);
  border: 1px solid rgba(234, 184, 168, 0.1);
}

.step-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.step-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.step-features {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.feature-tag {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color-1));
  color: #fff;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
}

/* Mobile Tech Cards */
.mobile-tech {
  padding: 80px 0;
}

.tech-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(79, 70, 73, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(234, 184, 168, 0.1);
  height: 100%;
}

.tech-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(79, 70, 73, 0.2);
  border-color: var(--secondary-color);
}

.tech-card .tech-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color-1));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.8rem;
  color: #fff;
}

.tech-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.tech-card p {
  font-size: 12px;
  color: #666;
  margin: 0;
}

/* Performance Metrics */
.performance-metrics {
  padding: 80px 0;
}

.metric-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 50px rgba(79, 70, 73, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(234, 184, 168, 0.1);
  height: 100%;
  text-align: center;
}

.metric-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 80px rgba(79, 70, 73, 0.2);
  border-color: var(--secondary-color);
}

.metric-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color-1));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: #fff;
}

.metric-content h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.metric-content p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
  font-weight: 600;
}

.metric-progress {
  width: 100%;
  height: 8px;
  background: rgba(234, 184, 168, 0.2);
  border-radius: 4px;
  overflow: hidden;
}

.metric-progress .progress-bar {
  height: 100%;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color-1));
  border-radius: 4px;
  transition: width 1s ease;
}

/* ASO Section */
.aso-section {
  padding: 80px 0;
}

.aso-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.aso-content p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

.aso-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.aso-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.aso-feature .feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color-1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.aso-feature .feature-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.aso-feature .feature-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.aso-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.admin-panel-mockup {
  width: 320px;
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.panel-header {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color-1));
  padding: 20px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.panel-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}

.user-info i {
  font-size: 1.2rem;
}

.panel-content {
  padding: 20px;
}

.dashboard-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(234, 184, 168, 0.1), rgba(178, 201, 223, 0.1));
  margin-bottom: 15px;
  border: 1px solid rgba(234, 184, 168, 0.2);
}

.dashboard-card:last-child {
  margin-bottom: 0;
}

.dashboard-card .card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color-1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
}

.card-info {
  flex: 1;
}

.card-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.card-info p {
  font-size: 12px;
  color: #666;
  margin-bottom: 8px;
}

.card-stats {
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-stats .stat {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color-1));
  color: #fff;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
}

.card-stats .period {
  font-size: 11px;
  color: #666;
  font-weight: 500;
}

/* Responsive Design for Mobile App */
@media (max-width: 768px) {
  .mobile-hero {
    padding: 100px 0 60px;
  }
  
  .hero-content h2 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-features {
    gap: 0.8rem;
  }
  
  .feature-item {
    font-size: 0.9rem;
  }
  
  .feature-item i {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .phone-mockup {
    width: 240px;
    height: 480px;
  }
  
  .platform-card {
    padding: 25px;
    margin-bottom: 30px;
  }
  
  .platform-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .platform-header h3 {
    font-size: 1.3rem;
  }
  
  .platform-stats {
    flex-direction: column;
    gap: 10px;
  }
  
  .process-timeline::before {
    left: 30px;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1rem;
    margin-right: 20px;
  }
  
  .step-content {
    padding: 20px;
  }
  
  .step-content h4 {
    font-size: 1.1rem;
  }
  
  .metric-card {
    padding: 25px;
    margin-bottom: 20px;
  }
  
  .metric-content h3 {
    font-size: 2rem;
  }
  
  .aso-content h2 {
    font-size: 2rem;
  }
  
  .aso-feature {
    gap: 15px;
  }
  
  .aso-feature .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .admin-panel-mockup {
    width: 280px;
  }
}

/*--------------------------------------------------------------
# Hakkımızda Section
--------------------------------------------------------------*/
.about {
  padding: 80px 0;
}

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: var(--secondary-color);
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: var(--primary-color);
  background: transparent;
  border: 2px solid var(--primary-color);
}

.about .btn-learn-more:hover {
  background: var(--primary-color);
  color: white;
}

/*--------------------------------------------------------------
# Projeler Section
--------------------------------------------------------------*/
.portfolio {
  padding: 80px 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(14, 27, 77, 0.6);
  border-radius: 10px;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(14, 27, 77, 0.6);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  padding: 0 15px;
  margin-bottom: 0;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

/*--------------------------------------------------------------
# İstatistikler Section
--------------------------------------------------------------*/
.counts {
  background: linear-gradient(rgba(79, 70, 73, 0.8), rgba(79, 70, 73, 0.8)), url("../img/counts-bg.jpg") center center;
  padding: 80px 0 60px 0;
  background-attachment: fixed;
  background-size: cover;
  color: #fff;
}

.counts .counters span {
  font-size: 48px;
  display: block;
  color: var(--secondary-color);
  font-weight: 700;
}

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/*--------------------------------------------------------------
# İletişim Section
--------------------------------------------------------------*/
.contact {
  padding: 80px 0;
}

.contact .info {
  width: 100%;
  background: #fff;
}

.contact .contact-info {
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  margin-bottom: 20px;
}

.contact .info i,
.contact .contact-info i {
  font-size: 24px;
  color: var(--secondary-color);
  float: left;
  width: 44px;
  height: 44px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  border: 2px solid var(--accent-color-1);
  transition: all 0.3s ease-in-out;
}

.contact .contact-info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.contact .contact-info p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: #777777;
}

.contact .contact-info .address:hover i, 
.contact .contact-info .email:hover i, 
.contact .contact-info .phone:hover i {
  background: var(--secondary-color);
  color: #fff;
  border-color: var(--secondary-color);
}

.contact .php-email-form {
  width: 100%;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: var(--secondary-color);
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: var(--primary-color);
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: var(--secondary-color);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
  background-color: var(--dark-bg);
  padding: 60px 0 0 0;
  color: rgba(255, 255, 255, 0.7);
}

footer .footer-links {
  margin-bottom: 30px;
}

footer .footer-links h4 {
  font-size: 18px;
  margin-bottom: 25px;
  color: #fff;
  font-weight: 700;
}

footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer .footer-links ul li {
  padding: 7px 0;
  display: flex;
  align-items: center;
}

footer .footer-links ul li:first-child {
  padding-top: 0;
}

footer .footer-links ul li a {
  color: rgba(255, 255, 255, 0.9);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

footer .footer-links ul li a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

footer .footer-links .social-links a {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 0;
  margin-right: 10px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

footer .footer-links .social-links a:hover {
  background: var(--secondary-color);
  color: #fff;
}

footer .footer-links p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

footer .footer-bottom {
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer .copyright {
  text-align: center;
  color: #fff;
}

footer .copyright strong {
  font-weight: 700;
}

footer .copyright span {
  color: #fff;
  font-weight: 700;
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.3);
}

footer .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.4), 0 0 10px rgba(255, 255, 255, 0.2);
  letter-spacing: 1px;
}

footer .footer-links i {
  color: var(--secondary-color);
  font-size: 14px;
  margin-right: 8px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--secondary-color);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #ff5252;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  margin-top: 80px;
  padding: 60px 0;
  background: linear-gradient(rgba(178, 201, 223, 0.8), rgba(178, 201, 223, 0.8)), url("../img/hero-bg.jpg") center center;
  background-size: cover;
  position: relative;
  color: var(--primary-color);
}

.page-header h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.page-header .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.page-header .breadcrumb .breadcrumb-item {
  color: var(--primary-color);
}

.page-header .breadcrumb .breadcrumb-item a {
  color: var(--primary-color);
  font-weight: 600;
}

.page-header .breadcrumb .breadcrumb-item.active {
  color: var(--accent-color-2);
  font-weight: 600;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
  border-radius: 10px;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid var(--primary-color);
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(44, 120, 115, 0.08);
  border-radius: 10px;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Service Details
--------------------------------------------------------------*/
.service-details {
  padding-top: 40px;
}

.service-details .service-img {
  margin-bottom: 30px;
}

.service-details .service-img img {
  width: 100%;
  border-radius: 10px;
}

.service-details h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.service-details h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-details p {
  margin-bottom: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.service-details ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.service-details ul li i {
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--secondary-color);
}

.service-details .service-features {
  margin-top: 30px;
}

.service-details .service-feature-box {
  padding: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-bottom: 30px;
  transition: all 0.3s;
}

.service-details .service-feature-box:hover {
  transform: translateY(-5px);
}

.service-details .service-feature-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-details .service-feature-box p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# CTA
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(129, 162, 151, 0.9), rgba(129, 162, 151, 0.9)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 80px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #fff;
}





/*--------------------------------------------------------------
# Contact Form
--------------------------------------------------------------*/
.php-email-form {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
  background: #fff;
  border-radius: 10px;
}

.php-email-form .form-group {
  margin-bottom: 20px;
}

.php-email-form input,
.php-email-form textarea {
  border-radius: 5px;
  box-shadow: none;
  font-size: 14px;
  border: 1px solid #ddd;
  padding: 10px 15px;
}

.php-email-form input:focus,
.php-email-form textarea:focus {
  border-color: var(--primary-color);
}

.php-email-form input {
  height: 44px;
}

.php-email-form textarea {
  padding: 10px 12px;
}

.php-email-form button[type="submit"] {
  background: var(--primary-color);
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
  font-weight: 600;
}

.php-email-form button[type="submit"]:hover {
  background: var(--secondary-color);
}

.php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--primary-color);
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.php-email-form .error-message br + br {
  margin-top: 25px;
}

.php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  border-radius: 5px;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Map
--------------------------------------------------------------*/
.map {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}





