/* KuaförümCepte - Ana CSS Dosyası */

/* CSS Variables */
:root {
  --primary: #233e46;
  --accent: #a62c5c;
  --accent-light: #c93771;
  --card: rgba(255, 255, 255, 0.06);
  --card-hover: rgba(255, 255, 255, 0.1);
  --text: #fff;
  --muted: #b7c3c8;
  --border: rgba(255, 255, 255, 0.08);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(180deg, #0e171b, #0b0f12);
  color: var(--text);
  overflow-x: hidden;
  transition: overflow 0.3s ease;
}

body.menu-open {
  overflow: hidden;
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}

nav.scrolled {
  padding: 15px 10%;
  background: rgba(0, 0, 0, 0.5);
}

.logo {
  font-weight: 800;
  font-size: 24px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo i {
  color: var(--accent);
  font-size: 28px;
}

.nav-links {
  display: flex;
  gap: 35px;
  align-items: center;
  list-style: none;
  transition: all 0.3s ease;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 15px;
}

.nav-links a:hover {
  color: #fff;
}

.nav-btn {
  padding: 12px 24px;
  background: var(--accent);
  border: none;
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
  font-size: 14px;
}

.nav-btn:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(166, 44, 92, 0.3);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  position: relative;
}

.menu-toggle:hover {
  color: var(--accent);
}

.menu-toggle i {
  transition: transform 0.3s ease;
}

.menu-toggle.active i {
  transform: rotate(90deg);
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 10% 80px;
  gap: 80px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(166, 44, 92, 0.15), transparent);
  top: -200px;
  right: -200px;
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.hero-content {
  flex: 1;
  min-width: 300px;
  animation: fadeInLeft 1s ease;
}

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

.hero h1 {
  font-size: 58px;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero span {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 35px;
}

.cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 32px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  font-size: 15px;
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-3px);
}

.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 30px rgba(166, 44, 92, 0.4);
}

.primary:hover {
  background: var(--accent-light);
  box-shadow: 0 15px 40px rgba(166, 44, 92, 0.5);
}

.secondary {
  background: transparent;
  border-color: var(--border);
  color: #fff;
}

.secondary:hover {
  border-color: var(--accent);
  background: rgba(166, 44, 92, 0.1);
}

/* Hero Mockup */
.hero-mockup {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
  animation: fadeInRight 1s ease;
}

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

.phone-container {
  position: relative;
  display: flex;
  gap: 20px;
}

.phone {
  width: 280px;
  height: 560px;
  border-radius: 30px;
  background: #000;
  border: 8px solid #1a1a1a;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s;
}

.phone:hover {
  transform: translateY(-10px);
}

.phone.main {
  z-index: 2;
  transform: scale(1.1);
}

.phone.side {
  opacity: 0.7;
  transform: scale(0.95) translateY(20px);
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 25px;
  background: #000;
  border-radius: 0 0 20px 20px;
  z-index: 10;
}

/* Stats Section */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  padding: 80px 10%;
  background: rgba(0, 0, 0, 0.2);
}

.stat {
  background: var(--card);
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.stat:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  background: var(--card-hover);
}

.stat:hover::before {
  transform: scaleX(1);
}

.stat-icon {
  font-size: 36px;
  margin-bottom: 15px;
}

.stat h2 {
  color: var(--accent);
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 8px;
}

.stat p {
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
}

/* Features Section */
.features {
  padding: 100px 10%;
  text-align: center;
}

.section-header {
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(166, 44, 92, 0.1);
  color: var(--accent);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  border: 1px solid rgba(166, 44, 92, 0.2);
}

.features h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
}

.features .subtitle {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: var(--card);
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: all 0.3s;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(166, 44, 92, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.card:hover {
  border-color: var(--accent);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #fff;
}

.card p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

/* Pricing Section */
.pricing {
  padding: 100px 10%;
  text-align: center;
}

.pricing h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 60px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--card);
  padding: 45px 35px;
  border-radius: 24px;
  border: 1px solid var(--border);
  transition: all 0.3s;
  position: relative;
}

.pricing-card.featured {
  border: 2px solid var(--accent);
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(166, 44, 92, 0.3);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
}

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.pricing-price {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 10px;
}

.pricing-price span {
  font-size: 18px;
  color: var(--muted);
  font-weight: 400;
}

.pricing-description {
  color: var(--muted);
  margin-bottom: 30px;
  font-size: 15px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.pricing-features li {
  padding: 12px 0;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.pricing-features li i {
  color: var(--accent);
}

/* Testimonials Section */
.testimonials {
  padding: 100px 10%;
  background: rgba(0, 0, 0, 0.2);
}

.testimonials h2 {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 60px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial {
  background: var(--card);
  padding: 35px;
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.testimonial:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
}

.testimonial-info h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.testimonial-info p {
  font-size: 14px;
  color: var(--muted);
}

.testimonial-stars {
  color: #fbbf24;
  margin-bottom: 15px;
  font-size: 18px;
}

.testimonial-text {
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

/* Download Section */
.download {
  padding: 100px 10%;
  text-align: center;
  background: linear-gradient(135deg, rgba(166, 44, 92, 0.15), rgba(35, 62, 70, 0.15));
  position: relative;
  overflow: hidden;
}

.download::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(166, 44, 92, 0.2), transparent);
  bottom: -200px;
  left: -200px;
  border-radius: 50%;
}

.download h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
}

.download p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 40px;
}

.store-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 18px 40px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s;
  font-size: 16px;
}

.store-btn i {
  font-size: 32px;
}

.store-btn:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  background: var(--card-hover);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.store-btn-text {
  text-align: left;
}

.store-btn-text small {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 2px;
}

.store-btn-text strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
}

/* Contact Section */
.contact {
  padding: 100px 10%;
}

.contact-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--card);
  padding: 50px;
  border-radius: 24px;
  border: 1px solid var(--border);
}

.contact h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 15px;
  text-align: center;
}

.contact p {
  text-align: center;
  color: var(--muted);
  margin-bottom: 50px;
  font-size: 16px;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.contact-method {
  background: rgba(0, 0, 0, 0.3);
  padding: 35px 25px;
  border-radius: 20px;
  border: 2px solid var(--border);
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.contact-method:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.contact-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.contact-method:hover .contact-icon {
  transform: scale(1.1);
}

.phone-contact {
  border-color: #4CAF50;
}

.phone-contact:hover {
  border-color: #4CAF50;
  background: rgba(76, 175, 80, 0.05);
}

.phone-contact .contact-icon {
  background: linear-gradient(135deg, #4CAF50, #66BB6A);
  color: #fff;
}

.email-contact {
  border-color: #2196F3;
}

.email-contact:hover {
  border-color: #2196F3;
  background: rgba(33, 150, 243, 0.05);
}

.email-contact .contact-icon {
  background: linear-gradient(135deg, #2196F3, #42A5F5);
  color: #fff;
}

.whatsapp-contact {
  border-color: #25D366;
}

.whatsapp-contact:hover {
  border-color: #25D366;
  background: rgba(37, 211, 102, 0.05);
}

.whatsapp-contact .contact-icon {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
}

.contact-method h3 {
  font-size: 20px;
  color: #fff;
  margin: 0;
}

.contact-method p {
  font-size: 15px;
  color: var(--muted);
  margin: 5px 0;
  font-weight: 500;
}

.contact-btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
  transition: all 0.3s ease;
}

.phone-contact .contact-btn {
  background: #4CAF50;
  color: #fff;
}

.email-contact .contact-btn {
  background: #2196F3;
  color: #fff;
}

.whatsapp-contact .contact-btn {
  background: #25D366;
  color: #fff;
}

.contact-method:hover .contact-btn {
  transform: scale(1.05);
}

.contact-info-text {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.contact-info-text p {
  display: inline-block;
  margin: 8px 15px;
  font-size: 15px;
  color: var(--muted);
}

.contact-info-text i {
  color: var(--accent);
  margin-right: 8px;
}

/* Footer */
footer {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid var(--border);
  padding: 60px 10% 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #fff;
}

.footer-section p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--accent);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.3s;
}

.social-links a:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
  color: #fff;
  font-size: 30px;
}

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

.whatsapp-info {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #25D366;
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 15px;
  font-weight: 600;
}

.whatsapp-info:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-info i {
  font-size: 20px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 48px;
  }
  
  .hero {
    padding: 100px 8% 70px;
  }
  
  nav {
    padding: 20px 8%;
  }
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 38px;
    line-height: 1.2;
  }
  
  .hero p {
    font-size: 17px;
  }
  
  /* Mobil Menü Stilleri */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(14, 23, 27, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 100px 30px 30px;
    gap: 25px;
    transition: right 0.4s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    border-left: 1px solid var(--border);
    z-index: 1000;
    align-items: flex-start;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    width: 100%;
  }
  
  .nav-links a {
    display: block;
    padding: 12px 0;
    font-size: 18px;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  
  .nav-links a:hover {
    color: var(--accent);
    padding-left: 10px;
  }
  
  .menu-toggle {
    display: block;
  }
  
  /* Menü açıkken body scroll'u kapat */
  body.menu-open {
    overflow: hidden;
  }
  
  .phone-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .phone.side {
    display: none;
  }
  
  .phone.main {
    transform: scale(1);
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .pricing-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-container {
    padding: 30px 20px;
  }
  
  .contact-methods {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-method {
    padding: 30px 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-float i {
    font-size: 24px;
  }
  
  .stat h2 {
    font-size: 36px;
  }
  
  .features h2,
  .pricing h2,
  .testimonials h2,
  .download h2 {
    font-size: 36px;
  }
  
  .card,
  .pricing-card {
    padding: 30px 20px;
  }
  
  .grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  
  .hero p {
    font-size: 16px;
    margin-bottom: 25px;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }
  
  .cta {
    flex-direction: column;
    gap: 12px;
  }

  nav {
    padding: 15px 5%;
  }
  
  .logo {
    font-size: 20px;
  }
  
  .logo i {
    font-size: 24px;
  }
  
  .nav-btn {
    padding: 10px 18px;
    font-size: 13px;
  }

  .hero {
    padding: 60px 5% 40px;
    gap: 40px;
  }

  .stats {
    padding: 50px 5%;
    gap: 20px;
    grid-template-columns: 1fr;
  }
  
  .stat {
    padding: 30px 20px;
  }
  
  .stat h2 {
    font-size: 32px;
  }
  
  .stat-icon {
    font-size: 32px;
  }

  .features,
  .pricing,
  .testimonials,
  .download,
  .contact {
    padding: 60px 5%;
  }
  
  .features h2,
  .pricing h2,
  .testimonials h2,
  .download h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .contact h2 {
    font-size: 28px;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-tag {
    font-size: 12px;
    padding: 6px 16px;
  }
  
  .features .subtitle {
    font-size: 16px;
  }
  
  .card {
    padding: 30px 20px;
  }
  
  .card-icon {
    font-size: 40px;
    margin-bottom: 15px;
  }
  
  .card h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .card p {
    font-size: 14px;
  }
  
  .pricing-card {
    padding: 35px 25px;
  }
  
  .pricing-card h3 {
    font-size: 20px;
  }
  
  .pricing-price {
    font-size: 40px;
  }
  
  .pricing-features li {
    font-size: 14px;
    padding: 10px 0;
  }
  
  .testimonial {
    padding: 25px 20px;
  }
  
  .testimonial-avatar {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  
  .testimonial-info h4 {
    font-size: 15px;
  }
  
  .testimonial-info p {
    font-size: 13px;
  }
  
  .testimonial-text {
    font-size: 14px;
  }
  
  .store-btns {
    flex-direction: column;
    gap: 15px;
  }
  
  .store-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 30px;
  }
  
  .whatsapp-info {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 14px;
  }
  
  .contact-container {
    padding: 30px 20px;
  }
  
  .contact h2 {
    font-size: 28px;
  }
  
  .contact-methods {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .contact-method {
    padding: 25px 20px;
  }
  
  .contact-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
  
  .contact-method h3 {
    font-size: 18px;
  }
  
  .contact-method p {
    font-size: 14px;
  }
  
  .contact-btn {
    padding: 8px 20px;
    font-size: 13px;
  }
  
  .contact-info-text p {
    display: block;
    margin: 10px 0;
    font-size: 14px;
  }

  footer {
    padding: 40px 5% 20px;
  }
  
  .footer-section h3 {
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .footer-section p,
  .footer-links a,
  .footer-bottom {
    font-size: 13px;
  }
  
  .social-links a {
    width: 36px;
    height: 36px;
  }

  .phone {
    width: 220px;
    height: 440px;
  }
  
  .phone-notch {
    width: 100px;
    height: 22px;
  }
  
  /* Mobilde WhatsApp float butonu yukarıda, contact bar'dan uzak */
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 80px;
    right: 15px;
  }
  
  .whatsapp-float i {
    font-size: 22px;
  }
  
  /* Mobil iletişim bar'ı göster */
  .mobile-contact-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  
  /* Body padding bottom ekle (contact bar için) */
  body {
    padding-bottom: 70px;
  }
}

@media (max-width: 400px) {
  .hero h1 {
    font-size: 24px;
  }
  
  .hero p {
    font-size: 15px;
  }
  
  .logo {
    font-size: 18px;
  }
  
  .nav-btn {
    padding: 8px 14px;
    font-size: 12px;
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 13px;
  }
  
  .stat {
    padding: 25px 15px;
  }
  
  .stat h2 {
    font-size: 28px;
  }
  
  .card,
  .pricing-card,
  .testimonial {
    padding: 25px 15px;
  }
  
  .features h2,
  .pricing h2,
  .testimonials h2,
  .download h2,
  .contact h2 {
    font-size: 24px;
  }
  
  .phone {
    width: 200px;
    height: 400px;
    border: 6px solid #1a1a1a;
  }
  
  .store-btn {
    padding: 14px 20px;
    font-size: 14px;
  }
  
  .whatsapp-float {
    width: 45px;
    height: 45px;
    bottom: 75px;
    right: 12px;
  }
  
  .whatsapp-float i {
    font-size: 20px;
  }
  
  .contact-item i {
    font-size: 20px;
  }
  
  .contact-item span {
    font-size: 10px;
  }
}

/* Tablet landscape optimizasyonu */
@media (min-width: 601px) and (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* Touch device optimizasyonları */
@media (hover: none) and (pointer: coarse) {
  .btn,
  .nav-btn,
  .store-btn,
  .submit-btn,
  .whatsapp-info {
    -webkit-tap-highlight-color: transparent;
  }
  
  .card,
  .stat,
  .pricing-card,
  .testimonial {
    -webkit-tap-highlight-color: rgba(166, 44, 92, 0.1);
  }
  
  /* Touch için daha büyük click alanları */
  .nav-btn,
  .btn,
  .submit-btn {
    min-height: 44px;
  }
  
  .whatsapp-float {
    min-width: 50px;
    min-height: 50px;
  }
}
